2015-12-05 22:13:13 +00:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2019-01-23 22:30:19 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2015-12-05 22:13:13 +00: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 15:24:26 +00:00
|
|
|
"errors"
|
2020-02-03 16:46:33 +00:00
|
|
|
"fmt"
|
2019-12-20 17:07:12 +00:00
|
|
|
"net/http"
|
2019-10-14 15:24:26 +00:00
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-11-10 04:41:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/convert"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2019-10-14 15:24:26 +00:00
|
|
|
"code.gitea.io/gitea/modules/password"
|
2019-05-11 10:21:34 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/user"
|
2020-01-24 19:00:29 +00:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/utils"
|
2019-09-24 05:02:49 +00:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2015-12-05 22:13:13 +00:00
|
|
|
)
|
|
|
|
|
2016-03-13 22:49:16 +00:00
|
|
|
func parseLoginSource(ctx *context.APIContext, u *models.User, sourceID int64, loginName string) {
|
2015-12-05 22:13:13 +00:00
|
|
|
if sourceID == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
source, err := models.GetLoginSourceByID(sourceID)
|
|
|
|
if err != nil {
|
2016-08-31 07:56:10 +00:00
|
|
|
if models.IsErrLoginSourceNotExist(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2015-12-05 22:13:13 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetLoginSourceByID", err)
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
u.LoginType = source.Type
|
|
|
|
u.LoginSource = source.ID
|
|
|
|
u.LoginName = loginName
|
|
|
|
}
|
|
|
|
|
2017-11-13 07:02:25 +00:00
|
|
|
// CreateUser create a user
|
2021-01-26 15:36:53 +00:00
|
|
|
func CreateUser(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 17:07:12 +00:00
|
|
|
// "400":
|
|
|
|
// "$ref": "#/responses/error"
|
2020-01-09 11:56:32 +00:00
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2017-11-13 07:02:25 +00:00
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.CreateUserOption)
|
2021-06-26 19:53:14 +00:00
|
|
|
|
2015-12-05 22:13:13 +00:00
|
|
|
u := &models.User{
|
2019-02-27 19:37:57 +00:00
|
|
|
Name: form.Username,
|
|
|
|
FullName: form.FullName,
|
|
|
|
Email: form.Email,
|
|
|
|
Passwd: form.Password,
|
|
|
|
MustChangePassword: true,
|
|
|
|
IsActive: true,
|
|
|
|
LoginType: models.LoginPlain,
|
|
|
|
}
|
|
|
|
if form.MustChangePassword != nil {
|
|
|
|
u.MustChangePassword = *form.MustChangePassword
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
parseLoginSource(ctx, u, form.SourceID, form.LoginName)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2019-10-14 15:24:26 +00:00
|
|
|
if !password.IsComplexEnough(form.Password) {
|
|
|
|
err := errors.New("PasswordComplexity")
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusBadRequest, "PasswordComplexity", err)
|
2019-10-14 15:24:26 +00:00
|
|
|
return
|
|
|
|
}
|
2021-05-31 06:18:11 +00:00
|
|
|
pwned, err := password.IsPwned(ctx, form.Password)
|
2020-09-08 22:06:39 +00:00
|
|
|
if pwned {
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err.Error())
|
|
|
|
}
|
|
|
|
ctx.Data["Err_Password"] = true
|
|
|
|
ctx.Error(http.StatusBadRequest, "PasswordPwned", errors.New("PasswordPwned"))
|
|
|
|
return
|
|
|
|
}
|
2021-06-26 19:53:14 +00:00
|
|
|
|
|
|
|
var overwriteDefault *models.CreateUserOverwriteOptions
|
|
|
|
if form.Visibility != "" {
|
|
|
|
overwriteDefault = &models.CreateUserOverwriteOptions{
|
|
|
|
Visibility: api.VisibilityModes[form.Visibility],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.CreateUser(u, overwriteDefault); err != nil {
|
2015-12-05 22:13:13 +00:00
|
|
|
if models.IsErrUserAlreadyExist(err) ||
|
|
|
|
models.IsErrEmailAlreadyUsed(err) ||
|
|
|
|
models.IsErrNameReserved(err) ||
|
2020-02-23 19:52:05 +00:00
|
|
|
models.IsErrNameCharsNotAllowed(err) ||
|
2020-11-14 16:53:43 +00:00
|
|
|
models.IsErrEmailInvalid(err) ||
|
2015-12-05 22:13:13 +00:00
|
|
|
models.IsErrNamePatternNotAllowed(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2015-12-05 22:13:13 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "CreateUser", err)
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Account created by admin (%s): %s", ctx.User.Name, u.Name)
|
|
|
|
|
2016-07-15 16:36:39 +00:00
|
|
|
// Send email notification.
|
2019-09-24 05:02:49 +00:00
|
|
|
if form.SendNotify {
|
2021-04-02 10:25:13 +00:00
|
|
|
mailer.SendRegisterNotifyMail(u)
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
2021-03-27 16:45:26 +00:00
|
|
|
ctx.JSON(http.StatusCreated, convert.ToUser(u, ctx.User))
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// EditUser api for modifying a user's information
|
2021-01-26 15:36:53 +00:00
|
|
|
func EditUser(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.EditUserOption)
|
2015-12-05 22:13:13 +00:00
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
parseLoginSource(ctx, u, form.SourceID, form.LoginName)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-20 01:56:42 +00:00
|
|
|
if len(form.Password) != 0 {
|
2019-10-14 15:24:26 +00:00
|
|
|
if !password.IsComplexEnough(form.Password) {
|
|
|
|
err := errors.New("PasswordComplexity")
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusBadRequest, "PasswordComplexity", err)
|
2019-10-14 15:24:26 +00:00
|
|
|
return
|
|
|
|
}
|
2021-05-31 06:18:11 +00:00
|
|
|
pwned, err := password.IsPwned(ctx, form.Password)
|
2020-09-08 22:06:39 +00:00
|
|
|
if pwned {
|
|
|
|
if err != nil {
|
|
|
|
log.Error(err.Error())
|
|
|
|
}
|
|
|
|
ctx.Data["Err_Password"] = true
|
|
|
|
ctx.Error(http.StatusBadRequest, "PasswordPwned", errors.New("PasswordPwned"))
|
|
|
|
return
|
|
|
|
}
|
2016-12-20 12:32:02 +00:00
|
|
|
if u.Salt, err = models.GetUserSalt(); err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateUser", err)
|
2016-12-20 12:32:02 +00:00
|
|
|
return
|
|
|
|
}
|
2021-01-10 18:05:18 +00:00
|
|
|
if err = u.SetPassword(form.Password); err != nil {
|
|
|
|
ctx.InternalServerError(err)
|
|
|
|
return
|
|
|
|
}
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
|
2019-02-27 19:37:57 +00:00
|
|
|
if form.MustChangePassword != nil {
|
|
|
|
u.MustChangePassword = *form.MustChangePassword
|
|
|
|
}
|
|
|
|
|
2015-12-05 22:13:13 +00:00
|
|
|
u.LoginName = form.LoginName
|
2020-11-20 01:56:42 +00:00
|
|
|
|
|
|
|
if form.FullName != nil {
|
|
|
|
u.FullName = *form.FullName
|
|
|
|
}
|
|
|
|
if form.Email != nil {
|
|
|
|
u.Email = *form.Email
|
|
|
|
if len(u.Email) == 0 {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("email is not allowed to be empty string"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if form.Website != nil {
|
|
|
|
u.Website = *form.Website
|
|
|
|
}
|
|
|
|
if form.Location != nil {
|
|
|
|
u.Location = *form.Location
|
|
|
|
}
|
2021-05-02 19:03:15 +00:00
|
|
|
if form.Description != nil {
|
|
|
|
u.Description = *form.Description
|
|
|
|
}
|
2015-12-05 22:13:13 +00:00
|
|
|
if form.Active != nil {
|
|
|
|
u.IsActive = *form.Active
|
|
|
|
}
|
2021-06-26 19:53:14 +00:00
|
|
|
if len(form.Visibility) != 0 {
|
|
|
|
u.Visibility = api.VisibilityModes[form.Visibility]
|
|
|
|
}
|
2015-12-05 22:13:13 +00:00
|
|
|
if form.Admin != nil {
|
|
|
|
u.IsAdmin = *form.Admin
|
|
|
|
}
|
|
|
|
if form.AllowGitHook != nil {
|
|
|
|
u.AllowGitHook = *form.AllowGitHook
|
|
|
|
}
|
|
|
|
if form.AllowImportLocal != nil {
|
|
|
|
u.AllowImportLocal = *form.AllowImportLocal
|
|
|
|
}
|
2016-08-11 18:49:31 +00:00
|
|
|
if form.MaxRepoCreation != nil {
|
|
|
|
u.MaxRepoCreation = *form.MaxRepoCreation
|
|
|
|
}
|
2018-08-23 23:59:47 +00:00
|
|
|
if form.AllowCreateOrganization != nil {
|
|
|
|
u.AllowCreateOrganization = *form.AllowCreateOrganization
|
|
|
|
}
|
|
|
|
if form.ProhibitLogin != nil {
|
|
|
|
u.ProhibitLogin = *form.ProhibitLogin
|
|
|
|
}
|
2021-02-18 08:25:35 +00:00
|
|
|
if form.Restricted != nil {
|
|
|
|
u.IsRestricted = *form.Restricted
|
|
|
|
}
|
2015-12-05 22:13:13 +00:00
|
|
|
|
|
|
|
if err := models.UpdateUser(u); err != nil {
|
2020-11-14 16:53:43 +00:00
|
|
|
if models.IsErrEmailAlreadyUsed(err) || models.IsErrEmailInvalid(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2015-12-05 22:13:13 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "UpdateUser", err)
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Account profile updated by admin (%s): %s", ctx.User.Name, u.Name)
|
|
|
|
|
2021-03-27 16:45:26 +00:00
|
|
|
ctx.JSON(http.StatusOK, convert.ToUser(u, ctx.User))
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// DeleteUser api for deleting a user
|
2016-03-13 22:49:16 +00:00
|
|
|
func DeleteUser(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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 17:07:12 +00:00
|
|
|
|
2015-12-05 22:13:13 +00:00
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-02-03 16:46:33 +00:00
|
|
|
if u.IsOrganization() {
|
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", fmt.Errorf("%s is an organization not a user", u.Name))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-12-05 22:13:13 +00:00
|
|
|
if err := models.DeleteUser(u); err != nil {
|
|
|
|
if models.IsErrUserOwnRepos(err) ||
|
|
|
|
models.IsErrUserHasOrgs(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusUnprocessableEntity, "", err)
|
2015-12-05 22:13:13 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteUser", err)
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Account deleted by admin(%s): %s", ctx.User.Name, u.Name)
|
|
|
|
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// CreatePublicKey api for creating a public key to a user
|
2021-01-26 15:36:53 +00:00
|
|
|
func CreatePublicKey(ctx *context.APIContext) {
|
2017-11-13 07:02:25 +00: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
|
2018-10-21 03:40:42 +00:00
|
|
|
// - name: key
|
|
|
|
// in: body
|
|
|
|
// schema:
|
|
|
|
// "$ref": "#/definitions/CreateKeyOption"
|
2017-11-13 07:02:25 +00:00
|
|
|
// responses:
|
|
|
|
// "201":
|
|
|
|
// "$ref": "#/responses/PublicKey"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "422":
|
|
|
|
// "$ref": "#/responses/validationError"
|
2021-01-26 15:36:53 +00:00
|
|
|
form := web.GetForm(ctx).(*api.CreateKeyOption)
|
2015-12-05 22:13:13 +00:00
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2021-01-26 15:36:53 +00:00
|
|
|
user.CreateUserPublicKey(ctx, *form, u.ID)
|
2015-12-05 22:13:13 +00:00
|
|
|
}
|
2017-12-06 10:27:10 +00: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
|
2018-10-21 03:40:42 +00:00
|
|
|
// format: int64
|
2017-12-06 10:27:10 +00:00
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "204":
|
|
|
|
// "$ref": "#/responses/empty"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
|
|
|
// "404":
|
|
|
|
// "$ref": "#/responses/notFound"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2017-12-06 10:27:10 +00:00
|
|
|
u := user.GetUserByParams(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := models.DeletePublicKey(u, ctx.ParamsInt64(":id")); err != nil {
|
|
|
|
if models.IsErrKeyNotExist(err) {
|
2019-03-19 02:29:43 +00:00
|
|
|
ctx.NotFound()
|
2017-12-06 10:27:10 +00:00
|
|
|
} else if models.IsErrKeyAccessDenied(err) {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusForbidden, "", "You do not have access to this key")
|
2017-12-06 10:27:10 +00:00
|
|
|
} else {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "DeleteUserPublicKey", err)
|
2017-12-06 10:27:10 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
log.Trace("Key deleted by admin(%s): %s", ctx.User.Name, u.Name)
|
|
|
|
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Status(http.StatusNoContent)
|
2017-12-06 10:27:10 +00:00
|
|
|
}
|
2019-01-23 22:30:19 +00:00
|
|
|
|
|
|
|
//GetAllUsers API for getting information of all the users
|
|
|
|
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
|
2020-06-09 04:57:38 +00:00
|
|
|
// description: page size of results
|
2020-01-24 19:00:29 +00:00
|
|
|
// type: integer
|
2019-01-23 22:30:19 +00:00
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/UserList"
|
|
|
|
// "403":
|
|
|
|
// "$ref": "#/responses/forbidden"
|
2019-12-20 17:07:12 +00:00
|
|
|
|
2020-06-21 08:22:06 +00:00
|
|
|
listOptions := utils.GetListOptions(ctx)
|
|
|
|
|
|
|
|
users, maxResults, err := models.SearchUsers(&models.SearchUserOptions{
|
2021-06-26 19:53:14 +00:00
|
|
|
Actor: ctx.User,
|
2020-01-24 19:00:29 +00:00
|
|
|
Type: models.UserTypeIndividual,
|
|
|
|
OrderBy: models.SearchOrderByAlphabetically,
|
2020-06-21 08:22:06 +00:00
|
|
|
ListOptions: listOptions,
|
2019-01-23 22:30:19 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetAllUsers", err)
|
2019-01-23 22:30:19 +00:00
|
|
|
return
|
|
|
|
}
|
2019-04-15 16:36:59 +00:00
|
|
|
|
|
|
|
results := make([]*api.User, len(users))
|
|
|
|
for i := range users {
|
2021-03-27 16:45:26 +00:00
|
|
|
results[i] = convert.ToUser(users[i], ctx.User)
|
2019-04-15 16:36:59 +00:00
|
|
|
}
|
|
|
|
|
2020-06-21 08:22:06 +00:00
|
|
|
ctx.SetLinkHeader(int(maxResults), listOptions.PageSize)
|
2021-08-12 12:43:08 +00:00
|
|
|
ctx.SetTotalCountHeader(maxResults)
|
2019-12-20 17:07:12 +00:00
|
|
|
ctx.JSON(http.StatusOK, &results)
|
2019-01-23 22:30:19 +00:00
|
|
|
}
|