wp-go/actions/index.go

304 lines
7.9 KiB
Go
Raw Normal View History

2022-09-18 04:34:48 +00:00
package actions
2022-09-01 02:31:11 +00:00
import (
2022-09-20 04:00:09 +00:00
"context"
2022-09-15 14:35:32 +00:00
"fmt"
2022-09-18 03:57:43 +00:00
"github.com/gin-contrib/sessions"
2022-09-01 02:31:11 +00:00
"github.com/gin-gonic/gin"
2022-09-18 04:34:48 +00:00
"github/fthvgb1/wp-go/actions/common"
2022-09-15 14:44:45 +00:00
"github/fthvgb1/wp-go/helper"
2022-09-14 05:28:31 +00:00
"github/fthvgb1/wp-go/models"
2022-09-23 13:46:34 +00:00
"github/fthvgb1/wp-go/plugins"
2022-09-15 14:35:32 +00:00
"math"
2022-09-01 02:31:11 +00:00
"net/http"
2022-09-16 06:46:51 +00:00
"regexp"
2022-09-14 05:28:31 +00:00
"strconv"
2022-09-15 14:35:32 +00:00
"strings"
2022-09-01 02:31:11 +00:00
)
2022-09-18 14:06:27 +00:00
type indexHandle struct {
2022-09-17 09:11:10 +00:00
c *gin.Context
2022-09-18 03:57:43 +00:00
session sessions.Session
2022-09-17 09:11:10 +00:00
page int
pageSize int
title string
titleL string
titleR string
search string
totalPage int
category string
categoryType string
where models.SqlBuilder
orderBy models.SqlBuilder
order string
join models.SqlBuilder
2022-09-20 14:37:31 +00:00
postType []any
status []any
2022-09-17 09:11:10 +00:00
header string
paginationStep int
2022-09-23 13:46:34 +00:00
scene uint
2022-09-17 09:05:43 +00:00
}
2022-09-18 14:06:27 +00:00
func newIndexHandle(ctx *gin.Context) *indexHandle {
return &indexHandle{
2022-09-17 09:11:10 +00:00
c: ctx,
2022-09-18 03:57:43 +00:00
session: sessions.Default(ctx),
2022-09-17 09:11:10 +00:00
page: 1,
pageSize: 10,
paginationStep: 1,
titleL: models.Options["blogname"],
titleR: models.Options["blogdescription"],
2022-09-17 09:05:43 +00:00
where: models.SqlBuilder{
{"post_type", "in", ""},
{"post_status", "in", ""},
},
orderBy: models.SqlBuilder{},
join: models.SqlBuilder{},
2022-09-20 14:37:31 +00:00
postType: []any{"post"},
status: []any{"publish"},
2022-09-23 13:46:34 +00:00
scene: plugins.Home,
2022-09-17 09:05:43 +00:00
}
}
2022-09-18 14:06:27 +00:00
func (h *indexHandle) setTitleLR(l, r string) {
2022-09-17 09:05:43 +00:00
h.titleL = l
h.titleR = r
}
2022-09-18 14:06:27 +00:00
func (h *indexHandle) getTitle() string {
2022-09-17 09:05:43 +00:00
h.title = fmt.Sprintf("%s-%s", h.titleL, h.titleR)
return h.title
}
2022-09-18 14:06:27 +00:00
func (h *indexHandle) parseParams() {
2022-09-17 09:05:43 +00:00
h.order = h.c.Query("order")
if !helper.IsContainInArr(h.order, []string{"asc", "desc"}) {
h.order = "asc"
}
year := h.c.Param("year")
2022-09-16 06:46:51 +00:00
if year != "" {
2022-09-17 09:05:43 +00:00
h.where = append(h.where, []string{
2022-09-16 06:46:51 +00:00
"year(post_date)", year,
})
}
2022-09-17 09:05:43 +00:00
month := h.c.Param("month")
2022-09-16 06:46:51 +00:00
if month != "" {
2022-09-17 09:05:43 +00:00
h.where = append(h.where, []string{
2022-09-16 06:46:51 +00:00
"month(post_date)", month,
})
2022-09-17 13:45:22 +00:00
ss := fmt.Sprintf("%s年%s月", year, strings.TrimLeft(month, "0"))
2022-09-17 09:05:43 +00:00
h.header = fmt.Sprintf("月度归档: <span>%s</span>", ss)
h.setTitleLR(ss, models.Options["blogname"])
2022-09-23 13:46:34 +00:00
h.scene = plugins.Archive
2022-09-16 06:46:51 +00:00
}
2022-09-17 09:05:43 +00:00
category := h.c.Param("category")
2022-09-16 09:59:17 +00:00
if category == "" {
2022-09-17 09:05:43 +00:00
category = h.c.Param("tag")
2022-09-16 09:59:17 +00:00
if category != "" {
2022-09-17 09:05:43 +00:00
h.categoryType = "post_tag"
h.header = fmt.Sprintf("标签: <span>%s</span>", category)
2022-09-16 09:59:17 +00:00
}
} else {
2022-09-17 09:05:43 +00:00
h.categoryType = "category"
h.header = fmt.Sprintf("分类: <span>%s</span>", category)
2022-09-16 09:59:17 +00:00
}
2022-09-17 09:05:43 +00:00
h.category = category
2022-09-16 06:46:51 +00:00
if category != "" {
2022-09-17 09:05:43 +00:00
h.where = append(h.where, []string{
2022-09-16 06:46:51 +00:00
"d.name", category,
2022-09-17 09:05:43 +00:00
}, []string{"taxonomy", h.categoryType})
h.join = append(h.join, []string{
2022-09-16 09:59:17 +00:00
"a", "left join", "wp_term_relationships b", "a.Id=b.object_id",
}, []string{
"left join", "wp_term_taxonomy c", "b.term_taxonomy_id=c.term_taxonomy_id",
}, []string{
"left join", "wp_terms d", "c.term_id=d.term_id",
})
2022-09-17 09:05:43 +00:00
h.setTitleLR(category, models.Options["blogname"])
2022-09-23 13:46:34 +00:00
h.scene = plugins.Category
2022-09-17 09:05:43 +00:00
}
s := h.c.Query("s")
if s != "" && strings.Replace(s, " ", "", -1) != "" {
q := helper.StrJoin("%", s, "%")
h.where = append(h.where, []string{
"and", "post_title", "like", q, "",
"or", "post_content", "like", q, "",
"or", "post_excerpt", "like", q, "",
}, []string{"post_password", ""})
h.postType = append(h.postType, "page", "attachment")
h.header = fmt.Sprintf("%s的搜索结果", s)
h.setTitleLR(helper.StrJoin(`"`, s, `"`, "的搜索结果"), models.Options["blogname"])
h.search = s
2022-09-23 13:46:34 +00:00
h.scene = plugins.Search
2022-09-17 09:05:43 +00:00
} else {
h.status = append(h.status, "private")
2022-09-16 06:46:51 +00:00
}
2022-09-17 09:05:43 +00:00
p := h.c.Query("paged")
2022-09-15 14:35:32 +00:00
if p == "" {
2022-09-17 09:05:43 +00:00
p = h.c.Param("page")
2022-09-14 05:28:31 +00:00
}
2022-09-15 14:35:32 +00:00
if p != "" {
if pa, err := strconv.Atoi(p); err == nil {
2022-09-17 09:05:43 +00:00
h.page = pa
2022-09-15 14:35:32 +00:00
}
}
2022-09-17 09:05:43 +00:00
if h.page > 1 && (h.category != "" || h.search != "" || month != "") {
h.setTitleLR(fmt.Sprintf("%s-第%d页", h.titleL, h.page), models.Options["blogname"])
2022-09-17 07:37:23 +00:00
}
2022-09-17 09:05:43 +00:00
}
2022-09-15 14:35:32 +00:00
2022-09-18 14:06:27 +00:00
func (h *indexHandle) getTotalPage(totalRaws int) int {
2022-09-17 09:05:43 +00:00
h.totalPage = int(math.Ceil(float64(totalRaws) / float64(h.pageSize)))
return h.totalPage
}
2022-09-18 04:34:48 +00:00
func Index(c *gin.Context) {
2022-09-18 14:06:27 +00:00
h := newIndexHandle(c)
2022-09-17 09:05:43 +00:00
h.parseParams()
2022-09-20 04:00:09 +00:00
ctx := context.TODO()
2022-09-19 12:15:10 +00:00
archive := common.Archives()
2022-09-20 04:00:09 +00:00
recent := common.RecentPosts(ctx)
categoryItems := common.Categories(ctx)
2022-09-21 13:49:14 +00:00
recentComments := common.RecentComments(ctx)
2022-09-19 12:15:10 +00:00
ginH := gin.H{
2022-09-21 13:49:14 +00:00
"options": models.Options,
"recentPosts": recent,
"archives": archive,
"categories": categoryItems,
"search": h.search,
"header": h.header,
"title": h.getTitle(),
"recentComments": recentComments,
2022-09-19 12:15:10 +00:00
}
2022-09-17 09:05:43 +00:00
postIds, totalRaw, err := models.SimplePagination[models.WpPosts](h.where, "ID", "", h.page, h.pageSize, h.orderBy, h.join, h.postType, h.status)
defer func() {
2022-09-19 04:36:51 +00:00
c.HTML(http.StatusOK, "posts/index.gohtml", ginH)
2022-09-17 09:05:43 +00:00
if err != nil {
c.Error(err)
}
}()
if err != nil {
return
}
if len(postIds) < 1 && h.category != "" {
h.titleL = "未找到页面"
}
2022-09-18 14:06:27 +00:00
err = common.QueryAndSetPostCache(postIds)
2022-09-18 04:34:48 +00:00
pw := h.session.Get("post_password")
2022-09-23 13:46:34 +00:00
c.Set("post_password", pw)
plug := plugins.NewPostPlugin(c, h.scene)
2022-09-17 09:05:43 +00:00
for i, v := range postIds {
2022-09-18 14:06:27 +00:00
post, _ := common.PostsCache.Load(v.Id)
2022-09-16 09:59:17 +00:00
pp := post.(*models.WpPosts)
2022-09-17 13:45:22 +00:00
px := *pp
2022-09-24 09:52:06 +00:00
postIds[i] = px
common.PasswordProjectTitle(&postIds[i])
2022-09-18 04:34:48 +00:00
if px.PostPassword != "" && pw != px.PostPassword {
2022-09-24 09:52:06 +00:00
common.PasswdProjectContent(&postIds[i])
} else {
plugins.ApplyPlugin(plug, &postIds[i])
2022-09-18 04:34:48 +00:00
}
2022-09-14 05:28:31 +00:00
}
2022-09-18 04:34:48 +00:00
for i, post := range recent {
2022-09-23 13:46:34 +00:00
2022-09-18 04:34:48 +00:00
if post.PostPassword != "" && pw != post.PostPassword {
2022-09-18 14:06:27 +00:00
common.PasswdProjectContent(&recent[i])
2022-09-18 04:34:48 +00:00
}
}
2022-09-15 14:35:32 +00:00
q := c.Request.URL.Query().Encode()
2022-09-19 12:15:10 +00:00
ginH["posts"] = postIds
ginH["totalPage"] = h.getTotalPage(totalRaw)
ginH["pagination"] = pagination(h.page, h.totalPage, h.paginationStep, c.Request.URL.Path, q)
ginH["title"] = h.getTitle()
2022-09-01 02:31:11 +00:00
}
2022-09-14 13:30:59 +00:00
2022-09-23 13:46:34 +00:00
var complie = regexp.MustCompile(`(/page)/(\d+)`)
2022-09-16 06:46:51 +00:00
func pagination(currentPage, totalPage, step int, path, query string) (html string) {
if totalPage < 2 {
return
}
pathx := path
if !strings.Contains(path, "/page/") {
pathx = fmt.Sprintf("%s%s", path, "/page/1")
}
2022-09-15 14:35:32 +00:00
s := strings.Builder{}
if currentPage > totalPage {
currentPage = totalPage
}
2022-09-23 13:46:34 +00:00
r := complie
2022-09-15 14:35:32 +00:00
start := currentPage - step
end := currentPage + step
if start < 1 {
2022-09-16 14:32:05 +00:00
start = 1
2022-09-15 14:35:32 +00:00
}
if currentPage > 1 {
pp := ""
2022-09-16 06:46:51 +00:00
if currentPage >= 2 {
pp = replacePage(r, pathx, currentPage-1)
2022-09-15 14:35:32 +00:00
}
2022-09-16 06:46:51 +00:00
s.WriteString(fmt.Sprintf(`<a class="prev page-numbers" href="%s%s">上一页</a>`, pp, query))
2022-09-15 14:35:32 +00:00
}
if currentPage >= step+2 {
d := ""
if currentPage > step+2 {
d = `<span class="page-numbers dots">…</span>`
}
2022-09-16 06:46:51 +00:00
e := replacePage(r, path, 1)
2022-09-15 14:35:32 +00:00
s.WriteString(fmt.Sprintf(`
2022-09-16 06:46:51 +00:00
<a class="page-numbers" href="%s%s"><span class="meta-nav screen-reader-text"> </span>1</a>
2022-09-15 14:35:32 +00:00
%s
2022-09-16 06:46:51 +00:00
`, e, query, d))
2022-09-15 14:35:32 +00:00
}
if totalPage < end {
end = totalPage
}
for page := start; page <= end; page++ {
h := ""
if currentPage == page {
h = fmt.Sprintf(`
<span aria-current="page" class="page-numbers current">
<span class="meta-nav screen-reader-text"> </span>%d</span>
`, page)
} else {
2022-09-16 06:46:51 +00:00
d := replacePage(r, pathx, page)
2022-09-15 14:35:32 +00:00
h = fmt.Sprintf(`
<a class="page-numbers" href="%s%s">
<span class="meta-nav screen-reader-text"> </span>%d</a>
`, d, query, page)
}
s.WriteString(h)
}
2022-09-16 06:46:51 +00:00
if totalPage >= currentPage+step+1 {
if totalPage > currentPage+step+1 {
s.WriteString(`<span class="page-numbers dots">…</span>`)
}
dd := replacePage(r, pathx, totalPage)
2022-09-15 14:35:32 +00:00
s.WriteString(fmt.Sprintf(`
2022-09-16 06:46:51 +00:00
<a class="page-numbers" href="%s%s"><span class="meta-nav screen-reader-text"> </span>%d</a>`, dd, query, totalPage))
2022-09-15 14:35:32 +00:00
}
if currentPage < totalPage {
2022-09-16 06:46:51 +00:00
dd := replacePage(r, pathx, currentPage+1)
s.WriteString(fmt.Sprintf(`<a class="next page-numbers" href="%s%s">下一页</a>`, dd, query))
2022-09-15 14:35:32 +00:00
}
html = s.String()
return
}
2022-09-16 06:46:51 +00:00
func replacePage(r *regexp.Regexp, path string, page int) (src string) {
if page == 1 {
src = r.ReplaceAllString(path, "")
} else {
s := fmt.Sprintf("$1/%d", page)
src = r.ReplaceAllString(path, s)
}
src = strings.Replace(src, "//", "/", -1)
if src == "" {
src = "/"
}
return
}