File size: 4,631 Bytes
530729e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 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 157 158 159 160 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 186 187 188 189 190 191 192 193 194 195 196 197 198 |
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package auth
import (
"log"
"sync"
"github.com/GoAdminGroup/go-admin/modules/db/dialect"
"github.com/GoAdminGroup/go-admin/modules/logger"
"github.com/GoAdminGroup/go-admin/context"
"github.com/GoAdminGroup/go-admin/modules/db"
"github.com/GoAdminGroup/go-admin/modules/service"
"github.com/GoAdminGroup/go-admin/plugins/admin/models"
"github.com/GoAdminGroup/go-admin/plugins/admin/modules"
"golang.org/x/crypto/bcrypt"
)
// Auth get the user model from Context.
func Auth(ctx *context.Context) models.UserModel {
return ctx.User().(models.UserModel)
}
// Check check the password and username and return the user model.
func Check(password string, username string, conn db.Connection) (user models.UserModel, ok bool) {
user = models.User().SetConn(conn).FindByUserName(username)
if user.IsEmpty() {
ok = false
} else {
if comparePassword(password, user.Password) {
ok = true
user = user.WithRoles().WithPermissions().WithMenus()
user.UpdatePwd(EncodePassword([]byte(password)))
} else {
ok = false
}
}
return
}
func comparePassword(comPwd, pwdHash string) bool {
err := bcrypt.CompareHashAndPassword([]byte(pwdHash), []byte(comPwd))
return err == nil
}
// EncodePassword encode the password.
func EncodePassword(pwd []byte) string {
hash, err := bcrypt.GenerateFromPassword(pwd, bcrypt.DefaultCost)
if err != nil {
return ""
}
return string(hash)
}
// SetCookie set the cookie.
func SetCookie(ctx *context.Context, user models.UserModel, conn db.Connection) error {
ses, err := InitSession(ctx, conn)
if err != nil {
return err
}
return ses.Add("user_id", user.Id)
}
// DelCookie delete the cookie from Context.
func DelCookie(ctx *context.Context, conn db.Connection) error {
ses, err := InitSession(ctx, conn)
if err != nil {
return err
}
return ses.Clear()
}
type TokenService struct {
tokens CSRFToken
lock sync.Mutex
conn db.Connection
}
func (s *TokenService) Name() string {
return TokenServiceKey
}
func InitCSRFTokenSrv(conn db.Connection) (string, service.Service) {
list, err := db.WithDriver(conn).Table("goadmin_session").
Where("values", "=", "__csrf_token__").
All()
if db.CheckError(err, db.QUERY) {
logger.Error("csrf token query from database error: ", err)
}
tokens := make(CSRFToken, len(list))
for i := 0; i < len(list); i++ {
tokens[i] = list[i]["sid"].(string)
}
return TokenServiceKey, &TokenService{
tokens: tokens,
conn: conn,
}
}
const (
TokenServiceKey = "token_csrf_helper"
ServiceKey = "auth"
)
func GetTokenService(s interface{}) *TokenService {
if srv, ok := s.(*TokenService); ok {
return srv
}
log.Panicf("wrong service: %+v", s)
return nil
}
// AddToken add the token to the CSRFToken.
func (s *TokenService) AddToken() string {
s.lock.Lock()
defer s.lock.Unlock()
tokenStr := modules.Uuid()
s.tokens = append(s.tokens, tokenStr)
_, err := db.WithDriver(s.conn).Table("goadmin_session").Insert(dialect.H{
"sid": tokenStr,
"values": "__csrf_token__",
})
if db.CheckError(err, db.INSERT) {
logger.Error("csrf token insert into database error: ", err)
}
return tokenStr
}
// CheckToken check the given token with tokens in the CSRFToken, if exist
// return true.
func (s *TokenService) CheckToken(toCheckToken string) (ok bool) {
defer func() {
if ok {
err := db.WithDriver(s.conn).Table("goadmin_session").
Where("sid", "=", toCheckToken).
Where("values", "=", "__csrf_token__").
Delete()
if db.CheckError(err, db.DELETE) {
logger.Error("csrf token delete from database error: ", err)
}
}
}()
for i := 0; i < len(s.tokens); i++ {
if (s.tokens)[i] == toCheckToken {
s.tokens = append((s.tokens)[:i], (s.tokens)[i+1:]...)
ok = true
return
}
}
item, err := db.WithDriver(s.conn).Table("goadmin_session").
Where("sid", "=", toCheckToken).
Where("values", "=", "__csrf_token__").
First()
if item != nil && err == nil {
ok = true
return
}
return
}
// CSRFToken is type of a csrf token list.
type CSRFToken []string
type Processor func(ctx *context.Context) (model models.UserModel, exist bool, msg string)
type Service struct {
P Processor
}
func (s *Service) Name() string {
return "auth"
}
func GetService(s interface{}) *Service {
if srv, ok := s.(*Service); ok {
return srv
}
log.Panicf("wrong service: %+v", s)
return nil
}
func NewService(processor Processor) *Service {
return &Service{
P: processor,
}
}
|