1 Star 0 Fork 0

hh/iris

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
lifetime.go 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
package sessions
import (
"time"
)
// LifeTime controls the session expiration datetime.
type LifeTime struct {
// Remember, tip for the future:
// No need of gob.Register, because we embed the time.Time.
// And serious bug which has a result of me spending my whole evening:
// Because of gob encoding it doesn't encodes/decodes the other fields if time.Time is embedded
// (this should be a bug(go1.9-rc1) or not. We don't care atm)
time.Time
timer *time.Timer
}
// Begin will begin the life based on the time.Now().Add(d).
// Use `Continue` to continue from a stored time(database-based session does that).
func (lt *LifeTime) Begin(d time.Duration, onExpire func()) {
if d <= 0 {
return
}
lt.Time = time.Now().Add(d)
lt.timer = time.AfterFunc(d, onExpire)
}
// Revive will continue the life based on the stored Time.
// Other words that could be used for this func are: Continue, Restore, Resc.
func (lt *LifeTime) Revive(onExpire func()) {
if lt.Time.IsZero() {
return
}
now := time.Now()
if lt.Time.After(now) {
d := lt.Time.Sub(now)
lt.timer = time.AfterFunc(d, onExpire)
}
}
// Shift resets the lifetime based on "d".
func (lt *LifeTime) Shift(d time.Duration) {
if d > 0 && lt.timer != nil {
lt.timer.Reset(d)
}
}
// ExpireNow reduce the lifetime completely.
func (lt *LifeTime) ExpireNow() {
lt.Time = CookieExpireDelete
if lt.timer != nil {
lt.timer.Stop()
}
}
// HasExpired reports whether "lt" represents is expired.
func (lt *LifeTime) HasExpired() bool {
if lt.IsZero() {
return false
}
return lt.Time.Before(time.Now())
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/w1229748769/iris.git
git@gitee.com:w1229748769/iris.git
w1229748769
iris
iris
v8.4.3

搜索帮助

0d507c66 1850385 C8b1a773 1850385