mirror of
				https://github.com/usememos/memos.git
				synced 2025-11-01 01:06:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			262 lines
		
	
	
	
		
			9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			262 lines
		
	
	
	
		
			9 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package server
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 	"strconv"
 | |
| 	"strings"
 | |
| 
 | |
| 	"github.com/usememos/memos/api"
 | |
| 	"github.com/usememos/memos/common"
 | |
| 
 | |
| 	"github.com/labstack/echo/v4"
 | |
| )
 | |
| 
 | |
| func (s *Server) registerMemoRoutes(g *echo.Group) {
 | |
| 	g.POST("/memo", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		userID, ok := c.Get(getUserIDContextKey()).(int)
 | |
| 		if !ok {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
 | |
| 		}
 | |
| 		memoCreate := &api.MemoCreate{
 | |
| 			CreatorID: userID,
 | |
| 			// Private is the default memo visibility.
 | |
| 			Visibility: api.Privite,
 | |
| 		}
 | |
| 		if err := json.NewDecoder(c.Request().Body).Decode(memoCreate); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Malformatted post memo request").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		if memoCreate.Content == "" {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Memo content shouldn't be empty")
 | |
| 		}
 | |
| 
 | |
| 		userSettingMemoVisibilityKey := api.UserSettingMemoVisibilityKey
 | |
| 		userMemoVisibilitySetting, err := s.Store.FindUserSetting(ctx, &api.UserSettingFind{
 | |
| 			UserID: userID,
 | |
| 			Key:    &userSettingMemoVisibilityKey,
 | |
| 		})
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find user setting").SetInternal(err)
 | |
| 		}
 | |
| 		if userMemoVisibilitySetting != nil {
 | |
| 			memoVisibility := api.Privite
 | |
| 			err := json.Unmarshal([]byte(userMemoVisibilitySetting.Value), &memoVisibility)
 | |
| 			if err != nil {
 | |
| 				return echo.NewHTTPError(http.StatusInternalServerError, "Failed to unmarshal user setting value").SetInternal(err)
 | |
| 			}
 | |
| 			memoCreate.Visibility = memoVisibility
 | |
| 		}
 | |
| 
 | |
| 		memo, err := s.Store.CreateMemo(ctx, memoCreate)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to create memo").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(memo)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode memo response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.PATCH("/memo/:memoId", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		memoID, err := strconv.Atoi(c.Param("memoId"))
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("memoId"))).SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		memoPatch := &api.MemoPatch{
 | |
| 			ID: memoID,
 | |
| 		}
 | |
| 		if err := json.NewDecoder(c.Request().Body).Decode(memoPatch); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Malformatted patch memo request").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		memo, err := s.Store.PatchMemo(ctx, memoPatch)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to patch memo").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(memo)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode memo response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.GET("/memo", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		memoFind := &api.MemoFind{}
 | |
| 
 | |
| 		if userID, err := strconv.Atoi(c.QueryParam("creatorId")); err == nil {
 | |
| 			memoFind.CreatorID = &userID
 | |
| 		}
 | |
| 
 | |
| 		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 = ¤tUserID
 | |
| 			} else {
 | |
| 				memoFind.VisibilityList = []api.Visibility{api.Public, api.Protected}
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		rowStatus := api.RowStatus(c.QueryParam("rowStatus"))
 | |
| 		if rowStatus != "" {
 | |
| 			memoFind.RowStatus = &rowStatus
 | |
| 		}
 | |
| 		pinnedStr := c.QueryParam("pinned")
 | |
| 		if pinnedStr != "" {
 | |
| 			pinned := pinnedStr == "true"
 | |
| 			memoFind.Pinned = &pinned
 | |
| 		}
 | |
| 		tag := c.QueryParam("tag")
 | |
| 		if tag != "" {
 | |
| 			contentSearch := "#" + tag + " "
 | |
| 			memoFind.ContentSearch = &contentSearch
 | |
| 		}
 | |
| 		visibilitListStr := c.QueryParam("visibility")
 | |
| 		if visibilitListStr != "" {
 | |
| 			visibilityList := []api.Visibility{}
 | |
| 			for _, visibility := range strings.Split(visibilitListStr, ",") {
 | |
| 				visibilityList = append(visibilityList, api.Visibility(visibility))
 | |
| 			}
 | |
| 			memoFind.VisibilityList = visibilityList
 | |
| 		}
 | |
| 		if limit, err := strconv.Atoi(c.QueryParam("limit")); err == nil {
 | |
| 			memoFind.Limit = limit
 | |
| 		}
 | |
| 		if offset, err := strconv.Atoi(c.QueryParam("offset")); err == nil {
 | |
| 			memoFind.Offset = offset
 | |
| 		}
 | |
| 
 | |
| 		list, err := s.Store.FindMemoList(ctx, memoFind)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to fetch memo list").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(list)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode memo list response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.POST("/memo/:memoId/organizer", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		memoID, err := strconv.Atoi(c.Param("memoId"))
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("memoId"))).SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		userID, ok := c.Get(getUserIDContextKey()).(int)
 | |
| 		if !ok {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
 | |
| 		}
 | |
| 		memoOrganizerUpsert := &api.MemoOrganizerUpsert{
 | |
| 			MemoID: memoID,
 | |
| 			UserID: userID,
 | |
| 		}
 | |
| 		if err := json.NewDecoder(c.Request().Body).Decode(memoOrganizerUpsert); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Malformatted post memo organizer request").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		err = s.Store.UpsertMemoOrganizer(ctx, memoOrganizerUpsert)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to upsert memo organizer").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		memo, err := s.Store.FindMemo(ctx, &api.MemoFind{
 | |
| 			ID: &memoID,
 | |
| 		})
 | |
| 		if err != nil {
 | |
| 			if common.ErrorCode(err) == common.NotFound {
 | |
| 				return echo.NewHTTPError(http.StatusNotFound, fmt.Sprintf("Memo ID not found: %d", memoID)).SetInternal(err)
 | |
| 			}
 | |
| 
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to find memo by ID: %v", memoID)).SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(memo)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode memo response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.GET("/memo/:memoId", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		memoID, err := strconv.Atoi(c.Param("memoId"))
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("memoId"))).SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		memoFind := &api.MemoFind{
 | |
| 			ID: &memoID,
 | |
| 		}
 | |
| 		memo, err := s.Store.FindMemo(ctx, memoFind)
 | |
| 		if err != nil {
 | |
| 			if common.ErrorCode(err) == common.NotFound {
 | |
| 				return echo.NewHTTPError(http.StatusNotFound, fmt.Sprintf("Memo ID not found: %d", memoID)).SetInternal(err)
 | |
| 			}
 | |
| 
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to find memo by ID: %v", memoID)).SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(memo)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode memo response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.DELETE("/memo/:memoId", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		memoID, err := strconv.Atoi(c.Param("memoId"))
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("memoId"))).SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		memoDelete := &api.MemoDelete{
 | |
| 			ID: memoID,
 | |
| 		}
 | |
| 		if err := s.Store.DeleteMemo(ctx, memoDelete); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to delete memo ID: %v", memoID)).SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		return c.JSON(http.StatusOK, true)
 | |
| 	})
 | |
| 
 | |
| 	g.GET("/memo/amount", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		userID, ok := c.Get(getUserIDContextKey()).(int)
 | |
| 		if !ok {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
 | |
| 		}
 | |
| 		normalRowStatus := api.Normal
 | |
| 		memoFind := &api.MemoFind{
 | |
| 			CreatorID: &userID,
 | |
| 			RowStatus: &normalRowStatus,
 | |
| 		}
 | |
| 
 | |
| 		memoList, err := s.Store.FindMemoList(ctx, memoFind)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find memo list").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(len(memoList))); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode memo amount").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| }
 |