package models import ( "rdluck_tools/orm" "time" ) type Session struct { SessionId int `orm:"column(session_id);pk"` UserId int OpenId string AccessToken string ExpireTime time.Time CreatedTime time.Time LastUpdatedTime time.Time } func GetSessionByToken(token string) (item *Session, err error) { sql := `SELECT * FROM session WHERE access_token=? AND expire_time> NOW() ORDER BY session_id DESC LIMIT 1 ` o := orm.NewOrm() o.Using("rddp") err = o.Raw(sql, token).QueryRow(&item) return } func GetSessionCountByToken(token string) (count int, err error) { sql := `SELECT COUNT(1) AS count FROM session WHERE access_token=? AND expire_time> NOW() ORDER BY session_id DESC LIMIT 1 ` o := orm.NewOrm() o.Using("rddp") err = o.Raw(sql, token).QueryRow(&count) return } //添加用户session信息 func AddSession(item *Session) (err error) { o := orm.NewOrm() o.Using("rddp") _, err = o.Insert(item) return } func GetTokenByUid(uid int) (item *Session, err error) { sql := `SELECT * FROM session WHERE user_id=? AND expire_time> NOW() ORDER BY session_id DESC LIMIT 1 ` o := orm.NewOrm() o.Using("rddp") err = o.Raw(sql, uid).QueryRow(&item) return }