memos/server/auth.go

147 lines
5.4 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"
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"
2022-02-06 16:19:20 +08:00
"golang.org/x/crypto/bcrypt"
2022-02-03 15:32:03 +08:00
)
func (s *Server) registerAuthRoutes(g *echo.Group) {
g.POST("/auth/signin", func(c echo.Context) error {
2022-08-07 09:23:46 +08:00
ctx := c.Request().Context()
signin := &api.Signin{}
if err := json.NewDecoder(c.Request().Body).Decode(signin); err != nil {
return echo.NewHTTPError(http.StatusBadRequest, "Malformatted signin request").SetInternal(err)
2022-02-03 15:32:03 +08:00
}
userFind := &api.UserFind{
Username: &signin.Username,
2022-02-03 15:32:03 +08:00
}
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 {
return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Failed to find user by username %s", signin.Username)).SetInternal(err)
2022-02-03 15:32:03 +08:00
}
if user == nil {
return echo.NewHTTPError(http.StatusUnauthorized, fmt.Sprintf("User not found with username %s", signin.Username))
2022-05-19 18:32:04 +08:00
} else if user.RowStatus == api.Archived {
return echo.NewHTTPError(http.StatusForbidden, fmt.Sprintf("User has been archived with username %s", signin.Username))
2022-02-03 15:32:03 +08:00
}
2022-02-06 16:19:20 +08:00
// Compare the stored hashed password, with the hashed version of the password that was received.
if err := bcrypt.CompareHashAndPassword([]byte(user.PasswordHash), []byte(signin.Password)); err != nil {
2022-02-06 16:19:20 +08:00
// If the two passwords don't match, return a 401 status.
return echo.NewHTTPError(http.StatusUnauthorized, "Incorrect password").SetInternal(err)
2022-02-03 15:32:03 +08:00
}
2022-03-29 00:01:34 +08:00
if err = setUserSession(c, user); err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to set signin session").SetInternal(err)
2022-02-04 00:56:44 +08:00
}
2022-10-29 11:15:39 +08:00
s.Collector.Collect(ctx, &metric.Metric{
Name: "user signed in",
})
2022-02-04 00:56:44 +08:00
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(user)); err != nil {
2022-02-05 11:43:25 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode user 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.POST("/auth/logout", func(c echo.Context) error {
2022-10-29 11:15:39 +08:00
ctx := c.Request().Context()
2022-02-04 00:56:44 +08:00
err := removeUserSession(c)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to set logout session").SetInternal(err)
}
2022-10-29 11:15:39 +08:00
s.Collector.Collect(ctx, &metric.Metric{
Name: "user logout",
})
2022-02-03 15:32:03 +08:00
c.Response().WriteHeader(http.StatusOK)
return nil
})
2022-02-18 22:21:10 +08:00
2022-02-03 15:32:03 +08:00
g.POST("/auth/signup", func(c echo.Context) error {
2022-08-07 09:23:46 +08:00
ctx := c.Request().Context()
signup := &api.Signup{}
if err := json.NewDecoder(c.Request().Body).Decode(signup); err != nil {
return echo.NewHTTPError(http.StatusBadRequest, "Malformatted signup request").SetInternal(err)
}
hostUserType := api.Host
hostUserFind := api.UserFind{
Role: &hostUserType,
}
2022-08-07 09:23:46 +08:00
hostUser, err := s.Store.FindUser(ctx, &hostUserFind)
2022-09-09 20:00:04 +08:00
if err != nil && common.ErrorCode(err) != common.NotFound {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find host user").SetInternal(err)
}
if signup.Role == api.Host && hostUser != nil {
return echo.NewHTTPError(http.StatusUnauthorized, "Site Host existed, please contact the site host to signin account firstly.").SetInternal(err)
}
systemSettingAllowSignUpName := api.SystemSettingAllowSignUpName
allowSignUpSetting, err := s.Store.FindSystemSetting(ctx, &api.SystemSettingFind{
Name: &systemSettingAllowSignUpName,
})
if err != nil && common.ErrorCode(err) != common.NotFound {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to find system setting").SetInternal(err)
}
allowSignUpSettingValue := false
if allowSignUpSetting != nil {
err = json.Unmarshal([]byte(allowSignUpSetting.Value), &allowSignUpSettingValue)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to unmarshal system setting allow signup").SetInternal(err)
}
}
if !allowSignUpSettingValue && hostUser != nil {
return echo.NewHTTPError(http.StatusUnauthorized, "Site Host existed, please contact the site host to signin account firstly.").SetInternal(err)
2022-02-03 15:32:03 +08:00
}
2022-08-20 21:03:15 +08:00
userCreate := &api.UserCreate{
Username: signup.Username,
2022-08-20 21:03:15 +08:00
Role: api.Role(signup.Role),
Nickname: signup.Username,
2022-08-20 21:03:15 +08:00
Password: signup.Password,
OpenID: common.GenUUID(),
}
2022-08-20 21:03:15 +08:00
if err := userCreate.Validate(); err != nil {
return echo.NewHTTPError(http.StatusBadRequest, "Invalid user create format.").SetInternal(err)
2022-02-06 16:19:20 +08:00
}
passwordHash, err := bcrypt.GenerateFromPassword([]byte(signup.Password), bcrypt.DefaultCost)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to generate password hash").SetInternal(err)
}
2022-08-20 21:03:15 +08:00
userCreate.PasswordHash = string(passwordHash)
2022-08-07 09:23:46 +08:00
user, err := s.Store.CreateUser(ctx, userCreate)
2022-02-03 15:32:03 +08:00
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to create user").SetInternal(err)
}
2022-10-29 11:15:39 +08:00
s.Collector.Collect(ctx, &metric.Metric{
Name: "user signed up",
})
2022-02-03 15:32:03 +08:00
2022-02-04 00:56:44 +08:00
err = setUserSession(c, user)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to set signup session").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(user)); err != nil {
2022-02-05 11:43:25 +08:00
return echo.NewHTTPError(http.StatusInternalServerError, "Failed to encode created user response").SetInternal(err)
2022-02-03 15:32:03 +08:00
}
return nil
})
}