new: Added new tab pages and related modules

This commit is contained in:
2024-12-16 17:19:06 +08:00
parent 65e5e9eafc
commit 54f2b2e648
14 changed files with 1615 additions and 10 deletions

View File

@@ -20,9 +20,14 @@ type MApp struct {
lute *lute.Lute
engine *gin.Engine
Posts []*model.MPost
TaggedPosts []*model.MPost
CategorizedPosts []*model.MPost
Posts []*model.MPost
Tags map[string]string
TagsCount map[string]int
Categories map[string]string
CategoriesCount map[string]int
TaggedPosts map[string][]*model.MPost
CategorizedPosts map[string][]*model.MPost
SrcFiles []model.MFileInfo
}
@@ -56,7 +61,34 @@ func NewMApp(cfg *config.MConfig) *MApp {
Port: cfg.Port,
Config: cfg,
Tags: make(map[string]string),
TagsCount: make(map[string]int),
Categories: make(map[string]string),
CategoriesCount: make(map[string]int),
TaggedPosts: make(map[string][]*model.MPost),
CategorizedPosts: make(map[string][]*model.MPost),
lute: lute.New(),
engine: engine,
}
}
// resetStorage before each update, delete the cache
func (ma *MApp) resetStorage() {
ma.Posts = nil
ma.Tags = nil
ma.Categories = nil
ma.CategoriesCount = nil
ma.TaggedPosts = nil
ma.CategorizedPosts = nil
ma.SrcFiles = nil
ma.Tags = make(map[string]string)
ma.TagsCount = make(map[string]int)
ma.Categories = make(map[string]string)
ma.CategoriesCount = make(map[string]int)
ma.TaggedPosts = make(map[string][]*model.MPost)
ma.CategorizedPosts = make(map[string][]*model.MPost)
}

View File

@@ -1,6 +1,7 @@
package mApp
import (
"encoding/json"
"html/template"
"io"
"net/http"
@@ -24,6 +25,7 @@ func (ma *MApp) IndexHandler(ctx *gin.Context) {
recentPosts = append(recentPosts, tmpPost)
}
// return some basic information
resData := gin.H{
"site_info": gin.H{
"logo": ma.Config.MSite.Info.Logo,
@@ -48,6 +50,8 @@ func (ma *MApp) PostHandler(ctx *gin.Context) {
var success bool
var html string
var realPost model.MPost
// traverse to find the corresponding post, read its HTML file, and inject it into the template
for _, post := range ma.Posts {
if post.HtmlHash == postHash {
file, err := os.OpenFile(post.HtmlPath, os.O_RDONLY, 0644)
@@ -101,6 +105,85 @@ func (ma *MApp) PostHandler(ctx *gin.Context) {
ctx.HTML(http.StatusOK, "post.html", resData)
}
func (ma *MApp) TagHandler(ctx *gin.Context) {
tagHash := ctx.Param("hash")
tagName := ma.Tags[tagHash]
// paging logic processing
page, _ := strconv.Atoi(ctx.DefaultQuery("page", "1"))
size := ma.Config.MSite.Post.Tag.Number
var prePage, curPage, nxtPage, allPage int
allPage = (len(ma.TaggedPosts[tagHash]) + size - 1) / size
if allPage > 0 {
if page <= 0 {
curPage = 1
} else if page > allPage {
curPage = allPage
} else {
curPage = page
}
} else {
curPage = 0
}
prePage = curPage - 1
nxtPage = curPage + 1
if prePage <= 0 {
prePage = curPage
}
if nxtPage > allPage {
nxtPage = allPage
}
// generate tagged posts
start := (curPage - 1) * size
offset := curPage * size
var taggedPosts []model.MPost
var tagList [][]interface{}
if start >= 0 {
for i := start; i < utils.Min(len(ma.TaggedPosts[tagHash]), offset); i++ {
tmpPost := *ma.TaggedPosts[tagHash][i]
tmpPost.Date = strings.Split(tmpPost.Date, " ")[0]
taggedPosts = append(taggedPosts, tmpPost)
}
for tag, num := range ma.TagsCount {
tagList = append(tagList, []interface{}{tag, num})
}
}
tagListJson, _ := json.Marshal(tagList)
resData := gin.H{
"site_info": gin.H{
"logo": ma.Config.MSite.Info.Logo,
"title": ma.Config.MSite.Info.Title,
"author": ma.Config.MSite.Info.Author,
"language": ma.Config.MSite.Info.Language,
"copyright": template.HTML(ma.Config.MSite.Info.Copyright),
},
"menu": ma.Config.MSite.Menu,
"page_info": gin.H{
"pre_page": prePage,
"cur_page": curPage,
"nxt_page": nxtPage,
"all_page": allPage,
},
"tagged_post": gin.H{
"posts": taggedPosts,
"tag_name": tagName,
"tag_hash": tagHash,
"tag_list": string(tagListJson),
},
}
ctx.HTML(http.StatusOK, "tag.html", resData)
}
func (ma *MApp) ArchiveHandler(ctx *gin.Context) {
page, _ := strconv.Atoi(ctx.DefaultQuery("page", "1"))
size := ma.Config.MSite.Post.Archive.Number
@@ -170,7 +253,8 @@ func (ma *MApp) ArchiveHandler(ctx *gin.Context) {
func (ma *MApp) UpdateBlogHandler(ctx *gin.Context) {
var err error
ma.resetStorage()
err = ma.loadMarkdownFiles()
if err != nil {
_ = ctx.Error(err)

View File

@@ -101,7 +101,11 @@ func (ma *MApp) parseMarkdowns() error {
Hash: tagHash,
})
ma.TaggedPosts = append(ma.TaggedPosts, &post)
ma.Tags[tagHash] = tag
ma.TagsCount[tag] += 1
ma.TaggedPosts[tagHash] = append(ma.TaggedPosts[tagHash], &post)
model.SortPostsByDate(ma.TaggedPosts[tagHash])
}
for _, category := range post.Categories {
@@ -111,7 +115,11 @@ func (ma *MApp) parseMarkdowns() error {
Hash: categoryHash,
})
ma.CategorizedPosts = append(ma.CategorizedPosts, &post)
ma.Categories[categoryHash] = category
ma.CategoriesCount[category] += 1
ma.CategorizedPosts[categoryHash] = append(ma.CategorizedPosts[categoryHash], &post)
model.SortPostsByDate(ma.CategorizedPosts[categoryHash])
}
// free the raw tag and category slice

View File

@@ -4,6 +4,7 @@ func (ma *MApp) loadRoutes() {
ma.engine.GET("/", ma.IndexHandler)
ma.engine.GET("/archive", ma.ArchiveHandler)
ma.engine.GET("/post/:hash", ma.PostHandler)
ma.engine.GET("/tag/:hash", ma.TagHandler)
ma.engine.PUT("/update", ma.UpdateBlogHandler)
}