wp-go/actions/common/comments.go

75 lines
2.2 KiB
Go
Raw Normal View History

2022-10-08 06:01:05 +00:00
package common
import (
"context"
"github/fthvgb1/wp-go/helper"
"github/fthvgb1/wp-go/logs"
"github/fthvgb1/wp-go/models"
"strconv"
"time"
)
func RecentComments(ctx context.Context, n int) (r []models.WpComments) {
r, err := recentCommentsCaches.GetCache(ctx, time.Second)
if len(r) > n {
r = r[0:n]
}
logs.ErrPrintln(err, "get recent comment")
return
}
func recentComments(...any) (r []models.WpComments, err error) {
return models.Find[models.WpComments](models.SqlBuilder{
{"comment_approved", "1"},
{"post_status", "publish"},
}, "comment_ID,comment_author,comment_post_ID,post_title", "", models.SqlBuilder{{"comment_date_gmt", "desc"}}, models.SqlBuilder{
{"a", "left join", "wp_posts b", "a.comment_post_ID=b.ID"},
}, 10)
}
func PostComments(ctx context.Context, Id uint64) ([]models.WpComments, error) {
2022-10-10 14:46:04 +00:00
ids, err := postCommentCaches.GetCache(ctx, Id, time.Second, Id)
if err != nil {
return nil, err
}
return GetCommentByIds(ctx, ids)
2022-10-08 06:01:05 +00:00
}
2022-10-10 14:46:04 +00:00
func postComments(args ...any) ([]uint64, error) {
2022-10-08 06:01:05 +00:00
postId := args[0].(uint64)
2022-10-10 14:46:04 +00:00
r, err := models.Find[models.WpComments](models.SqlBuilder{
2022-10-08 06:01:05 +00:00
{"comment_approved", "1"},
{"comment_post_ID", "=", strconv.FormatUint(postId, 10), "int"},
2022-10-10 14:46:04 +00:00
}, "comment_ID", "", models.SqlBuilder{
2022-10-08 06:01:05 +00:00
{"comment_date_gmt", "asc"},
{"comment_ID", "asc"},
}, nil, 0)
2022-10-10 14:46:04 +00:00
if err != nil {
return nil, err
}
return helper.SliceMap(r, func(t models.WpComments) uint64 {
return t.CommentId
}), err
2022-10-08 06:01:05 +00:00
}
func GetCommentById(ctx context.Context, id uint64) (models.WpComments, error) {
return commentsCache.GetCache(ctx, id, time.Second, id)
}
func GetCommentByIds(ctx context.Context, ids []uint64) ([]models.WpComments, error) {
return commentsCache.GetCacheBatch(ctx, ids, time.Second, ids)
}
func getCommentByIds(args ...any) (map[uint64]models.WpComments, error) {
ids := args[0].([]uint64)
m := make(map[uint64]models.WpComments)
r, err := models.Find[models.WpComments](models.SqlBuilder{
{"comment_ID", "in", ""}, {"comment_approved", "1"},
}, "*", "", nil, nil, 0, helper.SliceMap(ids, helper.ToAny[uint64]))
if err != nil {
return m, err
}
2022-10-10 13:33:41 +00:00
return helper.SimpleSliceToMap(r, func(t models.WpComments) uint64 {
2022-10-08 06:01:05 +00:00
return t.CommentId
2022-10-10 13:33:41 +00:00
}), err
2022-10-08 06:01:05 +00:00
}