| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | 
							- package controllers
 
- import (
 
- 	"math"
 
- 	"net/url"
 
- 	"github.com/beego/beego/v2/core/logs"
 
- 	"github.com/mindoc-org/mindoc/conf"
 
- 	"github.com/mindoc-org/mindoc/models"
 
- 	"github.com/mindoc-org/mindoc/utils/pagination"
 
- )
 
- type HomeController struct {
 
- 	BaseController
 
- }
 
- func (c *HomeController) Prepare() {
 
- 	c.BaseController.Prepare()
 
- 	//如果没有开启匿名访问,则跳转到登录页面
 
- 	if !c.EnableAnonymous && c.Member == nil {
 
- 		c.Redirect(conf.URLFor("AccountController.Login")+"?url="+url.PathEscape(conf.BaseUrl+c.Ctx.Request.URL.RequestURI()), 302)
 
- 	}
 
- }
 
- func (c *HomeController) Index() {
 
- 	c.Prepare()
 
- 	c.TplName = "home/index.tpl"
 
- 	pageIndex, _ := c.GetInt("page", 1)
 
- 	pageSize := 18
 
- 	memberId := 0
 
- 	if c.Member != nil {
 
- 		memberId = c.Member.MemberId
 
- 	}
 
- 	books, totalCount, err := models.NewBook().FindForHomeToPager(pageIndex, pageSize, memberId)
 
- 	if err != nil {
 
- 		logs.Error(err)
 
- 		c.Abort("500")
 
- 	}
 
- 	if totalCount > 0 {
 
- 		pager := pagination.NewPagination(c.Ctx.Request, totalCount, pageSize, c.BaseUrl())
 
- 		c.Data["PageHtml"] = pager.HtmlPages()
 
- 	} else {
 
- 		c.Data["PageHtml"] = ""
 
- 	}
 
- 	c.Data["TotalPages"] = int(math.Ceil(float64(totalCount) / float64(pageSize)))
 
- 	c.Data["Lists"] = books
 
- }
 
 
  |