func (this *PostRouter) SingleSubmit() { this.TplNames = "post/post.html" if this.CheckActiveRedirect() { return } var post models.Post if this.loadPost(&post, nil) { return } var redir bool defer func() { if !redir { var comments []*models.Comment this.loadComments(&post, &comments) } }() form := models.CommentForm{} if !this.ValidFormSets(&form) { return } comment := models.Comment{} if err := form.SaveComment(&comment, &this.user, &post); err == nil { this.JsStorage("deleteKey", "post/comment") this.Redirect(post.Link(), 302) redir = true models.PostReplysCount(&post) } }
func (this *PostRouter) NewSubmit() { this.TplNames = "post/new.html" if this.CheckActiveRedirect() { return } if this.IsAjax() { result := map[string]interface{}{ "success": false, } action := this.GetString("action") switch action { case "preview": content := this.GetString("content") result["preview"] = models.RenderPostContent(content) models.FilterMentions(&this.user, models.RenderPostContent(content)) result["success"] = true } this.Data["json"] = result this.ServeJson() return } form := models.PostForm{Locale: this.Locale} slug := this.GetString("topic") if len(slug) > 0 { topic := models.Topic{Slug: slug} topic.Read("Slug") form.Topic = topic.Id this.Data["Topic"] = &topic } models.ListCategories(&form.Categories) models.ListTopics(&form.Topics) if !this.ValidFormSets(&form) { return } var post models.Post if err := form.SavePost(&post, &this.user); err == nil { this.JsStorage("deleteKey", "post/new") this.Redirect(post.Link(), 302) } }
func (this *PostRouter) EditSubmit() { this.TplNames = "post/edit.html" if this.CheckActiveRedirect() { return } var post models.Post if this.loadPost(&post, &this.user) { return } if this.IsAjax() { result := map[string]interface{}{ "success": false, } action := this.GetString("action") switch action { case "preview": content := this.GetString("content") result["preview"] = models.RenderPostContent(content) result["success"] = true } this.Data["json"] = result this.ServeJson() return } form := models.PostForm{} form.SetFromPost(&post) models.ListCategories(&form.Categories) models.ListTopics(&form.Topics) if !this.ValidFormSets(&form) { return } if err := form.UpdatePost(&post, &this.user); err == nil { this.JsStorage("deleteKey", "post/edit") this.Redirect(post.Link(), 302) } }