2017-07-02 16:40:52 +00:00
|
|
|
package filemanager
|
|
|
|
|
|
|
|
import (
|
2017-07-03 07:59:49 +00:00
|
|
|
"encoding/json"
|
|
|
|
"math/rand"
|
2017-07-02 16:40:52 +00:00
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
"golang.org/x/crypto/bcrypt"
|
|
|
|
|
2017-07-02 16:40:52 +00:00
|
|
|
jwt "github.com/dgrijalva/jwt-go"
|
|
|
|
"github.com/dgrijalva/jwt-go/request"
|
|
|
|
)
|
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
// authHandler proccesses the authentication for the user.
|
2017-07-11 15:58:18 +00:00
|
|
|
func authHandler(c *RequestContext, w http.ResponseWriter, r *http.Request) (int, error) {
|
2017-07-03 07:59:49 +00:00
|
|
|
// Receive the credentials from the request and unmarshal them.
|
|
|
|
var cred User
|
|
|
|
if r.Body == nil {
|
|
|
|
return http.StatusForbidden, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
err := json.NewDecoder(r.Body).Decode(&cred)
|
|
|
|
if err != nil {
|
|
|
|
return http.StatusForbidden, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks if the user exists.
|
2017-07-11 15:58:18 +00:00
|
|
|
u, ok := c.FM.Users[cred.Username]
|
2017-07-03 07:59:49 +00:00
|
|
|
if !ok {
|
|
|
|
return http.StatusForbidden, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks if the password is correct.
|
|
|
|
if !checkPasswordHash(cred.Password, u.Password) {
|
|
|
|
return http.StatusForbidden, nil
|
|
|
|
}
|
2017-07-02 16:40:52 +00:00
|
|
|
|
2017-07-11 15:58:18 +00:00
|
|
|
c.User = u
|
2017-07-06 08:31:07 +00:00
|
|
|
return printToken(c, w)
|
2017-07-02 16:40:52 +00:00
|
|
|
}
|
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
// renewAuthHandler is used when the front-end already has a JWT token
|
|
|
|
// and is checking if it is up to date. If so, updates its info.
|
2017-07-11 15:58:18 +00:00
|
|
|
func renewAuthHandler(c *RequestContext, w http.ResponseWriter, r *http.Request) (int, error) {
|
2017-07-03 07:59:49 +00:00
|
|
|
ok, u := validateAuth(c, r)
|
|
|
|
if !ok {
|
|
|
|
return http.StatusForbidden, nil
|
|
|
|
}
|
|
|
|
|
2017-07-11 15:58:18 +00:00
|
|
|
c.User = u
|
2017-07-06 08:31:07 +00:00
|
|
|
return printToken(c, w)
|
|
|
|
}
|
|
|
|
|
|
|
|
// claims is the JWT claims.
|
|
|
|
type claims struct {
|
|
|
|
User
|
|
|
|
jwt.StandardClaims
|
|
|
|
}
|
|
|
|
|
|
|
|
// printToken prints the final JWT token to the user.
|
2017-07-11 15:58:18 +00:00
|
|
|
func printToken(c *RequestContext, w http.ResponseWriter) (int, error) {
|
2017-07-06 08:31:07 +00:00
|
|
|
// Creates a copy of the user and removes it password
|
|
|
|
// hash so it never arrives to the user.
|
|
|
|
u := User{}
|
2017-07-11 15:58:18 +00:00
|
|
|
u = *c.User
|
2017-07-06 08:31:07 +00:00
|
|
|
u.Password = ""
|
|
|
|
|
|
|
|
// Builds the claims.
|
2017-07-03 07:59:49 +00:00
|
|
|
claims := claims{
|
|
|
|
u,
|
|
|
|
jwt.StandardClaims{
|
|
|
|
ExpiresAt: time.Now().Add(time.Hour * 24).Unix(),
|
|
|
|
Issuer: "File Manager",
|
|
|
|
},
|
|
|
|
}
|
2017-07-02 16:40:52 +00:00
|
|
|
|
2017-07-06 08:31:07 +00:00
|
|
|
// Creates the token and signs it.
|
2017-07-03 07:59:49 +00:00
|
|
|
token := jwt.NewWithClaims(jwt.SigningMethodHS256, claims)
|
2017-07-11 15:58:18 +00:00
|
|
|
string, err := token.SignedString(c.FM.key)
|
2017-07-06 08:31:07 +00:00
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
if err != nil {
|
|
|
|
return http.StatusInternalServerError, err
|
2017-07-02 16:40:52 +00:00
|
|
|
}
|
|
|
|
|
2017-07-06 08:31:07 +00:00
|
|
|
// Writes the token.
|
2017-07-03 07:59:49 +00:00
|
|
|
w.Write([]byte(string))
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
2017-07-03 14:19:17 +00:00
|
|
|
type extractor []string
|
|
|
|
|
|
|
|
func (e extractor) ExtractToken(r *http.Request) (string, error) {
|
|
|
|
token, _ := request.AuthorizationHeaderExtractor.ExtractToken(r)
|
|
|
|
if token != "" {
|
|
|
|
return token, nil
|
|
|
|
}
|
|
|
|
|
2017-07-19 07:28:01 +00:00
|
|
|
cookie, err := r.Cookie("auth")
|
|
|
|
if err != nil {
|
|
|
|
return "", request.ErrNoTokenInRequest
|
2017-07-03 14:19:17 +00:00
|
|
|
}
|
|
|
|
|
2017-07-19 07:28:01 +00:00
|
|
|
return cookie.Value, nil
|
2017-07-03 14:19:17 +00:00
|
|
|
}
|
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
// validateAuth is used to validate the authentication and returns the
|
|
|
|
// User if it is valid.
|
2017-07-11 15:58:18 +00:00
|
|
|
func validateAuth(c *RequestContext, r *http.Request) (bool, *User) {
|
2017-07-03 07:59:49 +00:00
|
|
|
keyFunc := func(token *jwt.Token) (interface{}, error) {
|
2017-07-11 15:58:18 +00:00
|
|
|
return c.FM.key, nil
|
2017-07-03 07:59:49 +00:00
|
|
|
}
|
|
|
|
var claims claims
|
|
|
|
token, err := request.ParseFromRequestWithClaims(r,
|
2017-07-03 14:19:17 +00:00
|
|
|
extractor{},
|
2017-07-03 07:59:49 +00:00
|
|
|
&claims,
|
|
|
|
keyFunc,
|
|
|
|
)
|
|
|
|
|
|
|
|
if err != nil || !token.Valid {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2017-07-11 15:58:18 +00:00
|
|
|
u, ok := c.FM.Users[claims.User.Username]
|
2017-07-03 07:59:49 +00:00
|
|
|
if !ok {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
2017-07-11 15:58:18 +00:00
|
|
|
c.User = u
|
2017-07-03 07:59:49 +00:00
|
|
|
return true, u
|
|
|
|
}
|
|
|
|
|
|
|
|
// hashPassword generates an hash from a password using bcrypt.
|
|
|
|
func hashPassword(password string) (string, error) {
|
|
|
|
bytes, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
|
|
|
|
return string(bytes), err
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkPasswordHash compares a password with an hash to check if they match.
|
|
|
|
func checkPasswordHash(password, hash string) bool {
|
|
|
|
err := bcrypt.CompareHashAndPassword([]byte(hash), []byte(password))
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
const charset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
|
|
|
|
|
|
|
|
// randomString creates a string with a defined length using the above charset.
|
|
|
|
func randomString(length int) string {
|
|
|
|
seededRand := rand.New(rand.NewSource(time.Now().UnixNano()))
|
|
|
|
|
|
|
|
b := make([]byte, length)
|
|
|
|
for i := range b {
|
|
|
|
b[i] = charset[seededRand.Intn(len(charset))]
|
|
|
|
}
|
|
|
|
return string(b)
|
2017-07-02 16:40:52 +00:00
|
|
|
}
|