Blame view

auth_utility.go 6.22 KB
ea858b8a7   Marko Tikvić   refactoring
1
  package webutility
90fd36e9b   Marko Tikvić   resolved some dep...
2
3
  
  import (
90fd36e9b   Marko Tikvić   resolved some dep...
4
  	"crypto/rand"
d2ddf82ef   Marko Tikvić   started on new rbac
5
  	"crypto/sha256"
90fd36e9b   Marko Tikvić   resolved some dep...
6
  	"encoding/hex"
d2ddf82ef   Marko Tikvić   started on new rbac
7
  	"errors"
33d137a67   Marko Tikvić   Functional role c...
8
  	"net/http"
d2ddf82ef   Marko Tikvić   started on new rbac
9
10
  	"strings"
  	"time"
33d137a67   Marko Tikvić   Functional role c...
11

90fd36e9b   Marko Tikvić   resolved some dep...
12
  	"github.com/dgrijalva/jwt-go"
90fd36e9b   Marko Tikvić   resolved some dep...
13
  )
d2ddf82ef   Marko Tikvić   started on new rbac
14
15
  const OneDay = time.Hour * 24
  const OneWeek = OneDay * 7
90fd36e9b   Marko Tikvić   resolved some dep...
16
  const saltSize = 32
d2ddf82ef   Marko Tikvić   started on new rbac
17
18
  const appName = "korisnicki-centar"
  const secret = "korisnicki-centar-api"
90fd36e9b   Marko Tikvić   resolved some dep...
19

d2ddf82ef   Marko Tikvić   started on new rbac
20
  type Role struct {
077dae33c   Marko Tikvić   removed role cons...
21
  	Name string `json:"name"`
c7aadbb39   Marko Tikvić   minor changes
22
  	ID   int    `json:"id"`
d2ddf82ef   Marko Tikvić   started on new rbac
23
  }
6ec91280b   Marko Tikvić   working on docume...
24
  // TokenClaims are JWT token claims.
90fd36e9b   Marko Tikvić   resolved some dep...
25
  type TokenClaims struct {
6620591d8   Marko Tikvić   moved DeliverPayl...
26
27
28
29
  	Token     string `json:"access_token"`
  	TokenType string `json:"token_type"`
  	Username  string `json:"username"`
  	Role      string `json:"role"`
c7aadbb39   Marko Tikvić   minor changes
30
  	RoleID    int    `json:"role_id"`
6620591d8   Marko Tikvić   moved DeliverPayl...
31
32
33
34
  	ExpiresIn int64  `json:"expires_in"`
  
  	// extending a struct
  	jwt.StandardClaims
90fd36e9b   Marko Tikvić   resolved some dep...
35
  }
bc3671b26   Marko Tikvić   refactoring token...
36
37
38
  // ValidateCredentials hashes pass and salt and returns comparison result with resultHash
  func ValidateCredentials(pass, salt, resultHash string) bool {
  	hash, _, err := CreateHash(pass, salt)
90fd36e9b   Marko Tikvić   resolved some dep...
39
  	if err != nil {
bc3671b26   Marko Tikvić   refactoring token...
40
  		return false
90fd36e9b   Marko Tikvić   resolved some dep...
41
  	}
bc3671b26   Marko Tikvić   refactoring token...
42
  	return hash == resultHash
90fd36e9b   Marko Tikvić   resolved some dep...
43
  }
bc3671b26   Marko Tikvić   refactoring token...
44
45
46
47
  // CreateHash hashes str using SHA256.
  // If the presalt parameter is not provided CreateHash will generate new salt string.
  // Returns hash and salt strings or an error if it fails.
  func CreateHash(str, presalt string) (hash, salt string, err error) {
90fd36e9b   Marko Tikvić   resolved some dep...
48
49
  	// chech if message is presalted
  	if presalt == "" {
bc3671b26   Marko Tikvić   refactoring token...
50
  		salt, err = randomSalt()
90fd36e9b   Marko Tikvić   resolved some dep...
51
52
53
54
55
56
57
58
  		if err != nil {
  			return "", "", err
  		}
  	} else {
  		salt = presalt
  	}
  
  	// convert strings to raw byte slices
33fd58161   markotikvic   minor changes, sh...
59
  	rawstr := []byte(str)
90fd36e9b   Marko Tikvić   resolved some dep...
60
61
62
63
  	rawsalt, err := hex.DecodeString(salt)
  	if err != nil {
  		return "", "", err
  	}
33fd58161   markotikvic   minor changes, sh...
64

d2ddf82ef   Marko Tikvić   started on new rbac
65
  	rawdata := make([]byte, len(rawstr)+len(rawsalt))
33fd58161   markotikvic   minor changes, sh...
66
  	rawdata = append(rawdata, rawstr...)
90fd36e9b   Marko Tikvić   resolved some dep...
67
68
69
70
71
72
  	rawdata = append(rawdata, rawsalt...)
  
  	// hash message + salt
  	hasher := sha256.New()
  	hasher.Write(rawdata)
  	rawhash := hasher.Sum(nil)
33fd58161   markotikvic   minor changes, sh...
73

90fd36e9b   Marko Tikvić   resolved some dep...
74
75
76
  	hash = hex.EncodeToString(rawhash)
  	return hash, salt, nil
  }
bc3671b26   Marko Tikvić   refactoring token...
77
  // CreateAuthToken returns JWT token with encoded username, role, expiration date and issuer claims.
6ec91280b   Marko Tikvić   working on docume...
78
  // It returns an error if it fails.
bc3671b26   Marko Tikvić   refactoring token...
79
80
81
  func CreateAuthToken(username string, role Role) (TokenClaims, error) {
  	t0 := (time.Now()).Unix()
  	t1 := (time.Now().Add(OneWeek)).Unix()
90fd36e9b   Marko Tikvić   resolved some dep...
82
  	claims := TokenClaims{
bc3671b26   Marko Tikvić   refactoring token...
83
84
85
86
87
  		TokenType: "Bearer",
  		Username:  username,
  		Role:      role.Name,
  		RoleID:    role.ID,
  		ExpiresIn: t1 - t0,
90fd36e9b   Marko Tikvić   resolved some dep...
88
  	}
bc3671b26   Marko Tikvić   refactoring token...
89
90
91
92
  	// initialize jwt.StandardClaims fields (anonymous struct)
  	claims.IssuedAt = t0
  	claims.ExpiresAt = t1
  	claims.Issuer = appName
90fd36e9b   Marko Tikvić   resolved some dep...
93
94
  
  	jwtToken := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
bc3671b26   Marko Tikvić   refactoring token...
95
  	token, err := jwtToken.SignedString([]byte(secret))
90fd36e9b   Marko Tikvić   resolved some dep...
96
  	if err != nil {
bc3671b26   Marko Tikvić   refactoring token...
97
  		return TokenClaims{}, err
90fd36e9b   Marko Tikvić   resolved some dep...
98
  	}
bc3671b26   Marko Tikvić   refactoring token...
99
100
  	claims.Token = token
  	return claims, nil
90fd36e9b   Marko Tikvić   resolved some dep...
101
  }
c7aadbb39   Marko Tikvić   minor changes
102
  // RefreshAuthToken returns new JWT token with sprolongs JWT token's expiration date for one week.
6ec91280b   Marko Tikvić   working on docume...
103
  // It returns new JWT token or an error if it fails.
c7aadbb39   Marko Tikvić   minor changes
104
105
  func RefreshAuthToken(tok string) (TokenClaims, error) {
  	token, err := jwt.ParseWithClaims(tok, &TokenClaims{}, secretFunc)
90fd36e9b   Marko Tikvić   resolved some dep...
106
  	if err != nil {
052f8a3a6   Marko Tikvić   token validation ...
107
108
109
110
111
112
113
114
115
  		if validation, ok := err.(*jwt.ValidationError); ok {
  			// don't return error if token is expired
  			// just extend it
  			if !(validation.Errors&jwt.ValidationErrorExpired != 0) {
  				return TokenClaims{}, err
  			}
  		} else {
  			return TokenClaims{}, err
  		}
90fd36e9b   Marko Tikvić   resolved some dep...
116
117
118
119
  	}
  
  	// type assertion
  	claims, ok := token.Claims.(*TokenClaims)
052f8a3a6   Marko Tikvić   token validation ...
120
  	if !ok {
bc3671b26   Marko Tikvić   refactoring token...
121
  		return TokenClaims{}, errors.New("token is not valid")
90fd36e9b   Marko Tikvić   resolved some dep...
122
  	}
bc3671b26   Marko Tikvić   refactoring token...
123
124
  	// extend token expiration date
  	return CreateAuthToken(claims.Username, Role{claims.Role, claims.RoleID})
90fd36e9b   Marko Tikvić   resolved some dep...
125
  }
d29773cc4   Marko Tikvić   ProcessRBAC
126
  // RbacCheck returns true if user that made HTTP request is authorized to
bc3671b26   Marko Tikvić   refactoring token...
127
128
129
130
131
  // access the resource it is targeting.
  // It exctracts user's role from the JWT token located in Authorization header of
  // http.Request and then compares it with the list of supplied roles and returns
  // true if there's a match, if "*" is provided or if the authRoles is nil.
  // Otherwise it returns false.
2d79a4120   Marko Tikvić   Responses contain...
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
  func RbacCheck(req *http.Request, authRoles []string) bool {
  	if authRoles == nil {
  		return true
  	}
  
  	// validate token and check expiration date
  	claims, err := GetTokenClaims(req)
  	if err != nil {
  		return false
  	}
  	// check if token has expired
  	if claims.ExpiresAt < (time.Now()).Unix() {
  		return false
  	}
  
  	// check if role extracted from token matches
  	// any of the provided (allowed) ones
  	for _, r := range authRoles {
  		if claims.Role == r || r == "*" {
  			return true
  		}
  	}
  
  	return false
  }
d29773cc4   Marko Tikvić   ProcessRBAC
157
158
  // ProcessRBAC returns token claims and boolean value based on user's rights to access resource specified in req.
  // It exctracts user's role from the JWT token located in Authorization header of
c7aadbb39   Marko Tikvić   minor changes
159
160
  // HTTP request and then compares it with the list of supplied (authorized);
  // it returns true if there's a match, if "*" is provided or if the authRoles is nil.
d29773cc4   Marko Tikvić   ProcessRBAC
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
  func ProcessRBAC(req *http.Request, authRoles []string) (*TokenClaims, bool) {
  	if authRoles == nil {
  		return nil, true
  	}
  
  	// validate token and check expiration date
  	claims, err := GetTokenClaims(req)
  	if err != nil {
  		return claims, false
  	}
  	// check if token has expired
  	if claims.ExpiresAt < (time.Now()).Unix() {
  		return claims, false
  	}
  
  	// check if role extracted from token matches
  	// any of the provided (allowed) ones
  	for _, r := range authRoles {
  		if claims.Role == r || r == "*" {
  			return claims, true
  		}
  	}
  
  	return claims, false
  }
bc3671b26   Marko Tikvić   refactoring token...
186
187
188
189
190
191
192
  // GetTokenClaims extracts JWT claims from Authorization header of the request.
  // Returns token claims or an error.
  func GetTokenClaims(req *http.Request) (*TokenClaims, error) {
  	// check for and strip 'Bearer' prefix
  	var tokstr string
  	authHead := req.Header.Get("Authorization")
  	if ok := strings.HasPrefix(authHead, "Bearer "); ok {
2d79a4120   Marko Tikvić   Responses contain...
193
  		tokstr = strings.TrimPrefix(authHead, "Bearer ")
33d137a67   Marko Tikvić   Functional role c...
194
  	} else {
bc3671b26   Marko Tikvić   refactoring token...
195
  		return &TokenClaims{}, errors.New("authorization header in incomplete")
33d137a67   Marko Tikvić   Functional role c...
196
  	}
bc3671b26   Marko Tikvić   refactoring token...
197
  	token, err := jwt.ParseWithClaims(tokstr, &TokenClaims{}, secretFunc)
33d137a67   Marko Tikvić   Functional role c...
198
199
200
201
202
  	if err != nil {
  		return &TokenClaims{}, err
  	}
  
  	// type assertion
bc3671b26   Marko Tikvić   refactoring token...
203
204
  	claims, ok := token.Claims.(*TokenClaims)
  	if !ok || !token.Valid {
33d137a67   Marko Tikvić   Functional role c...
205
206
  		return &TokenClaims{}, errors.New("token is not valid")
  	}
33d137a67   Marko Tikvić   Functional role c...
207

bc3671b26   Marko Tikvić   refactoring token...
208
  	return claims, nil
90fd36e9b   Marko Tikvić   resolved some dep...
209
  }
33d137a67   Marko Tikvić   Functional role c...
210

bc3671b26   Marko Tikvić   refactoring token...
211
212
213
  // randomSalt returns a string of random characters of 'saltSize' length.
  func randomSalt() (s string, err error) {
  	rawsalt := make([]byte, saltSize)
d2ddf82ef   Marko Tikvić   started on new rbac
214

bc3671b26   Marko Tikvić   refactoring token...
215
  	_, err = rand.Read(rawsalt)
d2ddf82ef   Marko Tikvić   started on new rbac
216
  	if err != nil {
bc3671b26   Marko Tikvić   refactoring token...
217
  		return "", err
33d137a67   Marko Tikvić   Functional role c...
218
  	}
d2ddf82ef   Marko Tikvić   started on new rbac
219

bc3671b26   Marko Tikvić   refactoring token...
220
221
  	s = hex.EncodeToString(rawsalt)
  	return s, nil
33d137a67   Marko Tikvić   Functional role c...
222
  }
d2ddf82ef   Marko Tikvić   started on new rbac
223

bc3671b26   Marko Tikvić   refactoring token...
224
225
226
  // secretFunc returns byte slice of API secret keyword.
  func secretFunc(token *jwt.Token) (interface{}, error) {
  	return []byte(secret), nil
d2ddf82ef   Marko Tikvić   started on new rbac
227
  }