2022-02-03 10:32:03 +03:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
|
2022-06-27 17:09:06 +03:00
|
|
|
"github.com/usememos/memos/api"
|
|
|
|
"github.com/usememos/memos/common"
|
|
|
|
|
2022-02-03 10:32:03 +03:00
|
|
|
"github.com/gorilla/sessions"
|
|
|
|
"github.com/labstack/echo-contrib/session"
|
|
|
|
"github.com/labstack/echo/v4"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2022-05-02 21:05:43 +03:00
|
|
|
userIDContextKey = "user-id"
|
2023-01-01 18:26:21 +03:00
|
|
|
sessionName = "memos_session"
|
2022-02-03 10:32:03 +03:00
|
|
|
)
|
|
|
|
|
2022-05-02 21:05:43 +03:00
|
|
|
func getUserIDContextKey() string {
|
|
|
|
return userIDContextKey
|
2022-02-03 10:32:03 +03:00
|
|
|
}
|
|
|
|
|
2022-07-26 16:12:20 +03:00
|
|
|
func setUserSession(ctx echo.Context, user *api.User) error {
|
2023-01-01 18:26:21 +03:00
|
|
|
sess, _ := session.Get(sessionName, ctx)
|
2022-02-03 10:32:03 +03:00
|
|
|
sess.Options = &sessions.Options{
|
|
|
|
Path: "/",
|
2022-11-01 16:03:33 +03:00
|
|
|
MaxAge: 3600 * 24 * 30,
|
2022-02-03 10:32:03 +03:00
|
|
|
HttpOnly: true,
|
2022-12-29 19:17:19 +03:00
|
|
|
SameSite: http.SameSiteStrictMode,
|
2022-02-03 10:32:03 +03:00
|
|
|
}
|
2022-05-02 21:05:43 +03:00
|
|
|
sess.Values[userIDContextKey] = user.ID
|
2022-07-26 16:12:20 +03:00
|
|
|
err := sess.Save(ctx.Request(), ctx.Response())
|
2022-02-03 19:56:44 +03:00
|
|
|
if err != nil {
|
2022-02-04 13:54:24 +03:00
|
|
|
return fmt.Errorf("failed to set session, err: %w", err)
|
2022-02-03 19:56:44 +03:00
|
|
|
}
|
|
|
|
return nil
|
2022-02-03 10:32:03 +03:00
|
|
|
}
|
|
|
|
|
2022-07-26 16:12:20 +03:00
|
|
|
func removeUserSession(ctx echo.Context) error {
|
2023-01-01 18:26:21 +03:00
|
|
|
sess, _ := session.Get(sessionName, ctx)
|
2022-02-03 10:32:03 +03:00
|
|
|
sess.Options = &sessions.Options{
|
|
|
|
Path: "/",
|
|
|
|
MaxAge: 0,
|
|
|
|
HttpOnly: true,
|
|
|
|
}
|
2022-05-02 21:05:43 +03:00
|
|
|
sess.Values[userIDContextKey] = nil
|
2022-07-26 16:12:20 +03:00
|
|
|
err := sess.Save(ctx.Request(), ctx.Response())
|
2022-02-03 19:56:44 +03:00
|
|
|
if err != nil {
|
2022-02-04 13:54:24 +03:00
|
|
|
return fmt.Errorf("failed to set session, err: %w", err)
|
2022-02-03 19:56:44 +03:00
|
|
|
}
|
|
|
|
return nil
|
2022-02-03 10:32:03 +03:00
|
|
|
}
|
|
|
|
|
2022-07-27 14:45:37 +03:00
|
|
|
func aclMiddleware(s *Server, next echo.HandlerFunc) echo.HandlerFunc {
|
2022-08-07 04:23:46 +03:00
|
|
|
return func(c echo.Context) error {
|
|
|
|
ctx := c.Request().Context()
|
|
|
|
path := c.Path()
|
2022-11-19 12:07:40 +03:00
|
|
|
|
2023-01-01 18:26:21 +03:00
|
|
|
if s.DefaultAuthSkipper(c) {
|
2022-08-07 04:23:46 +03:00
|
|
|
return next(c)
|
2022-07-28 15:09:25 +03:00
|
|
|
}
|
|
|
|
|
2023-01-01 18:26:21 +03:00
|
|
|
sess, _ := session.Get(sessionName, c)
|
|
|
|
userIDValue := sess.Values[userIDContextKey]
|
|
|
|
if userIDValue != nil {
|
|
|
|
userID, _ := strconv.Atoi(fmt.Sprintf("%v", userIDValue))
|
|
|
|
userFind := &api.UserFind{
|
|
|
|
ID: &userID,
|
2022-07-05 17:04:17 +03:00
|
|
|
}
|
2023-01-01 18:26:21 +03:00
|
|
|
user, err := s.Store.FindUser(ctx, userFind)
|
|
|
|
if err != nil && common.ErrorCode(err) != common.NotFound {
|
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to find user by ID: %d", userID)).SetInternal(err)
|
|
|
|
}
|
|
|
|
if user != nil {
|
|
|
|
if user.RowStatus == api.Archived {
|
|
|
|
return echo.NewHTTPError(http.StatusForbidden, fmt.Sprintf("User has been archived with username %s", user.Username))
|
2022-07-27 14:45:37 +03:00
|
|
|
}
|
2023-01-01 18:26:21 +03:00
|
|
|
c.Set(getUserIDContextKey(), userID)
|
2022-07-26 16:12:20 +03:00
|
|
|
}
|
2022-07-27 14:45:37 +03:00
|
|
|
}
|
2022-02-03 19:56:44 +03:00
|
|
|
|
2023-01-01 18:26:21 +03:00
|
|
|
if common.HasPrefixes(path, "/api/ping", "/api/status", "/api/user/:id", "/api/memo") && c.Request().Method == http.MethodGet {
|
2022-09-05 16:14:17 +03:00
|
|
|
return next(c)
|
|
|
|
}
|
|
|
|
|
2022-08-07 04:23:46 +03:00
|
|
|
userID := c.Get(getUserIDContextKey())
|
2022-07-27 14:45:37 +03:00
|
|
|
if userID == nil {
|
2022-07-28 15:09:25 +03:00
|
|
|
return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
|
2022-02-03 10:32:03 +03:00
|
|
|
}
|
2022-02-05 19:25:41 +03:00
|
|
|
|
2022-08-07 04:23:46 +03:00
|
|
|
return next(c)
|
2022-02-03 10:32:03 +03:00
|
|
|
}
|
|
|
|
}
|