本文整理匯總了Golang中github.com/fuxiaohei/GoInk.Context.Cookie方法的典型用法代碼示例。如果您正苦於以下問題:Golang Context.Cookie方法的具體用法?Golang Context.Cookie怎麽用?Golang Context.Cookie使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類github.com/fuxiaohei/GoInk.Context
的用法示例。
在下文中一共展示了Context.Cookie方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。
示例1: AdminProfile
func AdminProfile(context *GoInk.Context) {
uid, _ := strconv.Atoi(context.Cookie("token-user"))
user := model.GetUserById(uid)
if context.Method == "POST" {
data := context.Input()
if !user.ChangeEmail(data["email"]) {
Json(context, false).Set("msg", "郵箱與別的用戶重複").End()
return
}
user.Name = data["user"]
user.Email = data["email"]
user.Avatar = utils.Gravatar(user.Email, "180")
user.Url = data["url"]
user.Nick = data["nick"]
user.Bio = data["bio"]
Json(context, true).End()
go model.SyncUsers()
go model.UpdateCommentAdmin(user)
context.Do("profile_update", user)
return
}
context.Layout("admin/admin")
context.Render("admin/profile", map[string]interface{}{
"Title": "個性資料",
"User": user,
})
}
示例2: ArticleWrite
func ArticleWrite(context *GoInk.Context) {
if context.Method == "POST" {
c := new(model.Content)
c.Id = 0
data := context.Input()
if !c.ChangeSlug(data["slug"]) {
Json(context, false).Set("msg", "固定鏈接重複").End()
return
}
c.Title = data["title"]
c.Text = data["content"]
c.Tags = strings.Split(strings.Replace(data["tag"], ",", ",", -1), ",")
c.IsComment = data["comment"] == "1"
c.IsLinked = false
c.AuthorId, _ = strconv.Atoi(context.Cookie("token-user"))
c.Template = "blog.html"
c.Status = data["status"]
c.Format = "markdown"
c.Hits = 1
var e error
c, e = model.CreateContent(c, "article")
if e != nil {
Json(context, false).Set("msg", e.Error()).End()
return
}
Json(context, true).Set("content", c).End()
context.Do("article_created", c)
//c.Type = "article"
return
}
context.Layout("admin/admin")
context.Render("admin/write_article", map[string]interface{}{
"Title": "撰寫文章",
})
}
示例3: Admin
func Admin(context *GoInk.Context) {
uid, _ := strconv.Atoi(context.Cookie("token-user"))
user := model.GetUserById(uid)
context.Layout("admin/admin")
context.Render("admin/home", map[string]interface{}{
"Title": "控製台",
"Statis": model.NewStatis(),
"User": user,
"Messages": model.GetUnreadMessages(),
})
}
示例4: AdminComments
func AdminComments(context *GoInk.Context) {
if context.Method == "DELETE" {
id := context.Int("id")
cmt := model.GetCommentById(id)
model.RemoveComment(cmt.Cid, id)
Json(context, true).End()
context.Do("comment_delete", id)
return
}
if context.Method == "PUT" {
id := context.Int("id")
cmt2 := model.GetCommentById(id)
cmt2.Status = "approved"
cmt2.GetReader().Active = true
model.SaveComment(cmt2)
Json(context, true).End()
context.Do("comment_change_status", cmt2)
return
}
if context.Method == "POST" {
// get required data
pid := context.Int("pid")
cid := model.GetCommentById(pid).Cid
uid, _ := strconv.Atoi(context.Cookie("token-user"))
user := model.GetUserById(uid)
co := new(model.Comment)
co.Author = user.Nick
co.Email = user.Email
co.Url = user.Url
co.Content = context.String("content")
co.Avatar = utils.Gravatar(co.Email, "50")
co.Pid = pid
co.Ip = context.Ip
co.UserAgent = context.UserAgent
co.IsAdmin = true
model.CreateComment(cid, co)
Json(context, true).Set("comment", co.ToJson()).End()
model.CreateMessage("comment", co)
context.Do("comment_reply", co)
return
}
page := context.IntOr("page", 1)
comments, pager := model.GetCommentList(page, 10)
context.Layout("admin/admin")
context.Render("admin/comments", map[string]interface{}{
"Title": "評論",
"Comments": comments,
"Pager": pager,
})
}
示例5: Auth
func Auth(context *GoInk.Context) {
tokenValue := context.Cookie("token-value")
token := model.GetTokenByValue(tokenValue)
if token == nil {
context.Redirect("/logout/")
context.End()
return
}
if !token.IsValid() {
context.Redirect("/logout/")
context.End()
return
}
}
示例6: AdminPassword
func AdminPassword(context *GoInk.Context) {
if context.Method == "POST" {
uid, _ := strconv.Atoi(context.Cookie("token-user"))
user := model.GetUserById(uid)
if !user.CheckPassword(context.String("old")) {
Json(context, false).Set("msg", "舊密碼錯誤").End()
return
}
user.ChangePassword(context.String("new"))
go model.SyncUsers()
Json(context, true).End()
context.Do("password_update", user)
return
}
context.Layout("admin/admin")
context.Render("admin/password", map[string]interface{}{
"Title": "修改密碼",
//"User":user,
})
}
示例7: Login
func Login(context *GoInk.Context) {
if context.Method == "POST" {
data := context.Input()
user := model.GetUserByName(data["user"])
if user == nil {
Json(context, false).End()
return
}
if !user.CheckPassword(data["password"]) {
Json(context, false).End()
return
}
exp := 3600 * 24 * 3
expStr := strconv.Itoa(exp)
s := model.CreateToken(user, context, int64(exp))
context.Cookie("token-user", strconv.Itoa(s.UserId), expStr)
context.Cookie("token-value", s.Value, expStr)
Json(context, true).End()
return
}
if context.Cookie("token-value") != "" {
context.Redirect("/admin/")
return
}
context.Render("admin/login", nil)
}
示例8: FileUpload
func FileUpload(context *GoInk.Context) {
var req *http.Request
req = context.Request
req.ParseMultipartForm(32 << 20)
f, h, e := req.FormFile("file")
if e != nil {
Json(context, false).Set("msg", e.Error()).End()
return
}
data, _ := ioutil.ReadAll(f)
maxSize := context.App().Config().Int("app.upload_size")
defer func() {
f.Close()
data = nil
h = nil
}()
if len(data) >= maxSize {
Json(context, false).Set("msg", "文件應小於10M").End()
return
}
if !strings.Contains(context.App().Config().String("app.upload_files"), path.Ext(h.Filename)) {
Json(context, false).Set("msg", "文件隻支持Office文件,圖片和zip存檔").End()
return
}
ff := new(model.File)
ff.Name = h.Filename
ff.Type = context.StringOr("type", "image")
ff.Size = int64(len(data))
ff.ContentType = h.Header["Content-Type"][0]
ff.Author, _ = strconv.Atoi(context.Cookie("token-user"))
ff.Url = model.CreateFilePath(context.App().Get("upload_dir"), ff)
e = ioutil.WriteFile(ff.Url, data, os.ModePerm)
if e != nil {
Json(context, false).Set("msg", e.Error()).End()
return
}
model.CreateFile(ff)
Json(context, true).Set("file", ff).End()
context.Do("attach_created", ff)
}
示例9: Logout
func Logout(context *GoInk.Context) {
context.Cookie("token-user", "", "-3600")
context.Cookie("token-value", "", "-3600")
context.Redirect("/login/")
}