2022-02-03 15:32:03 +08:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
2022-02-04 16:51:48 +08:00
|
|
|
"encoding/json"
|
2022-02-03 15:32:03 +08:00
|
|
|
"fmt"
|
|
|
|
"memos/api"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (s *Server) registerShortcutRoutes(g *echo.Group) {
|
|
|
|
g.POST("/shortcut", func(c echo.Context) error {
|
|
|
|
userId := c.Get(getUserIdContextKey()).(int)
|
|
|
|
shortcutCreate := &api.ShortcutCreate{
|
|
|
|
CreatorId: userId,
|
|
|
|
}
|
2022-02-04 16:51:48 +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)
|
|
|
|
}
|
|
|
|
|
|
|
|
shortcut, err := s.ShortcutService.CreateShortcut(shortcutCreate)
|
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to create 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.PATCH("/shortcut/:shortcutId", func(c echo.Context) error {
|
|
|
|
shortcutId, err := strconv.Atoi(c.Param("shortcutId"))
|
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("shortcutId"))).SetInternal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
shortcutPatch := &api.ShortcutPatch{
|
|
|
|
Id: shortcutId,
|
|
|
|
}
|
2022-02-04 16:51:48 +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)
|
|
|
|
}
|
|
|
|
|
|
|
|
shortcut, err := s.ShortcutService.PatchShortcut(shortcutPatch)
|
|
|
|
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 {
|
|
|
|
userId := c.Get(getUserIdContextKey()).(int)
|
|
|
|
shortcutFind := &api.ShortcutFind{
|
|
|
|
CreatorId: &userId,
|
|
|
|
}
|
2022-02-04 16:51:48 +08:00
|
|
|
list, err := s.ShortcutService.FindShortcutList(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 {
|
|
|
|
shortcutId, err := strconv.Atoi(c.Param("shortcutId"))
|
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("shortcutId"))).SetInternal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
shortcutFind := &api.ShortcutFind{
|
|
|
|
Id: &shortcutId,
|
|
|
|
}
|
|
|
|
shortcut, err := s.ShortcutService.FindShortcut(shortcutFind)
|
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to fetch 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.DELETE("/shortcut/:shortcutId", func(c echo.Context) error {
|
|
|
|
shortcutId, err := strconv.Atoi(c.Param("shortcutId"))
|
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("shortcutId"))).SetInternal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
shortcutDelete := &api.ShortcutDelete{
|
|
|
|
Id: shortcutId,
|
|
|
|
}
|
|
|
|
if err := s.ShortcutService.DeleteShortcut(shortcutDelete); err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to delete shortcut").SetInternal(err)
|
|
|
|
}
|
|
|
|
|
2022-02-05 13:17:43 +08:00
|
|
|
c.JSON(http.StatusOK, true)
|
|
|
|
|
2022-02-03 15:32:03 +08:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|