wp-go/app/pkg/dao/comments.go

115 lines
2.8 KiB
Go
Raw Normal View History

package dao
2023-01-12 12:42:16 +00:00
import (
"context"
2023-11-28 14:46:22 +00:00
"database/sql"
"errors"
2023-05-04 12:36:17 +00:00
"github.com/fthvgb1/wp-go/app/pkg/models"
2023-11-16 14:52:14 +00:00
"github.com/fthvgb1/wp-go/helper"
2023-02-06 10:34:35 +00:00
"github.com/fthvgb1/wp-go/helper/number"
2023-01-21 11:31:23 +00:00
"github.com/fthvgb1/wp-go/helper/slice"
"github.com/fthvgb1/wp-go/model"
2023-11-28 14:46:22 +00:00
"time"
2023-01-12 12:42:16 +00:00
)
// RecentComments
// param context.Context
2023-11-02 14:40:13 +00:00
func RecentComments(ctx context.Context, a ...any) (r []models.Comments, err error) {
2023-11-16 14:52:14 +00:00
n := helper.ParseArgs(10, a...)
2023-02-06 10:34:35 +00:00
return model.Finds[models.Comments](ctx, model.Conditions(
model.Where(model.SqlBuilder{
{"comment_approved", "1"},
{"post_status", "publish"},
}),
model.Fields("comment_ID,comment_author,comment_post_ID,post_title"),
model.Order(model.SqlBuilder{{"comment_date_gmt", "desc"}}),
model.Join(model.SqlBuilder{{"a", "left join", "wp_posts b", "a.comment_post_ID=b.ID"}}),
2023-02-09 07:43:20 +00:00
model.Limit(n),
2023-02-06 10:34:35 +00:00
))
2023-01-12 12:42:16 +00:00
}
// PostComments
// param1 context.Context
// param2 postId
func PostComments(ctx context.Context, postId uint64, _ ...any) ([]uint64, error) {
2023-11-16 14:52:14 +00:00
r, err := model.ChunkFind[models.Comments](ctx, 300, model.Conditions(
2023-02-06 10:34:35 +00:00
model.Where(model.SqlBuilder{
{"comment_approved", "1"},
2023-05-21 11:53:37 +00:00
{"comment_post_ID", "=", number.IntToString(postId), "int"},
2023-02-06 10:34:35 +00:00
}),
model.Fields("comment_ID"),
model.Order(model.SqlBuilder{
{"comment_date_gmt", "asc"},
{"comment_ID", "asc"},
})),
)
2023-01-12 12:42:16 +00:00
if err != nil {
return nil, err
}
2023-01-21 11:31:23 +00:00
return slice.Map(r, func(t models.Comments) uint64 {
2023-01-12 12:42:16 +00:00
return t.CommentId
}), err
}
func GetCommentByIds(ctx context.Context, ids []uint64, _ ...any) (map[uint64]models.Comments, error) {
2023-11-28 16:00:25 +00:00
if len(ids) < 1 {
return nil, nil
}
2023-01-12 12:42:16 +00:00
m := make(map[uint64]models.Comments)
2023-11-28 16:00:25 +00:00
off := 0
for {
id := slice.Slice(ids, off, 500)
if len(id) < 1 {
break
}
r, err := model.Finds[models.Comments](ctx, model.Conditions(
model.Where(model.SqlBuilder{
{"comment_ID", "in", ""}, {"comment_approved", "1"},
}),
model.Fields("*"),
model.In(slice.ToAnySlice(id)),
))
if err != nil {
return m, err
}
for _, comments := range r {
m[comments.CommentId] = comments
}
off += 500
2023-01-12 12:42:16 +00:00
}
2023-11-28 16:00:25 +00:00
return m, nil
2023-01-12 12:42:16 +00:00
}
2023-11-28 14:46:22 +00:00
func GetIncreaseComment(ctx context.Context, currentData []uint64, k uint64, t time.Time, _ ...any) (data []uint64, save bool, refresh bool, err error) {
2023-11-29 10:24:41 +00:00
r, err := model.ChunkFind[models.Comments](ctx, 1000, model.Conditions(
2023-11-28 14:46:22 +00:00
model.Where(model.SqlBuilder{
{"comment_approved", "1"},
{"comment_post_ID", "=", number.IntToString(k), "int"},
{"comment_date", ">=", t.Format(time.DateTime)},
}),
model.Fields("comment_ID"),
model.Order(model.SqlBuilder{
{"comment_date_gmt", "asc"},
{"comment_ID", "asc"},
})),
)
if err != nil {
if errors.Is(err, sql.ErrNoRows) {
err = nil
refresh = true
}
return
}
if len(r) < 1 {
refresh = true
return
}
rr := slice.Map(r, func(t models.Comments) uint64 {
return t.CommentId
})
data = append(currentData, rr...)
save = true
return
}