mirror of
				https://github.com/usememos/memos.git
				synced 2025-10-31 00:38:08 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			268 lines
		
	
	
	
		
			9.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			268 lines
		
	
	
	
		
			9.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package server
 | |
| 
 | |
| import (
 | |
| 	"encoding/json"
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 	"strconv"
 | |
| 	"time"
 | |
| 
 | |
| 	"github.com/usememos/memos/api"
 | |
| 	"github.com/usememos/memos/common"
 | |
| 	metric "github.com/usememos/memos/plugin/metrics"
 | |
| 
 | |
| 	"github.com/labstack/echo/v4"
 | |
| 	"golang.org/x/crypto/bcrypt"
 | |
| )
 | |
| 
 | |
| func (s *Server) registerUserRoutes(g *echo.Group) {
 | |
| 	g.POST("/user", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		userID, ok := c.Get(getUserIDContextKey()).(int)
 | |
| 		if !ok {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Missing auth session")
 | |
| 		}
 | |
| 		currentUser, err := s.Store.FindUser(ctx, &api.UserFind{
 | |
| 			ID: &userID,
 | |
| 		})
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find user by id").SetInternal(err)
 | |
| 		}
 | |
| 		if currentUser.Role != api.Host {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Only Host user can create member.")
 | |
| 		}
 | |
| 
 | |
| 		userCreate := &api.UserCreate{
 | |
| 			OpenID: common.GenUUID(),
 | |
| 		}
 | |
| 		if err := json.NewDecoder(c.Request().Body).Decode(userCreate); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Malformatted post user request").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		if err := userCreate.Validate(); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Invalid user create format.").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		passwordHash, err := bcrypt.GenerateFromPassword([]byte(userCreate.Password), bcrypt.DefaultCost)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to generate password hash").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		userCreate.PasswordHash = string(passwordHash)
 | |
| 		user, err := s.Store.CreateUser(ctx, userCreate)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to create user").SetInternal(err)
 | |
| 		}
 | |
| 		s.Collector.Collect(ctx, &metric.Metric{
 | |
| 			Name: "user created",
 | |
| 		})
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(user)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode user response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.GET("/user", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		userList, err := s.Store.FindUserList(ctx, &api.UserFind{})
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to fetch user list").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		for _, user := range userList {
 | |
| 			// data desensitize
 | |
| 			user.OpenID = ""
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(userList)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode user list response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	// GET /api/user/me is used to check if the user is logged in.
 | |
| 	g.GET("/user/me", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		userID, ok := c.Get(getUserIDContextKey()).(int)
 | |
| 		if !ok {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Missing auth session")
 | |
| 		}
 | |
| 
 | |
| 		userFind := &api.UserFind{
 | |
| 			ID: &userID,
 | |
| 		}
 | |
| 		user, err := s.Store.FindUser(ctx, userFind)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find user").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		userSettingList, err := s.Store.FindUserSettingList(ctx, &api.UserSettingFind{
 | |
| 			UserID: userID,
 | |
| 		})
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find userSettingList").SetInternal(err)
 | |
| 		}
 | |
| 		user.UserSettingList = userSettingList
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(user)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode user response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.POST("/user/setting", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		userID, ok := c.Get(getUserIDContextKey()).(int)
 | |
| 		if !ok {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Missing auth session")
 | |
| 		}
 | |
| 
 | |
| 		userSettingUpsert := &api.UserSettingUpsert{}
 | |
| 		if err := json.NewDecoder(c.Request().Body).Decode(userSettingUpsert); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Malformatted post user setting upsert request").SetInternal(err)
 | |
| 		}
 | |
| 		if err := userSettingUpsert.Validate(); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Invalid user setting format").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		userSettingUpsert.UserID = userID
 | |
| 		userSetting, err := s.Store.UpsertUserSetting(ctx, userSettingUpsert)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to upsert user setting").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(userSetting)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode user setting response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.GET("/user/:id", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		id, err := strconv.Atoi(c.Param("id"))
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Malformatted user id").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		user, err := s.Store.FindUser(ctx, &api.UserFind{
 | |
| 			ID: &id,
 | |
| 		})
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to fetch user").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		if user != nil {
 | |
| 			// data desensitize
 | |
| 			user.OpenID = ""
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(user)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode user response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.PATCH("/user/:id", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		userID, err := strconv.Atoi(c.Param("id"))
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("id"))).SetInternal(err)
 | |
| 		}
 | |
| 		currentUserID, ok := c.Get(getUserIDContextKey()).(int)
 | |
| 		if !ok {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
 | |
| 		}
 | |
| 		currentUser, err := s.Store.FindUser(ctx, &api.UserFind{
 | |
| 			ID: ¤tUserID,
 | |
| 		})
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find user").SetInternal(err)
 | |
| 		}
 | |
| 		if currentUser == nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Current session user not found with ID: %d", currentUserID)).SetInternal(err)
 | |
| 		} else if currentUser.Role != api.Host && currentUserID != userID {
 | |
| 			return echo.NewHTTPError(http.StatusForbidden, "Access forbidden for current session user").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		currentTs := time.Now().Unix()
 | |
| 		userPatch := &api.UserPatch{
 | |
| 			ID:        userID,
 | |
| 			UpdatedTs: ¤tTs,
 | |
| 		}
 | |
| 		if err := json.NewDecoder(c.Request().Body).Decode(userPatch); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Malformatted patch user request").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		if userPatch.Email != nil && *userPatch.Email != "" && !common.ValidateEmail(*userPatch.Email) {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, "Invalid email format")
 | |
| 		}
 | |
| 
 | |
| 		if userPatch.Password != nil && *userPatch.Password != "" {
 | |
| 			passwordHash, err := bcrypt.GenerateFromPassword([]byte(*userPatch.Password), bcrypt.DefaultCost)
 | |
| 			if err != nil {
 | |
| 				return echo.NewHTTPError(http.StatusInternalServerError, "Failed to generate password hash").SetInternal(err)
 | |
| 			}
 | |
| 
 | |
| 			passwordHashStr := string(passwordHash)
 | |
| 			userPatch.PasswordHash = &passwordHashStr
 | |
| 		}
 | |
| 
 | |
| 		if userPatch.ResetOpenID != nil && *userPatch.ResetOpenID {
 | |
| 			openID := common.GenUUID()
 | |
| 			userPatch.OpenID = &openID
 | |
| 		}
 | |
| 
 | |
| 		user, err := s.Store.PatchUser(ctx, userPatch)
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to patch user").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		c.Response().Header().Set(echo.HeaderContentType, echo.MIMEApplicationJSONCharsetUTF8)
 | |
| 		if err := json.NewEncoder(c.Response().Writer).Encode(composeResponse(user)); err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode user response").SetInternal(err)
 | |
| 		}
 | |
| 		return nil
 | |
| 	})
 | |
| 
 | |
| 	g.DELETE("/user/:id", func(c echo.Context) error {
 | |
| 		ctx := c.Request().Context()
 | |
| 		currentUserID, ok := c.Get(getUserIDContextKey()).(int)
 | |
| 		if !ok {
 | |
| 			return echo.NewHTTPError(http.StatusUnauthorized, "Missing user in session")
 | |
| 		}
 | |
| 		currentUser, err := s.Store.FindUser(ctx, &api.UserFind{
 | |
| 			ID: ¤tUserID,
 | |
| 		})
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find user").SetInternal(err)
 | |
| 		}
 | |
| 		if currentUser == nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Current session user not found with ID: %d", currentUserID)).SetInternal(err)
 | |
| 		} else if currentUser.Role != api.Host {
 | |
| 			return echo.NewHTTPError(http.StatusForbidden, "Access forbidden for current session user").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		userID, err := strconv.Atoi(c.Param("id"))
 | |
| 		if err != nil {
 | |
| 			return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("ID is not a number: %s", c.Param("id"))).SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		userDelete := &api.UserDelete{
 | |
| 			ID: userID,
 | |
| 		}
 | |
| 		if err := s.Store.DeleteUser(ctx, userDelete); err != nil {
 | |
| 			if common.ErrorCode(err) == common.NotFound {
 | |
| 				return echo.NewHTTPError(http.StatusNotFound, fmt.Sprintf("User ID not found: %d", userID))
 | |
| 			}
 | |
| 			return echo.NewHTTPError(http.StatusInternalServerError, "Failed to delete user").SetInternal(err)
 | |
| 		}
 | |
| 
 | |
| 		return c.JSON(http.StatusOK, true)
 | |
| 	})
 | |
| }
 |