mirror of https://github.com/Xhofe/alist
27 lines
590 B
Go
27 lines
590 B
Go
package middlewares
|
|
|
|
import (
|
|
"github.com/Xhofe/alist/conf"
|
|
"github.com/Xhofe/alist/server/common"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
func Auth(c *gin.Context) {
|
|
token := c.GetHeader("Authorization")
|
|
//password, err := model.GetSettingByKey("password")
|
|
//if err != nil {
|
|
// if err == gorm.ErrRecordNotFound {
|
|
// common.ErrorResp(c, fmt.Errorf("password not set"), 400)
|
|
// return
|
|
// }
|
|
// common.ErrorResp(c, err, 500)
|
|
// return
|
|
//}
|
|
//if token != utils.GetMD5Encode(password.Value) {
|
|
if token != conf.Token {
|
|
common.ErrorStrResp(c, "Invalid token", 401)
|
|
return
|
|
}
|
|
c.Next()
|
|
}
|