filebrowser/http/auth.go

200 lines
4.4 KiB
Go
Raw Normal View History

2017-08-18 08:00:32 +00:00
package http
2017-07-02 16:40:52 +00:00
import (
2017-07-03 07:59:49 +00:00
"encoding/json"
2017-07-02 16:40:52 +00:00
"net/http"
2017-09-11 08:00:59 +00:00
"net/url"
"strings"
2017-07-02 16:40:52 +00:00
"time"
2017-10-30 15:47:59 +00:00
"github.com/dgrijalva/jwt-go"
2017-07-02 16:40:52 +00:00
"github.com/dgrijalva/jwt-go/request"
2017-08-18 08:00:32 +00:00
fm "github.com/hacdias/filemanager"
2017-07-02 16:40:52 +00:00
)
const reCaptchaAPI = "https://www.google.com/recaptcha/api/siteverify"
2017-09-11 08:00:59 +00:00
type cred struct {
Password string `json:"password"`
Username string `json:"username"`
ReCaptcha string `json:"recaptcha"`
2017-09-11 08:00:59 +00:00
}
// reCaptcha checks the reCaptcha code.
func reCaptcha(secret string, response string) (bool, error) {
2017-09-11 08:00:59 +00:00
body := url.Values{}
body.Set("secret", secret)
body.Add("response", response)
client := &http.Client{}
resp, err := client.Post(reCaptchaAPI, "application/x-www-form-urlencoded", strings.NewReader(body.Encode()))
2017-09-11 08:00:59 +00:00
if err != nil {
return false, err
}
if resp.StatusCode != http.StatusOK {
return false, nil
}
var data struct {
Success bool `json:"success"`
ChallengeTS time.Time `json:"challenge_ts"`
Hostname string `json:"hostname"`
ErrorCodes interface{} `json:"error-codes"`
}
err = json.NewDecoder(resp.Body).Decode(&data)
if err != nil {
return false, err
}
return data.Success, nil
}
2017-10-31 19:20:36 +00:00
// authHandler processes the authentication for the user.
2017-08-18 08:00:32 +00:00
func authHandler(c *fm.Context, w http.ResponseWriter, r *http.Request) (int, error) {
2017-08-02 13:10:05 +00:00
// NoAuth instances shouldn't call this method.
if c.NoAuth {
return 0, nil
}
2017-07-03 07:59:49 +00:00
// Receive the credentials from the request and unmarshal them.
2017-09-11 08:00:59 +00:00
var cred cred
2017-07-03 07:59:49 +00:00
if r.Body == nil {
return http.StatusForbidden, nil
}
err := json.NewDecoder(r.Body).Decode(&cred)
if err != nil {
return http.StatusForbidden, nil
}
2017-09-11 08:00:59 +00:00
// If ReCaptcha is enabled, check the code.
if len(c.ReCaptchaSecret) > 0 {
ok, err := reCaptcha(c.ReCaptchaSecret, cred.ReCaptcha)
2017-09-11 08:00:59 +00:00
if err != nil {
return http.StatusForbidden, err
}
if !ok {
return http.StatusForbidden, nil
}
}
2017-07-03 07:59:49 +00:00
// Checks if the user exists.
2017-08-20 08:55:45 +00:00
u, err := c.Store.Users.GetByUsername(cred.Username, c.NewFS)
2017-08-19 11:35:44 +00:00
if err != nil {
2017-07-03 07:59:49 +00:00
return http.StatusForbidden, nil
}
// Checks if the password is correct.
2017-08-19 11:35:44 +00:00
if !fm.CheckPasswordHash(cred.Password, u.Password) {
2017-07-03 07:59:49 +00:00
return http.StatusForbidden, nil
}
2017-07-02 16:40:52 +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-08-18 08:00:32 +00:00
func renewAuthHandler(c *fm.Context, 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
}
c.User = u
2017-07-06 08:31:07 +00:00
return printToken(c, w)
}
// claims is the JWT claims.
type claims struct {
2017-08-18 08:00:32 +00:00
fm.User
2017-07-06 08:31:07 +00:00
jwt.StandardClaims
}
// printToken prints the final JWT token to the user.
2017-08-18 08:00:32 +00:00
func printToken(c *fm.Context, 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.
2017-08-18 08:00:32 +00:00
u := fm.User{}
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-08-19 11:35:44 +00:00
signed, err := token.SignedString(c.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-29 13:19:09 +00:00
w.Header().Set("Content-Type", "cty")
2017-08-02 13:10:05 +00:00
w.Write([]byte(signed))
2017-07-03 07:59:49 +00:00
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)
2017-07-25 10:57:27 +00:00
// Checks if the token isn't empty and if it contains two dots.
// The former prevents incompatibility with URLs that previously
// used basic auth.
2017-07-25 10:57:27 +00:00
if token != "" && strings.Count(token, ".") == 2 {
2017-07-03 14:19:17 +00:00
return token, nil
}
cookie, err := r.Cookie("auth")
if err != nil {
return "", request.ErrNoTokenInRequest
2017-07-03 14:19:17 +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-08-18 08:00:32 +00:00
func validateAuth(c *fm.Context, r *http.Request) (bool, *fm.User) {
2017-08-02 13:10:05 +00:00
if c.NoAuth {
c.User = c.DefaultUser
return true, c.User
}
2017-07-03 07:59:49 +00:00
keyFunc := func(token *jwt.Token) (interface{}, error) {
2017-08-19 11:35:44 +00:00
return c.Key, nil
2017-07-03 07:59:49 +00:00
}
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-08-20 08:21:36 +00:00
u, err := c.Store.Users.Get(claims.User.ID, c.NewFS)
2017-08-19 11:35:44 +00:00
if err != nil {
2017-07-03 07:59:49 +00:00
return false, nil
}
c.User = u
2017-07-03 07:59:49 +00:00
return true, u
}