memos/server/shortcut.go

143 lines
5 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
2022-06-27 22:09:06 +08:00
"github.com/usememos/memos/api"
"github.com/usememos/memos/common"
2022-10-29 11:15:39 +08:00
metric "github.com/usememos/memos/plugin/metrics"
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-02-03 15:32:03 +08:00
shortcutCreate := &api.ShortcutCreate{
2022-05-03 02:05:43 +08:00
CreatorID: userID,
2022-02-03 15:32:03 +08:00
}
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-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)
}
2022-10-29 11:15:39 +08:00
s.Collector.Collect(ctx, &metric.Metric{
Name: "shortcut created",
})
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-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)
}
currentTs := time.Now().Unix()
2022-02-03 15:32:03 +08:00
shortcutPatch := &api.ShortcutPatch{
ID: shortcutID,
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-08-07 10:17:12 +08:00
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()
shortcutFind := &api.ShortcutFind{}
if userID, err := strconv.Atoi(c.QueryParam("creatorId")); err == nil {
shortcutFind.CreatorID = &userID
} else {
userID, ok := c.Get(getUserIDContextKey()).(int)
if !ok {
2022-07-09 12:00:26 +08:00
return echo.NewHTTPError(http.StatusBadRequest, "Missing user id to find shortcut")
}
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-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)
}
shortcutDelete := &api.ShortcutDelete{
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
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
})
}