73 lines
2.4 KiB
Go
73 lines
2.4 KiB
Go
// Vikunja is a to-do list application to facilitate your life.
|
|
// Copyright 2018-present Vikunja and contributors. All rights reserved.
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
package v1
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"code.vikunja.io/api/pkg/config"
|
|
"code.vikunja.io/api/pkg/models"
|
|
"code.vikunja.io/api/pkg/routes/api/shared"
|
|
|
|
"github.com/labstack/echo/v5"
|
|
)
|
|
|
|
// UserRegister is an alias for the shared registration input, kept so the v1
|
|
// swagger annotation and any existing imports still resolve.
|
|
type UserRegister = shared.UserRegister
|
|
|
|
// RegisterUser is the register handler
|
|
// @Summary Register
|
|
// @Description Creates a new user account.
|
|
// @tags auth
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Param credentials body v1.UserRegister true "The user with credentials to create"
|
|
// @Success 200 {object} user.User
|
|
// @Failure 400 {object} web.HTTPError "No or invalid user register object provided / User already exists."
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
// @Router /register [post]
|
|
func RegisterUser(c *echo.Context) error {
|
|
if !config.ServiceEnableRegistration.GetBool() {
|
|
return echo.ErrNotFound
|
|
}
|
|
// Check for Request Content
|
|
var userIn *UserRegister
|
|
if err := c.Bind(&userIn); err != nil {
|
|
return c.JSON(http.StatusBadRequest, models.Message{Message: "No or invalid user model provided."})
|
|
}
|
|
if err := c.Validate(userIn); err != nil {
|
|
e := models.ValidationHTTPError{}
|
|
if is := errors.As(err, &e); is {
|
|
return c.JSON(e.HTTPCode, e)
|
|
}
|
|
|
|
return err
|
|
}
|
|
if userIn == nil {
|
|
return c.JSON(http.StatusBadRequest, models.Message{Message: "No or invalid user model provided."})
|
|
}
|
|
|
|
newUser, err := shared.RegisterUser(c.Request().Context(), userIn)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.JSON(http.StatusOK, newUser)
|
|
}
|