Files
Atay-Makhzan/routers/api/v1/admin/user.go
T

452 lines
12 KiB
Go
Raw Normal View History

2015-12-05 17:13:13 -05:00
// Copyright 2015 The Gogs Authors. All rights reserved.
2019-01-24 04:00:19 +05:30
// Copyright 2019 The Gitea Authors. All rights reserved.
2015-12-05 17:13:13 -05:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package admin
import (
2019-10-14 22:24:26 +07:00
"errors"
2020-02-03 17:46:33 +01:00
"fmt"
2019-12-20 18:07:12 +01:00
"net/http"
"strings"
2019-10-14 22:24:26 +07:00
"code.gitea.io/gitea/models"
2021-12-10 16:14:24 +08:00
asymkey_model "code.gitea.io/gitea/models/asymkey"
2022-01-02 21:12:35 +08:00
"code.gitea.io/gitea/models/auth"
"code.gitea.io/gitea/models/db"
user_model "code.gitea.io/gitea/models/user"
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/modules/convert"
"code.gitea.io/gitea/modules/log"
2019-10-14 22:24:26 +07:00
"code.gitea.io/gitea/modules/password"
"code.gitea.io/gitea/modules/setting"
2019-05-11 18:21:34 +08:00
api "code.gitea.io/gitea/modules/structs"
"code.gitea.io/gitea/modules/util"
2021-01-26 23:36:53 +08:00
"code.gitea.io/gitea/modules/web"
"code.gitea.io/gitea/routers/api/v1/user"
2020-01-24 19:00:29 +00:00
"code.gitea.io/gitea/routers/api/v1/utils"
2021-12-10 16:14:24 +08:00
asymkey_service "code.gitea.io/gitea/services/asymkey"
"code.gitea.io/gitea/services/mailer"
2021-11-18 18:42:27 +01:00
user_service "code.gitea.io/gitea/services/user"
2015-12-05 17:13:13 -05:00
)
2022-01-02 21:12:35 +08:00
func parseAuthSource(ctx *context.APIContext, u *user_model.User, sourceID int64, loginName string) {
2015-12-05 17:13:13 -05:00
if sourceID == 0 {
return
}
2022-01-02 21:12:35 +08:00
source, err := auth.GetSourceByID(sourceID)
2015-12-05 17:13:13 -05:00
if err != nil {
2022-01-02 21:12:35 +08:00
if auth.IsErrSourceNotExist(err) {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusUnprocessableEntity, "", err)
2015-12-05 17:13:13 -05:00
} else {
2022-01-02 21:12:35 +08:00
ctx.Error(http.StatusInternalServerError, "auth.GetSourceByID", err)
2015-12-05 17:13:13 -05:00
}
return
}
u.LoginType = source.Type
u.LoginSource = source.ID
u.LoginName = loginName
}
2017-11-12 23:02:25 -08:00
// CreateUser create a user
2021-01-26 23:36:53 +08:00
func CreateUser(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation POST /admin/users admin adminCreateUser
// ---
// summary: Create a user
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/CreateUserOption"
// responses:
// "201":
// "$ref": "#/responses/User"
2019-12-20 18:07:12 +01:00
// "400":
// "$ref": "#/responses/error"
2020-01-09 12:56:32 +01:00
// "403":
// "$ref": "#/responses/forbidden"
2017-11-12 23:02:25 -08:00
// "422":
// "$ref": "#/responses/validationError"
2021-01-26 23:36:53 +08:00
form := web.GetForm(ctx).(*api.CreateUserOption)
u := &user_model.User{
Name: form.Username,
FullName: form.FullName,
Email: form.Email,
Passwd: form.Password,
MustChangePassword: true,
2022-01-02 21:12:35 +08:00
LoginType: auth.Plain,
}
if form.MustChangePassword != nil {
u.MustChangePassword = *form.MustChangePassword
2015-12-05 17:13:13 -05:00
}
2022-01-02 21:12:35 +08:00
parseAuthSource(ctx, u, form.SourceID, form.LoginName)
2015-12-05 17:13:13 -05:00
if ctx.Written() {
return
}
2019-10-14 22:24:26 +07:00
if !password.IsComplexEnough(form.Password) {
err := errors.New("PasswordComplexity")
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusBadRequest, "PasswordComplexity", err)
2019-10-14 22:24:26 +07:00
return
}
pwned, err := password.IsPwned(ctx, form.Password)
if pwned {
if err != nil {
log.Error(err.Error())
}
ctx.Data["Err_Password"] = true
ctx.Error(http.StatusBadRequest, "PasswordPwned", errors.New("PasswordPwned"))
return
}
overwriteDefault := &user_model.CreateUserOverwriteOptions{
IsActive: util.OptionalBoolTrue,
}
if form.Restricted != nil {
overwriteDefault.IsRestricted = util.OptionalBoolOf(*form.Restricted)
}
if form.Visibility != "" {
visibility := api.VisibilityModes[form.Visibility]
overwriteDefault.Visibility = &visibility
}
if err := user_model.CreateUser(u, overwriteDefault); err != nil {
if user_model.IsErrUserAlreadyExist(err) ||
user_model.IsErrEmailAlreadyUsed(err) ||
db.IsErrNameReserved(err) ||
db.IsErrNameCharsNotAllowed(err) ||
2022-03-15 01:39:54 +08:00
user_model.IsErrEmailCharIsNotSupported(err) ||
user_model.IsErrEmailInvalid(err) ||
db.IsErrNamePatternNotAllowed(err) {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusUnprocessableEntity, "", err)
2015-12-05 17:13:13 -05:00
} else {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusInternalServerError, "CreateUser", err)
2015-12-05 17:13:13 -05:00
}
return
}
2022-03-22 08:03:22 +01:00
log.Trace("Account created by admin (%s): %s", ctx.Doer.Name, u.Name)
2015-12-05 17:13:13 -05:00
// Send email notification.
if form.SendNotify {
2021-04-02 12:25:13 +02:00
mailer.SendRegisterNotifyMail(u)
2015-12-05 17:13:13 -05:00
}
2022-03-22 08:03:22 +01:00
ctx.JSON(http.StatusCreated, convert.ToUser(u, ctx.Doer))
2015-12-05 17:13:13 -05:00
}
2016-11-24 15:04:31 +08:00
// EditUser api for modifying a user's information
2021-01-26 23:36:53 +08:00
func EditUser(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation PATCH /admin/users/{username} admin adminEditUser
// ---
// summary: Edit an existing user
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: username
// in: path
// description: username of user to edit
// type: string
// required: true
// - name: body
// in: body
// schema:
// "$ref": "#/definitions/EditUserOption"
// responses:
// "200":
// "$ref": "#/responses/User"
// "403":
// "$ref": "#/responses/forbidden"
// "422":
// "$ref": "#/responses/validationError"
2021-01-26 23:36:53 +08:00
form := web.GetForm(ctx).(*api.EditUserOption)
2015-12-05 17:13:13 -05:00
parseAuthSource(ctx, ctx.ContextUser, form.SourceID, form.LoginName)
2015-12-05 17:13:13 -05:00
if ctx.Written() {
return
}
if len(form.Password) != 0 {
if len(form.Password) < setting.MinPasswordLength {
ctx.Error(http.StatusBadRequest, "PasswordTooShort", fmt.Errorf("password must be at least %d characters", setting.MinPasswordLength))
return
}
2019-10-14 22:24:26 +07:00
if !password.IsComplexEnough(form.Password) {
err := errors.New("PasswordComplexity")
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusBadRequest, "PasswordComplexity", err)
2019-10-14 22:24:26 +07:00
return
}
pwned, err := password.IsPwned(ctx, form.Password)
if pwned {
if err != nil {
log.Error(err.Error())
}
ctx.Data["Err_Password"] = true
ctx.Error(http.StatusBadRequest, "PasswordPwned", errors.New("PasswordPwned"))
return
}
if ctx.ContextUser.Salt, err = user_model.GetUserSalt(); err != nil {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusInternalServerError, "UpdateUser", err)
2016-12-20 14:32:02 +02:00
return
}
if err = ctx.ContextUser.SetPassword(form.Password); err != nil {
2021-01-10 19:05:18 +01:00
ctx.InternalServerError(err)
return
}
2015-12-05 17:13:13 -05:00
}
if form.MustChangePassword != nil {
ctx.ContextUser.MustChangePassword = *form.MustChangePassword
}
ctx.ContextUser.LoginName = form.LoginName
if form.FullName != nil {
ctx.ContextUser.FullName = *form.FullName
}
var emailChanged bool
if form.Email != nil {
email := strings.TrimSpace(*form.Email)
if len(email) == 0 {
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("email is not allowed to be empty string"))
return
}
if err := user_model.ValidateEmail(email); err != nil {
ctx.InternalServerError(err)
return
}
emailChanged = !strings.EqualFold(ctx.ContextUser.Email, email)
ctx.ContextUser.Email = email
}
if form.Website != nil {
ctx.ContextUser.Website = *form.Website
}
if form.Location != nil {
ctx.ContextUser.Location = *form.Location
}
if form.Description != nil {
ctx.ContextUser.Description = *form.Description
}
2015-12-05 17:13:13 -05:00
if form.Active != nil {
ctx.ContextUser.IsActive = *form.Active
2015-12-05 17:13:13 -05:00
}
if len(form.Visibility) != 0 {
ctx.ContextUser.Visibility = api.VisibilityModes[form.Visibility]
}
2015-12-05 17:13:13 -05:00
if form.Admin != nil {
ctx.ContextUser.IsAdmin = *form.Admin
2015-12-05 17:13:13 -05:00
}
if form.AllowGitHook != nil {
ctx.ContextUser.AllowGitHook = *form.AllowGitHook
2015-12-05 17:13:13 -05:00
}
if form.AllowImportLocal != nil {
ctx.ContextUser.AllowImportLocal = *form.AllowImportLocal
2015-12-05 17:13:13 -05:00
}
2016-08-11 20:49:31 +02:00
if form.MaxRepoCreation != nil {
ctx.ContextUser.MaxRepoCreation = *form.MaxRepoCreation
2016-08-11 20:49:31 +02:00
}
if form.AllowCreateOrganization != nil {
ctx.ContextUser.AllowCreateOrganization = *form.AllowCreateOrganization
}
if form.ProhibitLogin != nil {
ctx.ContextUser.ProhibitLogin = *form.ProhibitLogin
}
2021-02-18 09:25:35 +01:00
if form.Restricted != nil {
ctx.ContextUser.IsRestricted = *form.Restricted
2021-02-18 09:25:35 +01:00
}
2015-12-05 17:13:13 -05:00
if err := user_model.UpdateUser(ctx, ctx.ContextUser, emailChanged); err != nil {
2022-03-15 01:39:54 +08:00
if user_model.IsErrEmailAlreadyUsed(err) ||
user_model.IsErrEmailCharIsNotSupported(err) ||
user_model.IsErrEmailInvalid(err) {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusUnprocessableEntity, "", err)
2015-12-05 17:13:13 -05:00
} else {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusInternalServerError, "UpdateUser", err)
2015-12-05 17:13:13 -05:00
}
return
}
log.Trace("Account profile updated by admin (%s): %s", ctx.Doer.Name, ctx.ContextUser.Name)
2015-12-05 17:13:13 -05:00
ctx.JSON(http.StatusOK, convert.ToUser(ctx.ContextUser, ctx.Doer))
2015-12-05 17:13:13 -05:00
}
2016-11-24 15:04:31 +08:00
// DeleteUser api for deleting a user
func DeleteUser(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation DELETE /admin/users/{username} admin adminDeleteUser
// ---
// summary: Delete a user
// produces:
// - application/json
// parameters:
// - name: username
// in: path
// description: username of user to delete
// type: string
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
// "403":
// "$ref": "#/responses/forbidden"
// "422":
// "$ref": "#/responses/validationError"
2019-12-20 18:07:12 +01:00
if ctx.ContextUser.IsOrganization() {
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("%s is an organization not a user", ctx.ContextUser.Name))
2020-02-03 17:46:33 +01:00
return
}
2022-05-09 04:22:55 +08:00
// admin should not delete themself
if ctx.ContextUser.ID == ctx.Doer.ID {
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("you cannot delete yourself"))
return
}
if err := user_service.DeleteUser(ctx.ContextUser); err != nil {
2015-12-05 17:13:13 -05:00
if models.IsErrUserOwnRepos(err) ||
2022-03-30 10:42:47 +02:00
models.IsErrUserHasOrgs(err) ||
models.IsErrUserOwnPackages(err) {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusUnprocessableEntity, "", err)
2015-12-05 17:13:13 -05:00
} else {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusInternalServerError, "DeleteUser", err)
2015-12-05 17:13:13 -05:00
}
return
}
log.Trace("Account deleted by admin(%s): %s", ctx.Doer.Name, ctx.ContextUser.Name)
2015-12-05 17:13:13 -05:00
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
2015-12-05 17:13:13 -05:00
}
2016-11-24 15:04:31 +08:00
// CreatePublicKey api for creating a public key to a user
2021-01-26 23:36:53 +08:00
func CreatePublicKey(ctx *context.APIContext) {
2017-11-12 23:02:25 -08:00
// swagger:operation POST /admin/users/{username}/keys admin adminCreatePublicKey
// ---
// summary: Add a public key on behalf of a user
// consumes:
// - application/json
// produces:
// - application/json
// parameters:
// - name: username
// in: path
// description: username of the user
// type: string
// required: true
// - name: key
// in: body
// schema:
// "$ref": "#/definitions/CreateKeyOption"
2017-11-12 23:02:25 -08:00
// responses:
// "201":
// "$ref": "#/responses/PublicKey"
// "403":
// "$ref": "#/responses/forbidden"
// "422":
// "$ref": "#/responses/validationError"
2021-01-26 23:36:53 +08:00
form := web.GetForm(ctx).(*api.CreateKeyOption)
user.CreateUserPublicKey(ctx, *form, ctx.ContextUser.ID)
2015-12-05 17:13:13 -05:00
}
// DeleteUserPublicKey api for deleting a user's public key
func DeleteUserPublicKey(ctx *context.APIContext) {
// swagger:operation DELETE /admin/users/{username}/keys/{id} admin adminDeleteUserPublicKey
// ---
// summary: Delete a user's public key
// produces:
// - application/json
// parameters:
// - name: username
// in: path
// description: username of user
// type: string
// required: true
// - name: id
// in: path
// description: id of the key to delete
// type: integer
// format: int64
// required: true
// responses:
// "204":
// "$ref": "#/responses/empty"
// "403":
// "$ref": "#/responses/forbidden"
// "404":
// "$ref": "#/responses/notFound"
2019-12-20 18:07:12 +01:00
if err := asymkey_service.DeletePublicKey(ctx.ContextUser, ctx.ParamsInt64(":id")); err != nil {
2021-12-10 16:14:24 +08:00
if asymkey_model.IsErrKeyNotExist(err) {
2019-03-18 21:29:43 -05:00
ctx.NotFound()
2021-12-10 16:14:24 +08:00
} else if asymkey_model.IsErrKeyAccessDenied(err) {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusForbidden, "", "You do not have access to this key")
} else {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusInternalServerError, "DeleteUserPublicKey", err)
}
return
}
log.Trace("Key deleted by admin(%s): %s", ctx.Doer.Name, ctx.ContextUser.Name)
2019-12-20 18:07:12 +01:00
ctx.Status(http.StatusNoContent)
}
2019-01-24 04:00:19 +05:30
2022-01-20 18:46:10 +01:00
// GetAllUsers API for getting information of all the users
2019-01-24 04:00:19 +05:30
func GetAllUsers(ctx *context.APIContext) {
// swagger:operation GET /admin/users admin adminGetAllUsers
// ---
// summary: List all users
// produces:
// - application/json
2020-01-24 19:00:29 +00:00
// parameters:
// - name: page
// in: query
// description: page number of results to return (1-based)
// type: integer
// - name: limit
// in: query
// description: page size of results
2020-01-24 19:00:29 +00:00
// type: integer
2019-01-24 04:00:19 +05:30
// responses:
// "200":
// "$ref": "#/responses/UserList"
// "403":
// "$ref": "#/responses/forbidden"
2019-12-20 18:07:12 +01:00
listOptions := utils.GetListOptions(ctx)
users, maxResults, err := user_model.SearchUsers(&user_model.SearchUserOptions{
2022-03-22 08:03:22 +01:00
Actor: ctx.Doer,
Type: user_model.UserTypeIndividual,
OrderBy: db.SearchOrderByAlphabetically,
ListOptions: listOptions,
2019-01-24 04:00:19 +05:30
})
if err != nil {
2019-12-20 18:07:12 +01:00
ctx.Error(http.StatusInternalServerError, "GetAllUsers", err)
2019-01-24 04:00:19 +05:30
return
}
results := make([]*api.User, len(users))
for i := range users {
2022-03-22 08:03:22 +01:00
results[i] = convert.ToUser(users[i], ctx.Doer)
}
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
2021-08-12 14:43:08 +02:00
ctx.SetTotalCountHeader(maxResults)
2019-12-20 18:07:12 +01:00
ctx.JSON(http.StatusOK, &results)
2019-01-24 04:00:19 +05:30
}