func (this *ArticleController) DoEdit() { id, err := this.GetInt("id") if err != nil { this.Ctx.WriteString("get param id fail") return } b := blog.OneById(id) if b == nil { this.Ctx.WriteString("no such article") return } title := this.GetString("title") ident := this.GetString("ident") keywords := this.GetString("keywords") catalog_id := this.GetIntWithDefault("catalog_id", -1) aType := this.GetIntWithDefault("type", -1) status := this.GetIntWithDefault("status", -1) content := this.GetString("content") if catalog_id == -1 || aType == -1 || status == -1 { this.Ctx.WriteString("catalog || type || status is illegal") return } if title == "" || ident == "" { this.Ctx.WriteString("title or ident is blank") return } cp := catalog.OneById(int64(catalog_id)) if cp == nil { this.Ctx.WriteString("catalog_id not exists") return } b.Ident = ident b.Title = title b.Keywords = keywords b.CatalogId = int64(catalog_id) b.Type = int8(aType) b.Status = int8(status) err = blog.Update(b, content) if err != nil { this.Ctx.WriteString(err.Error()) return } this.JsStorage("deleteKey", "post/edit") this.Redirect("/catalog/"+cp.Ident, 302) }
func (this *CatalogController) Edit() { id, err := this.GetInt("id") if err != nil { this.Ctx.WriteString("param id should be digit") return } c := catalog.OneById(int64(id)) if c == nil { this.Ctx.WriteString(fmt.Sprintf("no such catalog_id:%d", id)) return } this.Data["Catalog"] = c this.Layout = "layout/admin.html" this.TplNames = "catalog/edit.html" }
func (this *MainController) Read() { ident := this.GetString(":ident") b := blog.OneByIdent(ident) if b == nil { this.Ctx.WriteString("no such article") return } b.Views = b.Views + 1 blog.Update(b, "") this.Data["Blog"] = b this.Data["Content"] = g.RenderMarkdown(blog.ReadBlogContent(b).Content) this.Data["PageTitle"] = b.Title this.Data["Catalog"] = catalog.OneById(b.CatalogId) this.Layout = "layout/default.html" this.TplNames = "article/read.html" }
func (this *CatalogController) Del() { id, err := this.GetInt("id") if err != nil { this.Ctx.WriteString("param id should be digit") return } c := catalog.OneById(int64(id)) if c == nil { this.Ctx.WriteString(fmt.Sprintf("no such catalog_id:%d", id)) return } err = catalog.Del(c) if err != nil { this.Ctx.WriteString(err.Error()) return } this.Ctx.WriteString("del success") return }
func (this *ArticleController) DoAdd() { title := this.GetString("title") ident := this.GetString("ident") keywords := this.GetString("keywords") catalog_id := this.GetIntWithDefault("catalog_id", -1) aType := this.GetIntWithDefault("type", -1) status := this.GetIntWithDefault("status", -1) content := this.GetString("content") if catalog_id == -1 || aType == -1 || status == -1 { this.Ctx.WriteString("catalog || type || status is illegal") return } if title == "" || ident == "" { this.Ctx.WriteString("title or ident is blank") return } cp := catalog.OneById(int64(catalog_id)) if cp == nil { this.Ctx.WriteString("catalog_id not exists") return } b := &models.Blog{Ident: ident, Title: title, Keywords: keywords, CatalogId: int64(catalog_id), Type: int8(aType), Status: int8(status)} _, err := blog.Save(b, content) if err != nil { this.Ctx.WriteString(err.Error()) return } this.JsStorage("deleteKey", "post/new") this.Redirect("/catalog/"+cp.Ident, 302) }
func (this *CatalogController) DoEdit() { cid, err := this.GetInt("catalog_id") if err != nil { this.Ctx.WriteString("catalog_id is illegal") return } old := catalog.OneById(int64(cid)) if old == nil { this.Ctx.WriteString(fmt.Sprintf("no such catalog_id: %d", cid)) return } var o *models.Catalog o, err = this.extractCatalog(false) if err != nil { this.Ctx.WriteString(err.Error()) return } old.Ident = o.Ident old.Name = o.Name old.Resume = o.Resume old.DisplayOrder = o.DisplayOrder if o.ImgUrl != "" { old.ImgUrl = o.ImgUrl } if err = catalog.Update(old); err != nil { this.Ctx.WriteString(err.Error()) return } this.Redirect("/", 302) }