memos/server/acl.go

123 lines
3.2 KiB
Go
Raw Normal View History

2022-02-03 15:32:03 +08:00
package server
import (
"fmt"
"net/http"
"strconv"
2022-06-27 22:09:06 +08:00
"github.com/usememos/memos/api"
"github.com/usememos/memos/common"
2022-02-03 15:32:03 +08:00
"github.com/gorilla/sessions"
"github.com/labstack/echo-contrib/session"
"github.com/labstack/echo/v4"
)
var (
2022-05-03 02:05:43 +08:00
userIDContextKey = "user-id"
2022-02-03 15:32:03 +08:00
)
2022-05-03 02:05:43 +08:00
func getUserIDContextKey() string {
return userIDContextKey
2022-02-03 15:32:03 +08:00
}
func setUserSession(ctx echo.Context, user *api.User) error {
2022-11-10 20:51:37 +08:00
sess, _ := session.Get("memos_session", ctx)
2022-02-03 15:32:03 +08:00
sess.Options = &sessions.Options{
Path: "/",
2022-11-01 21:03:33 +08:00
MaxAge: 3600 * 24 * 30,
2022-02-03 15:32:03 +08:00
HttpOnly: true,
2022-12-30 00:17:19 +08:00
SameSite: http.SameSiteStrictMode,
2022-02-03 15:32:03 +08:00
}
2022-05-03 02:05:43 +08:00
sess.Values[userIDContextKey] = user.ID
err := sess.Save(ctx.Request(), ctx.Response())
2022-02-04 00:56:44 +08:00
if err != nil {
2022-02-04 18:54:24 +08:00
return fmt.Errorf("failed to set session, err: %w", err)
2022-02-04 00:56:44 +08:00
}
return nil
2022-02-03 15:32:03 +08:00
}
func removeUserSession(ctx echo.Context) error {
2022-11-10 20:51:37 +08:00
sess, _ := session.Get("memos_session", ctx)
2022-02-03 15:32:03 +08:00
sess.Options = &sessions.Options{
Path: "/",
MaxAge: 0,
HttpOnly: true,
}
2022-05-03 02:05:43 +08:00
sess.Values[userIDContextKey] = nil
err := sess.Save(ctx.Request(), ctx.Response())
2022-02-04 00:56:44 +08:00
if err != nil {
2022-02-04 18:54:24 +08:00
return fmt.Errorf("failed to set session, err: %w", err)
2022-02-04 00:56:44 +08:00
}
return nil
2022-02-03 15:32:03 +08:00
}
2022-07-27 19:45:37 +08:00
func aclMiddleware(s *Server, next echo.HandlerFunc) echo.HandlerFunc {
2022-08-07 09:23:46 +08:00
return func(c echo.Context) error {
ctx := c.Request().Context()
path := c.Path()
2022-07-28 20:09:25 +08:00
// Skip auth.
2022-08-07 09:23:46 +08:00
if common.HasPrefixes(path, "/api/auth") {
return next(c)
2022-07-28 20:09:25 +08:00
}
2022-09-16 21:45:56 +08:00
{
// If there is openId in query string and related user is found, then skip auth.
openID := c.QueryParam("openId")
if openID != "" {
userFind := &api.UserFind{
OpenID: &openID,
}
user, err := s.Store.FindUser(ctx, userFind)
if err != nil && common.ErrorCode(err) != common.NotFound {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find user by open_id").SetInternal(err)
}
if user != nil {
// Stores userID into context.
c.Set(getUserIDContextKey(), user.ID)
return next(c)
}
}
}
{
2022-11-10 20:51:37 +08:00
sess, _ := session.Get("memos_session", c)
userIDValue := sess.Values[userIDContextKey]
2022-07-27 19:45:37 +08:00
if userIDValue != nil {
userID, _ := strconv.Atoi(fmt.Sprintf("%v", userIDValue))
userFind := &api.UserFind{
ID: &userID,
}
2022-08-07 09:23:46 +08:00
user, err := s.Store.FindUser(ctx, userFind)
2022-09-09 20:00:04 +08:00
if err != nil && common.ErrorCode(err) != common.NotFound {
2022-07-27 19:45:37 +08:00
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 19:45:37 +08:00
}
2022-08-07 09:23:46 +08:00
c.Set(getUserIDContextKey(), userID)
2022-07-27 19:45:37 +08:00
}
}
2022-07-27 19:45:37 +08:00
}
2022-02-04 00:56:44 +08:00
if common.HasPrefixes(path, "/api/ping", "/api/status", "/api/user/:id", "/api/memo/all", "/api/memo/:memoId", "/api/memo/amount") && c.Request().Method == http.MethodGet {
2022-09-05 21:14:17 +08:00
return next(c)
}
2022-11-21 23:23:05 +08:00
if common.HasPrefixes(path, "/api/memo", "/api/tag", "/api/shortcut") && c.Request().Method == http.MethodGet {
2022-08-07 09:23:46 +08:00
if _, err := strconv.Atoi(c.QueryParam("creatorId")); err == nil {
return next(c)
}
2022-07-27 19:45:37 +08:00
}
2022-02-03 15:32:03 +08:00
2022-08-07 09:23:46 +08:00
userID := c.Get(getUserIDContextKey())
2022-07-27 19:45:37 +08:00
if userID == nil {
2022-07-28 20:09:25 +08:00
return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
2022-02-03 15:32:03 +08:00
}
2022-02-06 00:25:41 +08:00
2022-08-07 09:23:46 +08:00
return next(c)
2022-02-03 15:32:03 +08:00
}
}