memos/server/shortcut.go

189 lines
6.6 KiB
Go
Raw Normal View History

2022-02-03 15:32:03 +08:00
package server
import (
"encoding/json"
2022-02-03 15:32:03 +08:00
"fmt"
"net/http"
"strconv"
"time"
2022-02-03 15:32:03 +08:00
2023-01-02 23:18:12 +08:00
"github.com/pkg/errors"
2022-06-27 22:09:06 +08:00
"github.com/usememos/memos/api"
"github.com/usememos/memos/common"
2022-06-27 22:09:06 +08:00
2022-02-03 15:32:03 +08:00
"github.com/labstack/echo/v4"
)
func (s *Server) registerShortcutRoutes(g *echo.Group) {
g.POST("/shortcut", func(c echo.Context) error {
2022-08-07 10:17:12 +08:00
ctx := c.Request().Context()
2022-07-28 20:09:25 +08:00
userID, ok := c.Get(getUserIDContextKey()).(int)
if !ok {
return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
}
2022-12-28 20:22:52 +08:00
shortcutCreate := &api.ShortcutCreate{}
if err := json.NewDecoder(c.Request().Body).Decode(shortcutCreate); err != nil {
2022-02-03 15:32:03 +08:00
return echo.NewHTTPError(http.StatusBadRequest, "Malformatted post shortcut request").SetInternal(err)
}
2022-12-28 20:22:52 +08:00
shortcutCreate.CreatorID = userID
2022-08-07 10:17:12 +08:00
shortcut, err := s.Store.CreateShortcut(ctx, shortcutCreate)
2022-02-03 15:32:03 +08:00
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to create shortcut").SetInternal(err)
}
2023-01-02 23:18:12 +08:00
if err := s.createShortcutCreateActivity(c, shortcut); err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to create activity").SetInternal(err)
}
2022-02-03 15:32:03 +08:00
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
2022-02-04 17:06:04 +08:00
if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(shortcut)); err != nil {
2022-02-05 11:43:25 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode shortcut response").SetInternal(err)
2022-02-03 15:32:03 +08:00
}
return nil
})
2022-02-18 22:21:10 +08:00
2022-02-03 15:32:03 +08:00
g.PATCH("/shortcut/:shortcutId", func(c echo.Context) error {
2022-08-07 10:17:12 +08:00
ctx := c.Request().Context()
2022-12-28 20:22:52 +08:00
userID, ok := c.Get(getUserIDContextKey()).(int)
if !ok {
return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
}
2022-05-03 02:05:43 +08:00
shortcutID, err := strconv.Atoi(c.Param("shortcutId"))
2022-02-03 15:32:03 +08:00
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("shortcutId"))).SetInternal(err)
}
2022-12-28 20:22:52 +08:00
shortcutFind := &api.ShortcutFind{
ID: &shortcutID,
}
shortcut, err := s.Store.FindShortcut(ctx, shortcutFind)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find shortcut").SetInternal(err)
}
if shortcut.CreatorID != userID {
return echo.NewHTTPError(http.StatusUnauthorized, "Unauthorized")
}
currentTs := time.Now().Unix()
2022-02-03 15:32:03 +08:00
shortcutPatch := &api.ShortcutPatch{
UpdatedTs: &currentTs,
2022-02-03 15:32:03 +08:00
}
if err := json.NewDecoder(c.Request().Body).Decode(shortcutPatch); err != nil {
2022-02-03 15:32:03 +08:00
return echo.NewHTTPError(http.StatusBadRequest, "Malformatted patch shortcut request").SetInternal(err)
}
2022-12-28 20:22:52 +08:00
shortcutPatch.ID = shortcutID
shortcut, err = s.Store.PatchShortcut(ctx, shortcutPatch)
2022-02-03 15:32:03 +08:00
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to patch shortcut").SetInternal(err)
}
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
2022-02-04 17:06:04 +08:00
if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(shortcut)); err != nil {
2022-02-05 11:43:25 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode shortcut response").SetInternal(err)
2022-02-03 15:32:03 +08:00
}
return nil
})
2022-02-18 22:21:10 +08:00
2022-02-03 15:32:03 +08:00
g.GET("/shortcut", func(c echo.Context) error {
2022-08-07 10:17:12 +08:00
ctx := c.Request().Context()
2022-12-28 20:22:52 +08:00
userID, ok := c.Get(getUserIDContextKey()).(int)
if !ok {
return echo.NewHTTPError(http.StatusBadRequest, "Missing user id to find shortcut")
}
2022-12-28 20:22:52 +08:00
shortcutFind := &api.ShortcutFind{
CreatorID: &userID,
2022-02-03 15:32:03 +08:00
}
2022-08-07 10:17:12 +08:00
list, err := s.Store.FindShortcutList(ctx, shortcutFind)
2022-02-03 15:32:03 +08:00
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to fetch shortcut list").SetInternal(err)
}
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
2022-02-04 17:06:04 +08:00
if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(list)); err != nil {
2022-02-05 11:43:25 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode shortcut list response").SetInternal(err)
2022-02-03 15:32:03 +08:00
}
return nil
})
2022-02-18 22:21:10 +08:00
2022-02-03 15:32:03 +08:00
g.GET("/shortcut/:shortcutId", func(c echo.Context) error {
2022-08-07 10:17:12 +08:00
ctx := c.Request().Context()
2022-05-03 02:05:43 +08:00
shortcutID, err := strconv.Atoi(c.Param("shortcutId"))
2022-02-03 15:32:03 +08:00
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("shortcutId"))).SetInternal(err)
}
shortcutFind := &api.ShortcutFind{
2022-05-03 02:05:43 +08:00
ID: &shortcutID,
2022-02-03 15:32:03 +08:00
}
2022-08-07 10:17:12 +08:00
shortcut, err := s.Store.FindShortcut(ctx, shortcutFind)
2022-02-03 15:32:03 +08:00
if err != nil {
2022-05-03 02:05:43 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to fetch shortcut by ID %d", *shortcutFind.ID)).SetInternal(err)
2022-02-03 15:32:03 +08:00
}
c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
2022-02-04 17:06:04 +08:00
if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(shortcut)); err != nil {
2022-02-05 11:43:25 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode shortcut response").SetInternal(err)
2022-02-03 15:32:03 +08:00
}
return nil
})
2022-02-18 22:21:10 +08:00
2022-02-03 15:32:03 +08:00
g.DELETE("/shortcut/:shortcutId", func(c echo.Context) error {
2022-08-07 10:17:12 +08:00
ctx := c.Request().Context()
2022-12-28 20:22:52 +08:00
userID, ok := c.Get(getUserIDContextKey()).(int)
if !ok {
return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
}
2022-05-03 02:05:43 +08:00
shortcutID, err := strconv.Atoi(c.Param("shortcutId"))
2022-02-03 15:32:03 +08:00
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("shortcutId"))).SetInternal(err)
}
2022-12-28 20:22:52 +08:00
shortcutFind := &api.ShortcutFind{
ID: &shortcutID,
}
shortcut, err := s.Store.FindShortcut(ctx, shortcutFind)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find shortcut").SetInternal(err)
}
if shortcut.CreatorID != userID {
return echo.NewHTTPError(http.StatusUnauthorized, "Unauthorized")
}
2022-02-03 15:32:03 +08:00
shortcutDelete := &api.ShortcutDelete{
2022-11-06 12:21:58 +08:00
ID: &shortcutID,
2022-02-03 15:32:03 +08:00
}
2022-08-07 10:17:12 +08:00
if err := s.Store.DeleteShortcut(ctx, shortcutDelete); err != nil {
if common.ErrorCode(err) == common.NotFound {
return echo.NewHTTPError(http.StatusNotFound, fmt.Sprintf("Shortcut ID not found: %d", shortcutID))
}
2022-02-03 15:32:03 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to delete shortcut").SetInternal(err)
}
return c.JSON(http.StatusOK, true)
2022-02-03 15:32:03 +08:00
})
}
2023-01-02 23:18:12 +08:00
func (s *Server) createShortcutCreateActivity(c echo.Context, shortcut *api.Shortcut) error {
ctx := c.Request().Context()
payload := api.ActivityShortcutCreatePayload{
Title: shortcut.Title,
Payload: shortcut.Payload,
}
payloadStr, err := json.Marshal(payload)
if err != nil {
return errors.Wrap(err, "failed to marshal activity payload")
}
2023-01-07 11:49:58 +08:00
activity, err := s.Store.CreateActivity(ctx, &api.ActivityCreate{
2023-01-02 23:18:12 +08:00
CreatorID: shortcut.CreatorID,
Type: api.ActivityShortcutCreate,
Level: api.ActivityInfo,
Payload: string(payloadStr),
})
2023-01-07 11:49:58 +08:00
if err != nil || activity == nil {
return errors.Wrap(err, "failed to create activity")
}
2023-01-02 23:18:12 +08:00
return err
}