mirror of
https://github.com/go-vikunja/vikunja.git
synced 2026-08-03 09:06:10 -05:00
Every mutating admin action now dispatches a typed event on commit (admin.user.created, admin.user.admin.granted/revoked, admin.user.status.changed, admin.user.password.set, admin.user.password_reset.sent, admin.user.deleted, admin.project.owner.changed) which the audit catalog maps onto an entry with the acting admin as actor and the affected user or project as target. The model actions grow a doer parameter since the acting admin was not threaded into the models layer before. Admin creation deliberately emits both user.created (actor = the new user, unchanged semantics) and admin.user.created (actor = the admin). The events are instance-level, not project-scoped, so they are not exposed as webhook events. No password or reset-token material is ever part of a payload.
81 lines
2.5 KiB
Go
81 lines
2.5 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 admin
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"code.vikunja.io/api/pkg/db"
|
|
"code.vikunja.io/api/pkg/events"
|
|
"code.vikunja.io/api/pkg/models"
|
|
"code.vikunja.io/api/pkg/modules/auth/openid"
|
|
"code.vikunja.io/api/pkg/routes/api/shared"
|
|
"code.vikunja.io/api/pkg/user"
|
|
|
|
"github.com/labstack/echo/v5"
|
|
)
|
|
|
|
// CreateUser provisions a new account on behalf of an instance admin.
|
|
// @Summary Create a user (admin)
|
|
// @Description Create a new local user account. Respects the admin-only fields `is_admin` and `skip_email_confirm`. The public registration toggle is bypassed.
|
|
// @tags admin
|
|
// @Accept json
|
|
// @Produce json
|
|
// @Security JWTKeyAuth
|
|
// @Param body body models.CreateUserBody true "The user to create"
|
|
// @Success 200 {object} shared.AdminUser
|
|
// @Failure 400 {object} web.HTTPError
|
|
// @Router /admin/users [post]
|
|
func CreateUser(c *echo.Context) error {
|
|
body := &models.CreateUserBody{}
|
|
if err := c.Bind(body); err != nil {
|
|
return c.JSON(http.StatusBadRequest, models.Message{Message: "No or invalid user model provided."})
|
|
}
|
|
if err := c.Validate(body); err != nil {
|
|
e := models.ValidationHTTPError{}
|
|
if is := errors.As(err, &e); is {
|
|
return c.JSON(e.HTTPCode, e)
|
|
}
|
|
return err
|
|
}
|
|
|
|
doer, err := user.GetCurrentUser(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
s := db.NewSession()
|
|
defer s.Close()
|
|
|
|
newUser, err := models.CreateUserAsAdmin(s, doer, body)
|
|
if err != nil {
|
|
_ = s.Rollback()
|
|
events.CleanupPending(s)
|
|
return err
|
|
}
|
|
// CreateUserAsAdmin commits internally; the events RegisterUser queued on s
|
|
// (user.created) still need to be dispatched here.
|
|
events.DispatchPending(c.Request().Context(), s)
|
|
|
|
providers, err := openid.GetAllProviders()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return c.JSON(http.StatusOK, shared.NewAdminUser(newUser, providers))
|
|
}
|