package Account import ( "ColdVerify_server/conf" "fmt" "github.com/astaxie/beego/cache" _ "github.com/astaxie/beego/cache/redis" uuid "github.com/satori/go.uuid" "log" "time" ) var redisCache_Tokey cache.Cache func init() { //注册模型 //orm.RegisterModel(new(Tokey)) config := fmt.Sprintf(`{"key":"%s","conn":"%s","dbNum":"%s","password":"%s"}`, "redis_Tokey", conf.Redis_address, conf.Redis_dbNum, conf.Redis_password) fmt.Println(config) var err error redisCache_Tokey, err = cache.NewCache("redis", config) if err != nil || redisCache_Tokey == nil { errMsg := "failed to init redis" fmt.Println(errMsg, err) } } // ---------------- Redis ------------------- // Redis_Set(m.T_sn,m) // Redis 更新缓存 func Redis_Tokey_Set(key string, r string) (err error) { err = redisCache_Tokey.Put(key, r, 24*time.Hour) if err != nil { fmt.Println("set key:", key, ",value:", r, err) } return } // if r,is :=Redis_Get(T_sn);is{ // return r,nil // } func Redis_Tokey_Get(key string) (r string, is bool) { if redisCache_Tokey.IsExist(key) { //println("找到key:",key) v := redisCache_Tokey.Get(key) value := string(v.([]byte)) return value, true } //println("没有 找到key:",key) return "", false } func Redis_DelK(key string) (err error) { err = redisCache_Tokey.Delete(key) return } // ---------------- 特殊方法 ------------------- // 验证 TOKEY func Read_Tokey(User_tokey string) (string, bool) { return Redis_Tokey_Get(User_tokey) } // 添加 Tokey func Add_Tokey(User_uuid string) (Tokey string) { for true { Tokey = uuid.NewV4().String() _, is := Redis_Tokey_Get(Tokey) if !is { break } fmt.Print("申请 TOKEY 重复!重新生成。", Tokey) } Redis_Tokey_Set(Tokey, User_uuid) return Tokey } // 登录验证 func Verification(GetCookie string, GetString string) (User, bool) { // 自适应 参数 User_tokey := GetCookie if len(User_tokey) == 0 { User_tokey = GetString } if len(User_tokey) == 0 { return User{}, false } // 判断 tokey 是否存在 tokey, is := Read_Tokey(User_tokey) if !is { return User{}, false } err, user_r := Read_User_ByT_uuid(tokey) if err != nil { return User{}, false } log.Println("登录 User_name 为:", user_r.T_name) return user_r, true } // 登录验证 func Verification_Admin(GetCookie string, GetString string) (Admin, bool) { // 自适应 参数 User_tokey := GetCookie if len(User_tokey) == 0 { User_tokey = GetString } if len(User_tokey) == 0 { return Admin{}, false } // 判断 tokey 是否存在 tokey, is := Read_Tokey(User_tokey) if !is { return Admin{}, false } err, user_r := Read_Admin_ByT_uuid(tokey) if err != nil { return Admin{}, false } log.Println("登录 Admin_name 为:", user_r.T_name) return user_r, true }