wp-go/actions/common/common.go

157 lines
4.9 KiB
Go
Raw Normal View History

2022-09-18 04:34:48 +00:00
package common
import (
2022-09-20 04:00:09 +00:00
"context"
2022-09-18 04:34:48 +00:00
"fmt"
2022-09-19 09:39:00 +00:00
"github/fthvgb1/wp-go/cache"
2022-09-27 07:35:34 +00:00
"github/fthvgb1/wp-go/logs"
2022-09-18 04:34:48 +00:00
"github/fthvgb1/wp-go/models"
2022-09-19 11:11:36 +00:00
"github/fthvgb1/wp-go/vars"
2022-09-18 14:06:27 +00:00
"sync"
2022-09-19 09:39:00 +00:00
"time"
2022-09-18 04:34:48 +00:00
)
2022-09-27 07:35:34 +00:00
var postContextCache *cache.MapCache[uint64, PostContext]
2022-09-19 12:34:20 +00:00
var archivesCaches *Arch
2022-09-19 11:11:36 +00:00
var categoryCaches *cache.SliceCache[models.WpTermsMy]
var recentPostsCaches *cache.SliceCache[models.WpPosts]
2022-09-20 13:16:51 +00:00
var recentCommentsCaches *cache.SliceCache[models.WpComments]
2022-09-21 13:49:14 +00:00
var postCommentCaches *cache.MapCache[uint64, []models.WpComments]
var postsCache *cache.MapCache[uint64, models.WpPosts]
2022-09-27 13:52:15 +00:00
var monthPostsCache *cache.MapCache[string, []uint64]
2022-09-28 12:02:43 +00:00
var postListIdsCache *cache.MapCache[string, PostIds]
2022-09-28 08:23:20 +00:00
var searchPostIdsCache *cache.MapCache[string, PostIds]
2022-10-04 03:13:14 +00:00
var maxPostIdCache *cache.SliceCache[uint64]
var TotalRaw int
2022-10-06 13:33:04 +00:00
var usersCache *cache.MapCache[uint64, models.WpUsers]
2022-10-08 06:01:05 +00:00
var commentsCache *cache.MapCache[uint64, models.WpComments]
2022-09-19 11:11:36 +00:00
func InitActionsCommonCache() {
2022-09-19 12:34:20 +00:00
archivesCaches = &Arch{
2022-09-19 12:15:10 +00:00
mutex: &sync.Mutex{},
setCacheFunc: archives,
}
2022-09-27 07:35:34 +00:00
2022-09-28 13:16:05 +00:00
searchPostIdsCache = cache.NewMapCacheByFn[string, PostIds](searchPostIds, vars.Conf.SearchPostCacheTime)
2022-09-28 08:23:20 +00:00
2022-09-28 13:16:05 +00:00
postListIdsCache = cache.NewMapCacheByFn[string, PostIds](searchPostIds, vars.Conf.PostListCacheTime)
2022-09-28 12:02:43 +00:00
2022-09-28 13:16:05 +00:00
monthPostsCache = cache.NewMapCacheByFn[string, []uint64](monthPost, vars.Conf.MonthPostCacheTime)
2022-09-27 13:52:15 +00:00
2022-09-28 13:16:05 +00:00
postContextCache = cache.NewMapCacheByFn[uint64, PostContext](getPostContext, vars.Conf.ContextPostCacheTime)
2022-09-27 07:35:34 +00:00
2022-09-28 13:16:05 +00:00
postsCache = cache.NewMapCacheByBatchFn[uint64, models.WpPosts](getPostsByIds, vars.Conf.PostDataCacheTime)
2022-09-19 11:11:36 +00:00
categoryCaches = cache.NewSliceCache[models.WpTermsMy](categories, vars.Conf.CategoryCacheTime)
2022-09-19 11:11:36 +00:00
recentPostsCaches = cache.NewSliceCache[models.WpPosts](recentPosts, vars.Conf.RecentPostCacheTime)
2022-09-20 13:16:51 +00:00
recentCommentsCaches = cache.NewSliceCache[models.WpComments](recentComments, vars.Conf.RecentCommentsCacheTime)
2022-09-28 12:02:43 +00:00
2022-09-28 13:16:05 +00:00
postCommentCaches = cache.NewMapCacheByFn[uint64, []models.WpComments](postComments, vars.Conf.CommentsCacheTime)
2022-10-04 03:13:14 +00:00
maxPostIdCache = cache.NewSliceCache[uint64](getMaxPostId, vars.Conf.MaxPostIdCacheTime)
2022-10-06 13:33:04 +00:00
2022-10-06 13:35:36 +00:00
usersCache = cache.NewMapCacheByBatchFn[uint64, models.WpUsers](getUsers, vars.Conf.UserInfoCacheTime)
2022-10-08 06:01:05 +00:00
commentsCache = cache.NewMapCacheByBatchFn[uint64, models.WpComments](getCommentByIds, time.Hour)
2022-09-28 13:16:05 +00:00
}
func ClearCache() {
searchPostIdsCache.ClearExpired()
postsCache.ClearExpired()
postsCache.ClearExpired()
postListIdsCache.ClearExpired()
monthPostsCache.ClearExpired()
postContextCache.ClearExpired()
2022-10-06 13:36:13 +00:00
usersCache.ClearExpired()
2022-09-19 11:11:36 +00:00
}
2022-09-27 13:52:15 +00:00
type PostIds struct {
Ids []uint64
Length int
}
2022-09-19 12:34:20 +00:00
type Arch struct {
data []models.PostArchive
2022-09-19 12:15:10 +00:00
mutex *sync.Mutex
2022-09-19 12:34:20 +00:00
setCacheFunc func() ([]models.PostArchive, error)
2022-09-19 12:15:10 +00:00
month time.Month
}
func (c *Arch) getArchiveCache() []models.PostArchive {
2022-09-19 12:15:10 +00:00
l := len(c.data)
m := time.Now().Month()
if l > 0 && c.month != m || l < 1 {
r, err := c.setCacheFunc()
if err != nil {
2022-09-27 07:35:34 +00:00
logs.ErrPrintln(err, "set cache err[%s]")
2022-09-19 12:15:10 +00:00
return nil
}
c.mutex.Lock()
defer c.mutex.Unlock()
c.month = m
c.data = r
}
return c.data
}
2022-09-19 11:11:36 +00:00
type PostContext struct {
2022-09-27 07:35:34 +00:00
prev models.WpPosts
next models.WpPosts
2022-09-19 11:11:36 +00:00
}
2022-09-19 09:39:00 +00:00
func archives() ([]models.PostArchive, error) {
return models.Find[models.PostArchive](models.SqlBuilder{
2022-09-18 04:34:48 +00:00
{"post_type", "post"}, {"post_status", "publish"},
}, "YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts", "year,month", models.SqlBuilder{{"year", "desc"}, {"month", "desc"}}, nil, 0)
}
2022-09-19 09:39:00 +00:00
func Archives() (r []models.PostArchive) {
return archivesCaches.getArchiveCache()
2022-09-19 09:39:00 +00:00
}
2022-09-20 04:00:09 +00:00
func Categories(ctx context.Context) []models.WpTermsMy {
2022-09-27 07:35:34 +00:00
r, err := categoryCaches.GetCache(ctx, time.Second)
logs.ErrPrintln(err, "get category ")
2022-09-20 08:11:20 +00:00
return r
2022-09-19 09:39:00 +00:00
}
2022-09-20 04:00:09 +00:00
func categories(...any) (terms []models.WpTermsMy, err error) {
2022-09-20 14:37:31 +00:00
var in = []any{"category"}
2022-09-18 04:34:48 +00:00
terms, err = models.Find[models.WpTermsMy](models.SqlBuilder{
{"tt.count", ">", "0", "int"},
{"tt.taxonomy", "in", ""},
}, "t.term_id", "", models.SqlBuilder{
{"t.name", "asc"},
}, models.SqlBuilder{
{"t", "inner join", "wp_term_taxonomy tt", "t.term_id = tt.term_id"},
}, 0, in)
for i := 0; i < len(terms); i++ {
if v, ok := models.Terms[terms[i].WpTerms.TermId]; ok {
terms[i].WpTerms = v
}
if v, ok := models.TermTaxonomy[terms[i].WpTerms.TermId]; ok {
terms[i].WpTermTaxonomy = v
}
}
return
}
2022-09-18 14:06:27 +00:00
func PasswordProjectTitle(post *models.WpPosts) {
if post.PostPassword != "" {
2022-09-18 04:34:48 +00:00
post.PostTitle = fmt.Sprintf("密码保护:%s", post.PostTitle)
}
2022-09-18 14:06:27 +00:00
}
func PasswdProjectContent(post *models.WpPosts) {
2022-09-18 04:34:48 +00:00
if post.PostContent != "" {
format := `
<form action="/login" class="post-password-form" method="post">
<p>此内容受密码保护如需查阅请在下列字段中输入您的密码</p>
<p><label for="pwbox-%d">密码 <input name="post_password" id="pwbox-%d" type="password" size="20"></label> <input type="submit" name="Submit" value="提交"></p>
</form>`
post.PostContent = fmt.Sprintf(format, post.Id, post.Id)
}
}