memos/server/tag.go

73 lines
1.8 KiB
Go
Raw Normal View History

2022-06-21 21:58:33 +08:00
package server
import (
"encoding/json"
"net/http"
"regexp"
2022-07-02 15:01:59 +08:00
"sort"
"strconv"
2022-06-21 21:58:33 +08:00
2022-06-27 22:09:06 +08:00
"github.com/usememos/memos/api"
2022-06-21 21:58:33 +08:00
"github.com/labstack/echo/v4"
)
2022-10-02 23:12:06 +08:00
var tagRegexp = regexp.MustCompile(`[^\s]?#([^\s#]+?) `)
2022-09-05 20:15:34 +08:00
2022-06-21 21:58:33 +08:00
func (s *Server) registerTagRoutes(g *echo.Group) {
g.GET("/tag", func(c echo.Context) error {
2022-08-07 10:17:12 +08:00
ctx := c.Request().Context()
2022-06-21 21:58:33 +08:00
contentSearch := "#"
2022-06-21 23:29:07 +08:00
normalRowStatus := api.Normal
2022-06-21 21:58:33 +08:00
memoFind := api.MemoFind{
ContentSearch: &contentSearch,
2022-06-21 23:29:07 +08:00
RowStatus: &normalRowStatus,
2022-06-21 21:58:33 +08:00
}
if userID, err := strconv.Atoi(c.QueryParam("creatorId")); err == nil {
memoFind.CreatorID = &userID
}
2022-07-27 19:45:37 +08:00
currentUserID, ok := c.Get(getUserIDContextKey()).(int)
if !ok {
if memoFind.CreatorID == nil {
return echo.NewHTTPError(http.StatusBadRequest, "Missing user id to find memo")
}
memoFind.VisibilityList = []api.Visibility{api.Public}
} else {
if memoFind.CreatorID == nil {
memoFind.CreatorID = &currentUserID
} else {
memoFind.VisibilityList = []api.Visibility{api.Public, api.Protected}
}
2022-07-09 12:00:26 +08:00
}
2022-08-07 10:17:12 +08:00
memoList, err := s.Store.FindMemoList(ctx, &memoFind)
2022-06-21 21:58:33 +08:00
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find memo list").SetInternal(err)
}
tagMapSet := make(map[string]bool)
for _, memo := range memoList {
2022-09-05 20:15:34 +08:00
for _, rawTag := range tagRegexp.FindAllString(memo.Content, -1) {
tag := tagRegexp.ReplaceAllString(rawTag, "$1")
2022-06-21 21:58:33 +08:00
tagMapSet[tag] = true
}
}
tagList := []string{}
for tag := range tagMapSet {
tagList = append(tagList, tag)
}
2022-07-02 15:01:59 +08:00
sort.Strings(tagList)
2022-06-21 21:58:33 +08:00
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
2022-06-21 22:29:06 +08:00
if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(tagList)); err != nil {
2022-06-21 21:58:33 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode tags response").SetInternal(err)
}
return nil
})
}