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

196 lines
5.9 KiB
Go
Raw Normal View History

2023-01-19 13:02:39 +00:00
package cache
import (
"context"
2023-01-19 13:02:39 +00:00
"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/plugins"
"github.com/fthvgb1/wp-go/app/plugins/wpposts"
"github.com/fthvgb1/wp-go/app/wpconfig"
2023-01-19 13:02:39 +00:00
"github.com/fthvgb1/wp-go/cache"
2023-11-25 09:49:20 +00:00
"github.com/fthvgb1/wp-go/cache/cachemanager"
2023-01-21 11:31:23 +00:00
"github.com/fthvgb1/wp-go/helper/slice"
str "github.com/fthvgb1/wp-go/helper/strings"
2023-01-19 13:02:39 +00:00
"github.com/fthvgb1/wp-go/plugin/digest"
"github.com/fthvgb1/wp-go/rss2"
"strings"
"time"
)
var timeFormat = "Mon, 02 Jan 2006 15:04:05 +0000"
var templateRss rss2.Rss2
func InitFeed() {
templateRss = rss2.Rss2{
Title: wpconfig.GetOption("blogname"),
AtomLink: fmt.Sprintf("%s/feed", wpconfig.GetOption("home")),
Link: wpconfig.GetOption("siteurl"),
Description: wpconfig.GetOption("blogdescription"),
Language: wpconfig.GetLang(),
2023-01-19 13:02:39 +00:00
UpdatePeriod: "hourly",
UpdateFrequency: 1,
Generator: wpconfig.GetOption("home"),
2023-01-19 13:02:39 +00:00
}
}
2023-01-20 10:10:13 +00:00
func CommentsFeedCache() *cache.VarCache[[]string] {
2023-11-25 09:49:20 +00:00
r, _ := cachemanager.GetVarCache[[]string]("commentsFeed")
return r
2023-01-19 13:02:39 +00:00
}
2023-01-20 10:10:13 +00:00
func FeedCache() *cache.VarCache[[]string] {
2023-11-25 09:49:20 +00:00
r, _ := cachemanager.GetVarCache[[]string]("feed")
return r
2023-01-19 13:02:39 +00:00
}
func PostFeedCache() *cache.MapCache[string, string] {
2023-11-25 09:49:20 +00:00
r, _ := cachemanager.GetMapCache[string, string]("postFeed")
return r
2023-01-19 13:02:39 +00:00
}
2023-11-02 14:40:13 +00:00
func feed(c context.Context, _ ...any) (xml []string, err error) {
2023-02-09 07:43:20 +00:00
r := RecentPosts(c, 10)
2023-01-21 11:31:23 +00:00
ids := slice.Map(r, func(t models.Posts) uint64 {
2023-01-19 13:02:39 +00:00
return t.Id
})
posts, err := GetPostsByIds(c, ids)
if err != nil {
return
}
site := wpconfig.GetOption("siteurl")
2023-01-19 13:02:39 +00:00
rs := templateRss
rs.LastBuildDate = time.Now().Format(timeFormat)
2023-01-21 11:31:23 +00:00
rs.Items = slice.Map(posts, func(t models.Posts) rss2.Item {
2023-01-19 13:02:39 +00:00
desc := "无法提供摘要。这是一篇受保护的文章。"
if t.PostPassword != "" {
2023-03-02 15:49:28 +00:00
wpposts.PasswordProjectTitle(&t)
wpposts.PasswdProjectContent(&t)
2023-01-19 13:02:39 +00:00
} else {
2023-04-18 13:05:37 +00:00
desc = plugins.Digests(t.PostContent, t.Id, 55, nil)
2023-01-19 13:02:39 +00:00
}
l := ""
if t.CommentStatus == "open" && t.CommentCount > 0 {
2023-02-06 14:56:36 +00:00
l = fmt.Sprintf("%s/p/%d#comments", site, t.Id)
2023-01-19 13:02:39 +00:00
} else if t.CommentStatus == "open" && t.CommentCount == 0 {
2023-02-06 14:56:36 +00:00
l = fmt.Sprintf("%s/p/%d#respond", site, t.Id)
2023-01-19 13:02:39 +00:00
}
user := GetUserById(c, t.PostAuthor)
return rss2.Item{
Title: t.PostTitle,
Creator: user.DisplayName,
Guid: t.Guid,
SlashComments: int(t.CommentCount),
Content: t.PostContent,
Category: strings.Join(t.Categories, "、"),
CommentLink: l,
2023-02-06 14:56:36 +00:00
CommentRss: fmt.Sprintf("%s/p/%d/feed", site, t.Id),
Link: fmt.Sprintf("%s/p/%d", site, t.Id),
2023-01-19 13:02:39 +00:00
Description: desc,
PubDate: t.PostDateGmt.Format(timeFormat),
}
})
xml = []string{rs.GetXML()}
return
}
2023-11-25 09:49:20 +00:00
func postFeed(c context.Context, id string, _ ...any) (x string, err error) {
ID := str.ToInteger[uint64](id, 0)
2023-01-19 13:02:39 +00:00
maxId, err := GetMaxPostId(c)
2023-04-07 14:59:07 +00:00
logs.IfError(err, "get max post id")
if ID < 1 || ID > maxId || err != nil {
2023-01-19 13:02:39 +00:00
return
}
post, err := GetPostById(c, ID)
if post.Id == 0 || err != nil {
return
}
limit := str.ToInteger(wpconfig.GetOption("comments_per_page"), 10)
ids, _, err := cachemanager.Pagination[uint64]("PostCommentsIds", c, time.Second, ID, 1, limit, "desc")
if err != nil {
return
}
comments, err := cachemanager.GetBatchBy[models.Comments]("postCommentData", c, ids, time.Second)
2023-01-19 13:02:39 +00:00
if err != nil {
return
}
rs := templateRss
site := wpconfig.GetOption("siteurl")
2023-01-19 13:02:39 +00:00
rs.Title = fmt.Sprintf("《%s》的评论", post.PostTitle)
2023-02-06 14:56:36 +00:00
rs.AtomLink = fmt.Sprintf("%s/p/%d/feed", site, post.Id)
rs.Link = fmt.Sprintf("%s/p/%d", site, post.Id)
2023-01-19 13:02:39 +00:00
rs.LastBuildDate = time.Now().Format(timeFormat)
if post.PostPassword != "" {
2023-03-02 15:49:28 +00:00
wpposts.PasswordProjectTitle(&post)
wpposts.PasswdProjectContent(&post)
2023-01-19 13:02:39 +00:00
if len(comments) > 0 {
t := comments[len(comments)-1]
rs.Items = []rss2.Item{
{
Title: fmt.Sprintf("评价者:%s", t.CommentAuthor),
2023-02-06 14:56:36 +00:00
Link: fmt.Sprintf("%s/p/%d#comment-%d", site, post.Id, t.CommentId),
2023-01-19 13:02:39 +00:00
Creator: t.CommentAuthor,
PubDate: t.CommentDateGmt.Format(timeFormat),
Guid: fmt.Sprintf("%s#comment-%d", post.Guid, t.CommentId),
Description: "评论受保护:要查看请输入密码。",
Content: post.PostContent,
},
}
}
} else {
rs.Items = slice.Map(comments, func(t models.Comments) rss2.Item {
2023-01-19 13:02:39 +00:00
return rss2.Item{
Title: fmt.Sprintf("评价者:%s", t.CommentAuthor),
2023-02-06 14:56:36 +00:00
Link: fmt.Sprintf("%s/p/%d#comment-%d", site, post.Id, t.CommentId),
2023-01-19 13:02:39 +00:00
Creator: t.CommentAuthor,
PubDate: t.CommentDateGmt.Format(timeFormat),
Guid: fmt.Sprintf("%s#comment-%d", post.Guid, t.CommentId),
Content: t.CommentContent,
}
})
}
x = rs.GetXML()
return
}
2023-11-02 14:40:13 +00:00
func commentsFeed(c context.Context, _ ...any) (r []string, err error) {
2023-01-19 13:02:39 +00:00
commens := RecentComments(c, 10)
rs := templateRss
rs.Title = fmt.Sprintf("\"%s\"的评论", wpconfig.GetOption("blogname"))
2023-01-19 13:02:39 +00:00
rs.LastBuildDate = time.Now().Format(timeFormat)
site := wpconfig.GetOption("siteurl")
2023-02-06 14:56:36 +00:00
rs.AtomLink = fmt.Sprintf("%s/comments/feed", site)
com, err := GetCommentDataByIds(c, slice.Map(commens, func(t models.Comments) uint64 {
2023-01-19 13:02:39 +00:00
return t.CommentId
}))
if nil != err {
return []string{}, err
}
rs.Items = slice.Map(com, func(t models.Comments) rss2.Item {
2023-01-19 13:02:39 +00:00
post, _ := GetPostById(c, t.CommentPostId)
desc := "评论受保护:要查看请输入密码。"
content := t.CommentContent
if post.PostPassword != "" {
2023-03-02 15:49:28 +00:00
wpposts.PasswordProjectTitle(&post)
wpposts.PasswdProjectContent(&post)
2023-01-19 13:02:39 +00:00
content = post.PostContent
} else {
2023-04-18 13:05:37 +00:00
content = digest.StripTags(t.CommentContent, "")
2023-01-19 13:02:39 +00:00
}
return rss2.Item{
Title: fmt.Sprintf("%s对《%s》的评论", t.CommentAuthor, post.PostTitle),
Link: t.CommentAuthorUrl,
2023-01-19 13:02:39 +00:00
Creator: t.CommentAuthor,
Description: desc,
PubDate: t.CommentDateGmt.Format(timeFormat),
Guid: fmt.Sprintf("%s#commment-%d", post.Guid, t.CommentId),
Content: content,
}
})
r = []string{rs.GetXML()}
return
}