本文整理汇总了Golang中github.com/astaxie/beego/session.SessionStore类的典型用法代码示例。如果您正苦于以下问题:Golang SessionStore类的具体用法?Golang SessionStore怎么用?Golang SessionStore使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SessionStore类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Golang代码示例。
示例1: GetUserFromSession
// get user if key exist in session
func GetUserFromSession(user *User, sess session.SessionStore) bool {
if id, ok := sess.Get("auth_user_id").(int64); ok && id > 0 {
*user = User{Id: id}
if user.Read() == nil {
return true
}
}
return false
}
开发者ID:thuongdinh,项目名称:beegowebapp,代码行数:11,代码来源:user_util.go
示例2: DoAuth
func DoAuth(sess session.SessionStore) {
if utils.IsPassedAuth() {
sess.Set(utils.SessAuth, "ok")
utils.UpdateSolarMapItem(utils.SessAuth, "ok")
fmt.Println("AUTH OK!")
utils.WriteDebugLog("AUTH OK!")
} else {
sess.Set(utils.SessAuth, "none")
utils.UpdateSolarMapItem(utils.SessAuth, "none")
}
}
开发者ID:williamzhang2013,项目名称:solarzoom,代码行数:11,代码来源:auth.go
示例3: DoSetSN
func DoSetSN(sn string, sess session.SessionStore) {
if len(sn) == snlength {
// sn works
if err := getChipSNAtString(sn); err == nil {
utils.SetChipSNArrayItem(ChipSN)
utils.PrintChipSN()
sess.Set(utils.SessAuth, "sn")
utils.UpdateSolarMapItem(utils.SessAuth, "sn")
}
}
}
开发者ID:williamzhang2013,项目名称:solarzoom,代码行数:11,代码来源:auth.go
示例4: VerifyEmail
// Handles verification of account email based on validationKey
func VerifyEmail(w http.ResponseWriter, r *http.Request) {
validationKey := strings.Split(r.RequestURI, "/")[2]
stmt, _ := db.Prepare("select username, email, password from signup where validationKey = ?")
var username string
var email string
var password string
res := stmt.QueryRow(validationKey)
err := res.Scan(&username, &email, &password)
if err != nil {
http.Redirect(w, r, "/validationFailed", 302)
}
stmt, _ = db.Prepare("insert into users (username, email, password) values (?,?,?)")
row, err := stmt.Exec(username, email, password)
if err == nil {
id64, _ := row.LastInsertId()
id := int(id64)
// Login user and delete signup record
var sess session.SessionStore
sessionCookie, err := r.Cookie("session_id")
if err == nil {
sess, _ = globalSessions.GetSessionStore(sessionCookie.Value)
} else {
sess, _ = globalSessions.SessionStart(w, r)
}
defer sess.SessionRelease(w)
_ = sess.Set("user_id", id)
_ = sess.Set("username", username)
setUserCookies(w, id, sess.SessionID())
saveSession(w, r, sess.SessionID(), id)
addRemoteAddress(r, id)
db.Prepare("delete from signup where validationKey = ?")
db.Exec(validationKey)
http.Redirect(w, r, "/", 302)
}
}
开发者ID:nathan-tebay,项目名称:superflyreports,代码行数:38,代码来源:userAuth.go
示例5: GetUserIdFromSession
func GetUserIdFromSession(sess session.SessionStore) int {
if id, ok := sess.Get("auth_user_id").(int); ok && id > 0 {
return id
}
return 0
}
开发者ID:JessonChan,项目名称:wetalk,代码行数:6,代码来源:auth.go
示例6: MarkNotLogin
func MarkNotLogin(sess session.SessionStore) {
sess.Delete(_session_login_flag)
}
开发者ID:goodplayer,项目名称:Princess,代码行数:3,代码来源:functions.go
示例7: MarkLogin
func MarkLogin(sess session.SessionStore) {
sess.Set(_session_login_flag, _session_login_flag)
}
开发者ID:goodplayer,项目名称:Princess,代码行数:3,代码来源:functions.go
注:本文中的github.com/astaxie/beego/session.SessionStore类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论