当前位置: 首页>>代码示例>>Golang>>正文


Golang Session.Flashes方法代码示例

本文整理汇总了Golang中github.com/martini-contrib/sessions.Session.Flashes方法的典型用法代码示例。如果您正苦于以下问题:Golang Session.Flashes方法的具体用法?Golang Session.Flashes怎么用?Golang Session.Flashes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/martini-contrib/sessions.Session的用法示例。


在下文中一共展示了Session.Flashes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: GithubCallback

func GithubCallback(session sessions.Session, r *http.Request, re render.Render) {
	code, state := r.URL.Query().Get("code"), r.URL.Query().Get("state")
	client_id, client_secret := common.Config.OAuth2Client_ID, common.Config.OAuth2Client_Secret

	flashes := session.Flashes("state")
	if code == "" || state == "" || session == nil || len(flashes) == 0 || flashes[0].(string) != state {
		re.Redirect("/")
		return
	}

	client := &http.Client{}

	form := url.Values{}
	form.Add("code", code)
	form.Add("client_id", client_id)
	form.Add("client_secret", client_secret)

	req, _ := http.NewRequest("POST", "https://github.com/login/oauth/access_token/", strings.NewReader(form.Encode()))
	req.Header.Set("Accept", "application/json")

	resp, _ := client.Do(req)
	body, _ := ioutil.ReadAll(resp.Body)
	parse := map[string]interface{}{}
	json.Unmarshal([]byte(string(body)), &parse)

	token := parse["access_token"].(string)

	req, _ = http.NewRequest("GET", "https://api.github.com/user?access_token="+token, nil)

	resp, _ = client.Do(req)
	body, _ = ioutil.ReadAll(resp.Body)
	parse = map[string]interface{}{}
	json.Unmarshal([]byte(string(body)), &parse)

	username, id := parse["login"].(string), strconv.FormatFloat(parse["id"].(float64), 'f', -1, 64)

	if !common.UserExist(id) {
		common.NewUser(id)
	}

	session.Set("loggedin", true)
	session.Set("username", username)
	session.Set("id", id)
	session.Set("token", token)

	redirectTo := session.Get("redirect_to")
	if redirectTo != nil {
		re.Redirect(redirectTo.(string))
	} else {
		re.Redirect("/")
	}
	session.Set("redirect_to", nil)
}
开发者ID:SemQuery,项目名称:web,代码行数:53,代码来源:session.go

示例2: NewPageData

// NewPageData is the constructor for PageData struct
func NewPageData(tokens oauth2.Tokens, session sessions.Session) *PageData {
	pd := &PageData{}

	pd.User = CurrentUser(tokens)

	pd.GravatarImage = fmt.Sprintf(
		"https://secure.gravatar.com/avatar/%x?s=50&d=https%%3A%%2F%%2Fwww.synkee.com%%2Fapp%%2Fstatic%%2Fdist%%2Fimg%%2Fuser.png",
		md5.Sum([]byte(pd.User.Email)))

	pd.AppUrl = config.AppUrl
	pd.Errors = &binding.Errors{}

	pd.SuccessFlash = session.Flashes("success")
	pd.ErrorFlash = session.Flashes("error")

	pd.Config = config

	pd.Settings = &Setting{}
	db.Where(&Setting{UserID: int(pd.User.ID)}).First(pd.Settings)

	// log.Printf("[NewPageData] settings: %s", pd.Settings)

	return pd
}
开发者ID:tpiha,项目名称:barecv,代码行数:25,代码来源:helpers.go


注:本文中的github.com/martini-contrib/sessions.Session.Flashes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。