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-11-04 02:38:59 +00:00
"github/fthvgb1/wp-go/config"
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-11-05 02:32:57 +00:00
"github/fthvgb1/wp-go/models/wp"
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-11-05 02:32:57 +00:00
var categoryCaches * cache . SliceCache [ wp . WpTermsMy ]
var recentPostsCaches * cache . SliceCache [ wp . WpPosts ]
var recentCommentsCaches * cache . SliceCache [ wp . WpComments ]
2022-10-10 14:46:04 +00:00
var postCommentCaches * cache . MapCache [ uint64 , [ ] uint64 ]
2022-11-05 02:32:57 +00:00
var postsCache * cache . MapCache [ uint64 , wp . 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-11-05 02:32:57 +00:00
var usersCache * cache . MapCache [ uint64 , wp . WpUsers ]
var commentsCache * cache . MapCache [ uint64 , wp . WpComments ]
2022-09-19 11:11:36 +00:00
2022-09-26 13:25:41 +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-11-04 02:38:59 +00:00
searchPostIdsCache = cache . NewMapCacheByFn [ string , PostIds ] ( searchPostIds , config . Conf . SearchPostCacheTime )
2022-09-28 08:23:20 +00:00
2022-11-04 02:38:59 +00:00
postListIdsCache = cache . NewMapCacheByFn [ string , PostIds ] ( searchPostIds , config . Conf . PostListCacheTime )
2022-09-28 12:02:43 +00:00
2022-11-04 02:38:59 +00:00
monthPostsCache = cache . NewMapCacheByFn [ string , [ ] uint64 ] ( monthPost , config . Conf . MonthPostCacheTime )
2022-09-27 13:52:15 +00:00
2022-11-04 02:38:59 +00:00
postContextCache = cache . NewMapCacheByFn [ uint64 , PostContext ] ( getPostContext , config . Conf . ContextPostCacheTime )
2022-09-27 07:35:34 +00:00
2022-11-05 02:32:57 +00:00
postsCache = cache . NewMapCacheByBatchFn [ uint64 , wp . WpPosts ] ( getPostsByIds , config . Conf . PostDataCacheTime )
2022-09-26 13:25:41 +00:00
2022-11-05 02:32:57 +00:00
categoryCaches = cache . NewSliceCache [ wp . WpTermsMy ] ( categories , config . Conf . CategoryCacheTime )
2022-09-26 13:25:41 +00:00
2022-11-05 02:32:57 +00:00
recentPostsCaches = cache . NewSliceCache [ wp . WpPosts ] ( recentPosts , config . Conf . RecentPostCacheTime )
2022-09-26 13:25:41 +00:00
2022-11-05 02:32:57 +00:00
recentCommentsCaches = cache . NewSliceCache [ wp . WpComments ] ( recentComments , config . Conf . RecentCommentsCacheTime )
2022-09-28 12:02:43 +00:00
2022-11-04 02:38:59 +00:00
postCommentCaches = cache . NewMapCacheByFn [ uint64 , [ ] uint64 ] ( postComments , config . Conf . PostCommentsCacheTime )
2022-10-04 03:13:14 +00:00
2022-11-04 02:38:59 +00:00
maxPostIdCache = cache . NewSliceCache [ uint64 ] ( getMaxPostId , config . Conf . MaxPostIdCacheTime )
2022-10-06 13:33:04 +00:00
2022-11-05 02:32:57 +00:00
usersCache = cache . NewMapCacheByBatchFn [ uint64 , wp . WpUsers ] ( getUsers , config . Conf . UserInfoCacheTime )
2022-10-08 06:01:05 +00:00
2022-11-05 02:32:57 +00:00
commentsCache = cache . NewMapCacheByBatchFn [ uint64 , wp . WpComments ] ( getCommentByIds , config . Conf . CommentsCacheTime )
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-10-08 11:35:05 +00:00
commentsCache . 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 {
2022-11-05 02:32:57 +00:00
data [ ] wp . PostArchive
2022-09-19 12:15:10 +00:00
mutex * sync . Mutex
2022-11-05 02:32:57 +00:00
setCacheFunc func ( ) ( [ ] wp . PostArchive , error )
2022-09-19 12:15:10 +00:00
month time . Month
}
2022-11-05 02:32:57 +00:00
func ( c * Arch ) getArchiveCache ( ) [ ] wp . 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-11-05 02:32:57 +00:00
prev wp . WpPosts
next wp . WpPosts
2022-09-19 11:11:36 +00:00
}
2022-11-05 02:32:57 +00:00
func archives ( ) ( [ ] wp . PostArchive , error ) {
return models . Find [ wp . PostArchive ] ( models . SqlBuilder {
2022-09-18 04:34:48 +00:00
{ "post_type" , "post" } , { "post_status" , "publish" } ,
2022-11-04 09:42:11 +00:00
} , "YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts" , "year,month" , models . SqlBuilder { { "year" , "desc" } , { "month" , "desc" } } , nil , nil , 0 )
2022-09-18 04:34:48 +00:00
}
2022-11-05 02:32:57 +00:00
func Archives ( ) ( r [ ] wp . PostArchive ) {
2022-09-26 13:25:41 +00:00
return archivesCaches . getArchiveCache ( )
2022-09-19 09:39:00 +00:00
}
2022-11-05 02:32:57 +00:00
func Categories ( ctx context . Context ) [ ] wp . 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-11-05 02:32:57 +00:00
func categories ( ... any ) ( terms [ ] wp . WpTermsMy , err error ) {
2022-09-20 14:37:31 +00:00
var in = [ ] any { "category" }
2022-11-05 02:32:57 +00:00
terms , err = models . Find [ wp . WpTermsMy ] ( models . SqlBuilder {
2022-09-18 04:34:48 +00:00
{ "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" } ,
2022-11-04 09:42:11 +00:00
} , nil , 0 , in )
2022-09-18 04:34:48 +00:00
for i := 0 ; i < len ( terms ) ; i ++ {
2022-11-05 02:32:57 +00:00
if v , ok := wp . Terms [ terms [ i ] . WpTerms . TermId ] ; ok {
2022-09-18 04:34:48 +00:00
terms [ i ] . WpTerms = v
}
2022-11-05 02:32:57 +00:00
if v , ok := wp . TermTaxonomy [ terms [ i ] . WpTerms . TermId ] ; ok {
2022-09-18 04:34:48 +00:00
terms [ i ] . WpTermTaxonomy = v
}
}
return
}
2022-11-05 02:32:57 +00:00
func PasswordProjectTitle ( post * wp . WpPosts ) {
2022-09-18 14:06:27 +00:00
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
}
2022-11-05 02:32:57 +00:00
func PasswdProjectContent ( post * wp . 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 )
}
}