wp-go/app/pkg/cache/posts.go

83 lines
2.3 KiB
Go
Raw Permalink Normal View History

2023-01-12 12:42:16 +00:00
package cache
import (
"context"
"fmt"
2023-05-04 12:36:17 +00:00
"github.com/fthvgb1/wp-go/app/pkg/logs"
"github.com/fthvgb1/wp-go/app/pkg/models"
"github.com/fthvgb1/wp-go/app/wpconfig"
2023-03-06 15:43:58 +00:00
"github.com/fthvgb1/wp-go/helper/number"
2023-01-21 11:31:23 +00:00
"github.com/fthvgb1/wp-go/helper/slice"
2023-03-06 15:43:58 +00:00
str "github.com/fthvgb1/wp-go/helper/strings"
2023-01-12 12:42:16 +00:00
"github.com/gin-gonic/gin"
"time"
)
func GetPostById(ctx context.Context, id uint64) (models.Posts, error) {
return postsCache.GetCache(ctx, id, time.Second, ctx, id)
}
func GetPostsByIds(ctx context.Context, ids []uint64) ([]models.Posts, error) {
return postsCache.GetCacheBatch(ctx, ids, time.Second, ctx, ids)
}
func SearchPost(ctx context.Context, key string, args ...any) (r []models.Posts, total int, err error) {
ids, err := searchPostIdsCache.GetCache(ctx, key, time.Second, args...)
if err != nil {
return
}
total = ids.Length
r, err = GetPostsByIds(ctx, ids.Ids)
return
}
func PostLists(ctx context.Context, key string, args ...any) (r []models.Posts, total int, err error) {
ids, err := postListIdsCache.GetCache(ctx, key, time.Second, args...)
if err != nil {
return
}
total = ids.Length
r, err = GetPostsByIds(ctx, ids.Ids)
return
}
func GetMaxPostId(ctx *gin.Context) (uint64, error) {
2023-01-20 10:10:13 +00:00
return maxPostIdCache.GetCache(ctx, time.Second, ctx)
2023-01-12 12:42:16 +00:00
}
2023-02-09 07:43:20 +00:00
func RecentPosts(ctx context.Context, n int) (r []models.Posts) {
2023-02-06 12:50:25 +00:00
nn := n
2023-03-06 15:43:58 +00:00
feedNum := str.ToInteger(wpconfig.GetOption("posts_per_rss"), 10)
nn = number.Max(n, feedNum)
2023-02-06 12:50:25 +00:00
r, err := recentPostsCaches.GetCache(ctx, time.Second, ctx, nn)
2023-01-12 12:42:16 +00:00
if n < len(r) {
r = r[:n]
}
2023-04-07 14:59:07 +00:00
logs.IfError(err, "get recent post")
2023-01-12 12:42:16 +00:00
return
}
func GetContextPost(ctx context.Context, id uint64, date time.Time) (prev, next models.Posts, err error) {
postCtx, err := postContextCache.GetCache(ctx, id, time.Second, ctx, date)
if err != nil {
return models.Posts{}, models.Posts{}, err
}
prev = postCtx.Prev
next = postCtx.Next
return
}
func GetMonthPostIds(ctx context.Context, year, month string, page, limit int, order string) (r []models.Posts, total int, err error) {
res, err := monthPostsCache.GetCache(ctx, fmt.Sprintf("%s%s", year, month), time.Second, ctx, year, month)
if err != nil {
return
}
if order == "desc" {
2023-01-21 11:31:23 +00:00
res = slice.Reverse(res)
2023-01-12 12:42:16 +00:00
}
total = len(res)
2023-01-21 11:31:23 +00:00
rr := slice.Pagination(res, page, limit)
2023-01-12 12:42:16 +00:00
r, err = GetPostsByIds(ctx, rr)
return
}