14378fbf39
* Checkpoint: it builds The config, db, model, network, os, and public packages have had some fixes to glaringly obvious flaws, dead code removed, and stylistic changes. * Style changes and old code removal in router Router needs a lot of work done to its (lack of) error handling. * Dead code removal and style changes Now up to util/email/email.go. After I'm finished with the initial sweep I'll go back and fix error handling and security issues. Then I'll fix the broken API. Then I'll go through to add documentation and fix code visibility. * Finish dead code removal and style changes Vendored libraries not touched. Everything still needs security fixes and documentation. There's also one case of broken functionality. * Fix accidental find-and-replace * Style, error checking, saftey, bug fix changes * Redo error checking erased during merge * Re-add merge-erased fix. Make Safe safe.
152 lignes
4,2 Kio
Go
152 lignes
4,2 Kio
Go
package userService
|
|
|
|
import (
|
|
"errors"
|
|
"github.com/ewhal/nyaa/db"
|
|
"github.com/ewhal/nyaa/model"
|
|
formStruct "github.com/ewhal/nyaa/service/user/form"
|
|
"github.com/ewhal/nyaa/util/log"
|
|
"github.com/ewhal/nyaa/util/modelHelper"
|
|
"github.com/gorilla/securecookie"
|
|
"golang.org/x/crypto/bcrypt"
|
|
"net/http"
|
|
)
|
|
|
|
var cookieHandler = securecookie.New(
|
|
securecookie.GenerateRandomKey(64),
|
|
securecookie.GenerateRandomKey(32))
|
|
|
|
// TODO: Figure out what this is about before I delete it
|
|
// // UserName get username from a cookie.
|
|
// func UserName(c *gin.Context) (string, error) {
|
|
// var userName string
|
|
// request := c.Request
|
|
// cookie, err := request.Cookie("session")
|
|
// if err != nil {
|
|
// return userName, err
|
|
// }
|
|
// cookieValue := make(map[string]string)
|
|
// err = cookieHandler.Decode("session", cookie.Value, &cookieValue)
|
|
// if err != nil {
|
|
// return userName, err
|
|
// }
|
|
// userName = cookieValue["name"]
|
|
// return userName, nil
|
|
// }
|
|
|
|
func Token(r *http.Request) (string, error) {
|
|
var token string
|
|
cookie, err := r.Cookie("session")
|
|
if err != nil {
|
|
return token, err
|
|
}
|
|
cookieValue := make(map[string]string)
|
|
err = cookieHandler.Decode("session", cookie.Value, &cookieValue)
|
|
if err != nil {
|
|
return token, err
|
|
}
|
|
token = cookieValue["token"]
|
|
if len(token) == 0 {
|
|
return token, errors.New("token is empty")
|
|
}
|
|
return token, nil
|
|
}
|
|
|
|
// SetCookie sets a cookie.
|
|
func SetCookie(w http.ResponseWriter, token string) (int, error) {
|
|
value := map[string]string{
|
|
"token": token,
|
|
}
|
|
encoded, err := cookieHandler.Encode("session", value)
|
|
if err != nil {
|
|
return http.StatusInternalServerError, err
|
|
}
|
|
cookie := &http.Cookie{
|
|
Name: "session",
|
|
Value: encoded,
|
|
Path: "/",
|
|
}
|
|
http.SetCookie(w, cookie)
|
|
return http.StatusOK, nil
|
|
}
|
|
|
|
// ClearCookie clears a cookie.
|
|
func ClearCookie(w http.ResponseWriter) (int, error) {
|
|
cookie := &http.Cookie{
|
|
Name: "session",
|
|
Value: "",
|
|
Path: "/",
|
|
MaxAge: -1,
|
|
}
|
|
http.SetCookie(w, cookie)
|
|
return http.StatusOK, nil
|
|
}
|
|
|
|
// SetCookieHandler sets a cookie with email and password.
|
|
func SetCookieHandler(w http.ResponseWriter, email string, pass string) (int, error) {
|
|
if email != "" && pass != "" {
|
|
log.Debugf("User email : %s , password : %s", email, pass)
|
|
var user model.User
|
|
isValidEmail, _ := formStruct.EmailValidation(email, formStruct.NewErrors())
|
|
if isValidEmail {
|
|
log.Debug("User entered valid email.")
|
|
if db.ORM.Where("email = ?", email).First(&user).RecordNotFound() {
|
|
return http.StatusNotFound, errors.New("user not found")
|
|
}
|
|
} else {
|
|
log.Debug("User entered username.")
|
|
if db.ORM.Where("username = ?", email).First(&user).RecordNotFound() {
|
|
return http.StatusNotFound, errors.New("user not found")
|
|
}
|
|
}
|
|
err := bcrypt.CompareHashAndPassword([]byte(user.Password), []byte(pass))
|
|
if err != nil {
|
|
return http.StatusUnauthorized, errors.New("password incorrect")
|
|
}
|
|
status, err := SetCookie(w, user.Token)
|
|
if err != nil {
|
|
return status, err
|
|
}
|
|
w.Header().Set("X-Auth-Token", user.Token)
|
|
return http.StatusOK, nil
|
|
}
|
|
return http.StatusNotFound, errors.New("user not found")
|
|
}
|
|
|
|
// RegisterHanderFromForm sets cookie from a RegistrationForm.
|
|
func RegisterHanderFromForm(w http.ResponseWriter, registrationForm formStruct.RegistrationForm) (int, error) {
|
|
email := registrationForm.Email
|
|
pass := registrationForm.Password
|
|
log.Debugf("RegisterHandler UserEmail : %s", email)
|
|
log.Debugf("RegisterHandler UserPassword : %s", pass)
|
|
return SetCookieHandler(w, email, pass)
|
|
}
|
|
|
|
// RegisterHandler sets a cookie when user registered.
|
|
func RegisterHandler(w http.ResponseWriter, r *http.Request) (int, error) {
|
|
var registrationForm formStruct.RegistrationForm
|
|
modelHelper.BindValueForm(®istrationForm, r)
|
|
return RegisterHanderFromForm(w, registrationForm)
|
|
}
|
|
|
|
// CurrentUser get a current user.
|
|
func CurrentUser(r *http.Request) (model.User, error) {
|
|
var user model.User
|
|
var token string
|
|
var err error
|
|
token = r.Header.Get("X-Auth-Token")
|
|
if len(token) > 0 {
|
|
log.Debug("header token exists")
|
|
} else {
|
|
token, err = Token(r)
|
|
log.Debug("header token does not exist")
|
|
if err != nil {
|
|
return user, err
|
|
}
|
|
}
|
|
if db.ORM.Where("api_token = ?", token).First(&user).RecordNotFound() {
|
|
return user, errors.New("user not found")
|
|
}
|
|
err = db.ORM.Model(&user).Error
|
|
return user, err
|
|
}
|