wp-go/internal/pkg/dao/common.go

76 lines
1.9 KiB
Go
Raw Normal View History

package dao
2023-01-12 12:42:16 +00:00
import (
"context"
2023-03-19 14:48:23 +00:00
"github.com/fthvgb1/wp-go/helper"
2023-03-19 12:40:08 +00:00
"github.com/fthvgb1/wp-go/internal/pkg/constraints"
"github.com/fthvgb1/wp-go/internal/pkg/models"
"github.com/fthvgb1/wp-go/internal/wpconfig"
"github.com/fthvgb1/wp-go/model"
2023-01-12 12:42:16 +00:00
)
var TotalRaw int64
type PostIds struct {
Ids []uint64
Length int
}
type PostContext struct {
Prev models.Posts
Next models.Posts
2023-01-12 12:42:16 +00:00
}
2023-01-21 14:56:41 +00:00
func CategoriesAndTags(a ...any) (terms []models.TermsMy, err error) {
2023-01-12 12:42:16 +00:00
ctx := a[0].(context.Context)
2023-03-19 12:40:08 +00:00
t, ok := a[1].(int)
2023-01-21 14:56:41 +00:00
var in = []any{"category", "post_tag"}
2023-03-19 12:40:08 +00:00
if ok {
switch t {
case constraints.Category:
in = []any{"category"}
case constraints.Tag:
in = []any{"post_tag"}
}
}
2023-03-19 14:48:23 +00:00
w := model.SqlBuilder{
{"tt.taxonomy", "in", ""},
}
2023-03-20 05:02:40 +00:00
if helper.GetContextVal(ctx, "onlyTop", false) {
2023-03-19 14:48:23 +00:00
w = append(w, []string{"tt.parent", "=", "0", "int"})
}
2023-03-20 05:02:40 +00:00
if !helper.GetContextVal(ctx, "showCountZero", false) {
2023-03-19 14:48:23 +00:00
w = append(w, []string{"tt.count", ">", "0", "int"})
}
2023-02-06 12:50:25 +00:00
terms, err = model.Finds[models.TermsMy](ctx, model.Conditions(
2023-03-19 14:48:23 +00:00
model.Where(w),
2023-02-06 12:50:25 +00:00
model.Fields("t.term_id"),
model.Order(model.SqlBuilder{{"t.name", "asc"}}),
model.Join(model.SqlBuilder{
{"t", "inner join", "wp_term_taxonomy tt", "t.term_id = tt.term_id"},
}),
model.In(in),
))
2023-01-12 12:42:16 +00:00
for i := 0; i < len(terms); i++ {
if v, ok := wpconfig.Terms.Load(terms[i].Terms.TermId); ok {
terms[i].Terms = v
}
if v, ok := wpconfig.TermTaxonomies.Load(terms[i].Terms.TermId); ok {
terms[i].TermTaxonomy = v
}
}
return
}
func Archives(ctx context.Context) ([]models.PostArchive, error) {
2023-02-06 12:50:25 +00:00
return model.Finds[models.PostArchive](ctx, model.Conditions(
model.Where(model.SqlBuilder{
{"post_type", "post"},
{"post_status", "publish"},
}),
model.Fields("YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts"),
model.Group("year,month"),
model.Order(model.SqlBuilder{{"year", "desc"}, {"month", "desc"}}),
))
2023-01-12 12:42:16 +00:00
}