當前位置: 首頁>>代碼示例>>Golang>>正文


Golang SessionStore.Get方法代碼示例

本文整理匯總了Golang中github.com/gogits/session.SessionStore.Get方法的典型用法代碼示例。如果您正苦於以下問題:Golang SessionStore.Get方法的具體用法?Golang SessionStore.Get怎麽用?Golang SessionStore.Get使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在github.com/gogits/session.SessionStore的用法示例。


在下文中一共展示了SessionStore.Get方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: SignedInId

// SignedInId returns the id of signed in user.
func SignedInId(header http.Header, sess session.SessionStore) int64 {
	if !models.HasEngine {
		return 0
	}

	if setting.Service.EnableReverseProxyAuth {
		webAuthUser := header.Get(setting.ReverseProxyAuthUser)
		if len(webAuthUser) > 0 {
			u, err := models.GetUserByName(webAuthUser)
			if err != nil {
				if err != models.ErrUserNotExist {
					log.Error("auth.user.SignedInId(GetUserByName): %v", err)
				}
				return 0
			}
			return u.Id
		}
	}

	uid := sess.Get("userId")
	if uid == nil {
		return 0
	}
	if id, ok := uid.(int64); ok {
		if _, err := models.GetUserById(id); err != nil {
			if err != models.ErrUserNotExist {
				log.Error("auth.user.SignedInId(GetUserById): %v", err)
			}
			return 0
		}
		return id
	}
	return 0
}
開發者ID:JustStone,項目名稱:gogs,代碼行數:35,代碼來源:user.go

示例2: SignedInName

// SignedInName returns the name of signed in user.
func SignedInName(sess session.SessionStore) string {
	uname := sess.Get("userName")
	if uname == nil {
		return ""
	}
	if s, ok := uname.(string); ok {
		return s
	}
	return ""
}
開發者ID:hilerchyn,項目名稱:gogs,代碼行數:11,代碼來源:user.go

示例3: SignedInId

// SignedInId returns the id of signed in user.
func SignedInId(sess session.SessionStore) int64 {
	if !models.HasEngine {
		return 0
	}

	uid := sess.Get("userId")
	if uid == nil {
		return 0
	}
	if id, ok := uid.(int64); ok {
		if _, err := models.GetUserById(id); err != nil {
			return 0
		}
		return id
	}
	return 0
}
開發者ID:hilerchyn,項目名稱:gogs,代碼行數:18,代碼來源:user.go

示例4: SignedInId

// SignedInId returns the id of signed in user.
func SignedInId(session session.SessionStore) int64 {
	userId := session.Get("userId")
	if userId == nil {
		return 0
	}
	if s, ok := userId.(int64); ok {
		if _, err := models.GetUserById(s); err != nil {
			return 0
		}
		return s
	}
	return 0
}
開發者ID:josephyzhou,項目名稱:gogs,代碼行數:14,代碼來源:user.go


注:本文中的github.com/gogits/session.SessionStore.Get方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。