This commit is contained in:
刘河
2019-03-20 13:47:25 +08:00
parent f43942413e
commit efa341c7e8
3 changed files with 8 additions and 3 deletions

View File

@@ -27,7 +27,8 @@ func (s *BaseController) Prepare() {
md5Key := s.GetString("auth_key")
timestamp := s.GetIntNoErr("timestamp")
configKey := beego.AppConfig.String("auth_key")
if !(time.Now().Unix()-int64(timestamp) <= 20 && time.Now().Unix()-int64(timestamp) >= -20 && crypt.Md5(configKey+strconv.Itoa(timestamp)) == md5Key) {
timeNowUnix := time.Now().Unix()
if !(((timeNowUnix - int64(timestamp)) <= 20) && ((timeNowUnix - int64(timestamp)) >= -20) && (crypt.Md5(configKey+strconv.Itoa(timestamp)) == md5Key)) {
if s.GetSession("auth") != true {
s.Redirect("/login/index", 302)
}