码农笔录博客源码
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

76 líneas
1.6 KiB

hace 6 años
package controllers
import (
"github.com/astaxie/beego"
"beeblog/service"
hace 6 años
"beeblog/models"
)
hace 6 años
type PageController struct {
beego.Controller
}
func (this *PageController) Blog() {
hace 6 años
catService := service.CategoryService{}
cats, err := catService.GetCats()
if err != nil {
hace 6 años
this.Redirect("/404", 302)
return
}
this.Data["Cats"] = cats
hace 6 años
this.TplName = "iframe/blog.html"
}
hace 6 años
hace 6 años
func (this *PageController) IframeUser() {
hace 6 años
userService := service.UserService{}
hace 6 años
uid := this.GetSession("userid")
if uid == nil {
this.Data["IsLogin"] = false
} else {
this.Data["IsLogin"] = true
hace 6 años
if user, err := userService.GetUser(uid.(int64)); err == nil {
hace 6 años
this.Data["User"] = user
} else {
this.Data["User"] = &models.User{Id: uid.(int64)}
}
}
this.TplName = "iframe/user.html"
return
}
hace 6 años
func (this *PageController) IframeNote() {
hace 6 años
noteService := service.NoteService{}
hace 6 años
uid := this.GetSession("userid")
if uid == nil {
this.Data["IsLogin"] = false
}else {
this.Data["IsLogin"] = true
hace 6 años
noteColls,err:=noteService.GetNoteColl(uid.(int64))
hace 6 años
if err== nil {
this.Data["NoteColl"] = noteColls
}
}
hace 6 años
this.TplName = "iframe/note.html"
}
hace 6 años
hace 6 años
func (this *PageController) UsPage() {
this.Data["IsUs"] = true
this.Data["UserId"] = this.GetSession("userid")
this.Data["HeadImg"] = this.GetSession("headimg")
this.Data["NickName"] = this.GetSession("nickname")
this.Data["IsLogin"] = this.GetSession("nickname") != nil
hace 6 años
this.TplName = "us.html"
}
hace 6 años
func (this *PageController) PageNotFound() {
this.TplName = "404.html"
}
func (this *PageController) ServerError() {
this.TplName = "500.html"
}
hace 6 años
func (this *PageController) ServerDemined() {
this.TplName = "403.html"
}