123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- package server
- import (
- "context"
- "encoding/json"
- "net/http"
- "strconv"
- "strings"
- "time"
- "github.com/gorilla/feeds"
- "github.com/labstack/echo/v4"
- "github.com/usememos/memos/api"
- )
- func (s *Server) registerRSSRoutes(g *echo.Group) {
- g.GET("/explore/rss.xml", func(c echo.Context) error {
- ctx := c.Request().Context()
- systemCustomizedProfile, err := getSystemCustomizedProfile(ctx, s)
- if err != nil {
- return echo.NewHTTPError(http.StatusInternalServerError, "Failed to get system customized profile").SetInternal(err)
- }
- normalStatus := api.Normal
- memoFind := api.MemoFind{
- RowStatus: &normalStatus,
- VisibilityList: []api.Visibility{
- api.Public,
- },
- }
- memoList, err := s.Store.FindMemoList(ctx, &memoFind)
- if err != nil {
- return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find memo list").SetInternal(err)
- }
- baseURL := c.Scheme() + "://" + c.Request().Host
- rss, err := generateRSSFromMemoList(memoList, baseURL, systemCustomizedProfile)
- if err != nil {
- return echo.NewHTTPError(http.StatusInternalServerError, "Failed to generate rss").SetInternal(err)
- }
- c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationXMLCharsetUTF8)
- return c.String(http.StatusOK, rss)
- })
- g.GET("/u/:id/rss.xml", func(c echo.Context) error {
- ctx := c.Request().Context()
- systemCustomizedProfile, err := getSystemCustomizedProfile(ctx, s)
- if err != nil {
- return echo.NewHTTPError(http.StatusInternalServerError, "Failed to get system customized profile").SetInternal(err)
- }
- id, err := strconv.Atoi(c.Param("id"))
- if err != nil {
- return echo.NewHTTPError(http.StatusBadRequest, "User id is not a number").SetInternal(err)
- }
- normalStatus := api.Normal
- memoFind := api.MemoFind{
- CreatorID: &id,
- RowStatus: &normalStatus,
- VisibilityList: []api.Visibility{
- api.Public,
- },
- }
- memoList, err := s.Store.FindMemoList(ctx, &memoFind)
- if err != nil {
- return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find memo list").SetInternal(err)
- }
- baseURL := c.Scheme() + "://" + c.Request().Host
- rss, err := generateRSSFromMemoList(memoList, baseURL, systemCustomizedProfile)
- if err != nil {
- return echo.NewHTTPError(http.StatusInternalServerError, "Failed to generate rss").SetInternal(err)
- }
- c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationXMLCharsetUTF8)
- return c.String(http.StatusOK, rss)
- })
- }
- const MaxRSSItemCount = 100
- const MaxRSSItemTitleLength = 100
- func generateRSSFromMemoList(memoList []*api.Memo, baseURL string, profile *api.CustomizedProfile) (string, error) {
- feed := &feeds.Feed{
- Title: profile.Name,
- Link: &feeds.Link{Href: baseURL},
- Description: profile.Description,
- Created: time.Now(),
- }
- var itemCountLimit = min(len(memoList), MaxRSSItemCount)
- feed.Items = make([]*feeds.Item, itemCountLimit)
- for i := 0; i < itemCountLimit; i++ {
- memo := memoList[i]
- feed.Items[i] = &feeds.Item{
- Title: getRSSItemTitle(memo.Content),
- Link: &feeds.Link{Href: baseURL + "/m/" + strconv.Itoa(memo.ID)},
- Description: getRSSItemDescription(memo.Content),
- Created: time.Unix(memo.CreatedTs, 0),
- }
- }
- rss, err := feed.ToRss()
- if err != nil {
- return "", err
- }
- return rss, nil
- }
- func getSystemCustomizedProfile(ctx context.Context, s *Server) (*api.CustomizedProfile, error) {
- customizedProfile := &api.CustomizedProfile{
- Name: "memos",
- LogoURL: "",
- Description: "",
- Locale: "en",
- Appearance: "system",
- ExternalURL: "",
- }
- systemSetting, err := s.Store.FindSystemSetting(ctx, &api.SystemSettingFind{
- Name: api.SystemSettingCustomizedProfileName,
- })
- if err != nil {
- return customizedProfile, err
- }
- err = json.Unmarshal([]byte(systemSetting.Value), customizedProfile)
- if err != nil {
- return customizedProfile, err
- }
- return customizedProfile, nil
- }
- func min(a, b int) int {
- if a < b {
- return a
- }
- return b
- }
- func getRSSItemTitle(content string) string {
- var title string
- if isTitleDefined(content) {
- title = strings.Split(content, "\n")[0][2:]
- } else {
- title = strings.Split(content, "\n")[0]
- var titleLengthLimit = min(len(title), MaxRSSItemTitleLength)
- if titleLengthLimit < len(title) {
- title = title[:titleLengthLimit] + "..."
- }
- }
- return title
- }
- func getRSSItemDescription(content string) string {
- var description string
- if isTitleDefined(content) {
- var firstLineEnd = strings.Index(content, "\n")
- description = strings.Trim(content[firstLineEnd+1:], " ")
- } else {
- description = content
- }
- return description
- }
- func isTitleDefined(content string) bool {
- return strings.HasPrefix(content, "# ")
- }
|