2014-08-29 07:32:52 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2020-01-24 19:00:29 +00:00
|
|
|
// Copyright 2020 The Gitea Authors.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-08-29 07:32:52 +00:00
|
|
|
|
|
|
|
package admin
|
|
|
|
|
|
|
|
import (
|
2024-02-04 13:29:09 +00:00
|
|
|
"errors"
|
2021-04-05 15:30:52 +00:00
|
|
|
"net/http"
|
2021-11-16 18:18:25 +00:00
|
|
|
"net/url"
|
2020-12-25 09:59:32 +00:00
|
|
|
"strconv"
|
2014-08-29 07:32:52 +00:00
|
|
|
"strings"
|
|
|
|
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/models"
|
2022-01-02 13:12:35 +00:00
|
|
|
"code.gitea.io/gitea/models/auth"
|
2021-09-24 11:32:56 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2023-08-31 09:21:18 +00:00
|
|
|
org_model "code.gitea.io/gitea/models/organization"
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-11 07:03:30 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2023-02-19 07:35:20 +00:00
|
|
|
"code.gitea.io/gitea/modules/auth/password"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2024-02-04 13:29:09 +00:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-10-12 18:11:35 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2024-08-28 22:56:35 +00:00
|
|
|
"code.gitea.io/gitea/modules/validation"
|
2021-01-26 15:36:53 +00:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2021-06-08 23:33:54 +00:00
|
|
|
"code.gitea.io/gitea/routers/web/explore"
|
2021-11-22 15:21:55 +00:00
|
|
|
user_setting "code.gitea.io/gitea/routers/web/user/setting"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2021-04-06 19:44:05 +00:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2019-09-24 05:02:49 +00:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2021-11-22 15:21:55 +00:00
|
|
|
user_service "code.gitea.io/gitea/services/user"
|
2014-08-29 07:32:52 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2016-11-21 03:21:24 +00:00
|
|
|
tplUsers base.TplName = "admin/user/list"
|
|
|
|
tplUserNew base.TplName = "admin/user/new"
|
2023-08-31 09:21:18 +00:00
|
|
|
tplUserView base.TplName = "admin/user/view"
|
2016-11-21 03:21:24 +00:00
|
|
|
tplUserEdit base.TplName = "admin/user/edit"
|
2014-08-29 07:32:52 +00:00
|
|
|
)
|
|
|
|
|
2023-11-09 10:11:45 +00:00
|
|
|
// UserSearchDefaultAdminSort is the default sort type for admin view
|
|
|
|
const UserSearchDefaultAdminSort = "alphabetically"
|
|
|
|
|
2016-11-21 03:21:24 +00:00
|
|
|
// Users show all the users
|
2016-03-11 16:56:52 +00:00
|
|
|
func Users(ctx *context.Context) {
|
2014-08-29 12:50:43 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.users")
|
|
|
|
ctx.Data["PageIsAdminUsers"] = true
|
|
|
|
|
2022-03-02 15:30:14 +00:00
|
|
|
extraParamStrings := map[string]string{}
|
2021-10-12 18:11:35 +00:00
|
|
|
statusFilterKeys := []string{"is_active", "is_admin", "is_restricted", "is_2fa_enabled", "is_prohibit_login"}
|
|
|
|
statusFilterMap := map[string]string{}
|
|
|
|
for _, filterKey := range statusFilterKeys {
|
2022-03-02 15:30:14 +00:00
|
|
|
paramKey := "status_filter[" + filterKey + "]"
|
|
|
|
paramVal := ctx.FormString(paramKey)
|
|
|
|
statusFilterMap[filterKey] = paramVal
|
|
|
|
if paramVal != "" {
|
|
|
|
extraParamStrings[paramKey] = paramVal
|
|
|
|
}
|
2021-10-12 18:11:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sortType := ctx.FormString("sort")
|
|
|
|
if sortType == "" {
|
2023-11-09 10:11:45 +00:00
|
|
|
sortType = UserSearchDefaultAdminSort
|
2023-05-06 14:04:55 +00:00
|
|
|
ctx.SetFormString("sort", sortType)
|
2021-10-12 18:11:35 +00:00
|
|
|
}
|
2023-07-04 18:36:08 +00:00
|
|
|
ctx.PageData["adminUserListSearchForm"] = map[string]any{
|
2021-10-12 18:11:35 +00:00
|
|
|
"StatusFilterMap": statusFilterMap,
|
|
|
|
"SortType": sortType,
|
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
explore.RenderUserSearch(ctx, &user_model.SearchUserOptions{
|
2022-03-22 07:03:22 +00:00
|
|
|
Actor: ctx.Doer,
|
2021-11-24 09:49:20 +00:00
|
|
|
Type: user_model.UserTypeIndividual,
|
2021-09-24 11:32:56 +00:00
|
|
|
ListOptions: db.ListOptions{
|
2020-01-24 19:00:29 +00:00
|
|
|
PageSize: setting.UI.Admin.UserPagingNum,
|
|
|
|
},
|
2021-10-12 18:11:35 +00:00
|
|
|
SearchByEmail: true,
|
|
|
|
IsActive: util.OptionalBoolParse(statusFilterMap["is_active"]),
|
|
|
|
IsAdmin: util.OptionalBoolParse(statusFilterMap["is_admin"]),
|
|
|
|
IsRestricted: util.OptionalBoolParse(statusFilterMap["is_restricted"]),
|
|
|
|
IsTwoFactorEnabled: util.OptionalBoolParse(statusFilterMap["is_2fa_enabled"]),
|
|
|
|
IsProhibitLogin: util.OptionalBoolParse(statusFilterMap["is_prohibit_login"]),
|
2024-05-09 13:49:37 +00:00
|
|
|
IncludeReserved: true, // administrator needs to list all accounts include reserved, bot, remote ones
|
2022-03-02 15:30:14 +00:00
|
|
|
ExtraParamStrings: extraParamStrings,
|
2017-10-24 17:36:19 +00:00
|
|
|
}, tplUsers)
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 03:21:24 +00:00
|
|
|
// NewUser render adding a new user page
|
2016-03-11 16:56:52 +00:00
|
|
|
func NewUser(ctx *context.Context) {
|
2014-08-29 07:32:52 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.users.new_account")
|
|
|
|
ctx.Data["PageIsAdminUsers"] = true
|
2021-06-26 19:53:14 +00:00
|
|
|
ctx.Data["DefaultUserVisibilityMode"] = setting.Service.DefaultUserVisibilityMode
|
2021-06-27 18:47:35 +00:00
|
|
|
ctx.Data["AllowedUserVisibilityModes"] = setting.Service.AllowedUserVisibilityModesSlice.ToVisibleTypeSlice()
|
2014-08-29 07:32:52 +00:00
|
|
|
|
2015-09-13 13:51:51 +00:00
|
|
|
ctx.Data["login_type"] = "0-0"
|
|
|
|
|
2023-11-24 03:49:41 +00:00
|
|
|
sources, err := db.Find[auth.Source](ctx, auth.FindSourcesOptions{
|
2024-03-02 15:42:31 +00:00
|
|
|
IsActive: optional.Some(true),
|
2023-11-03 01:41:00 +00:00
|
|
|
})
|
2014-08-29 07:32:52 +00:00
|
|
|
if err != nil {
|
2022-01-02 13:12:35 +00:00
|
|
|
ctx.ServerError("auth.Sources", err)
|
2014-08-29 07:32:52 +00:00
|
|
|
return
|
|
|
|
}
|
2015-09-13 13:51:51 +00:00
|
|
|
ctx.Data["Sources"] = sources
|
2015-09-25 23:45:44 +00:00
|
|
|
|
|
|
|
ctx.Data["CanSendEmail"] = setting.MailService != nil
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplUserNew)
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 03:21:24 +00:00
|
|
|
// NewUserPost response for adding a new user
|
2021-01-26 15:36:53 +00:00
|
|
|
func NewUserPost(ctx *context.Context) {
|
2021-04-06 19:44:05 +00:00
|
|
|
form := web.GetForm(ctx).(*forms.AdminCreateUserForm)
|
2014-08-29 07:32:52 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.users.new_account")
|
|
|
|
ctx.Data["PageIsAdminUsers"] = true
|
2021-06-26 19:53:14 +00:00
|
|
|
ctx.Data["DefaultUserVisibilityMode"] = setting.Service.DefaultUserVisibilityMode
|
2023-03-30 16:29:57 +00:00
|
|
|
ctx.Data["AllowedUserVisibilityModes"] = setting.Service.AllowedUserVisibilityModesSlice.ToVisibleTypeSlice()
|
2014-08-29 07:32:52 +00:00
|
|
|
|
2023-11-24 03:49:41 +00:00
|
|
|
sources, err := db.Find[auth.Source](ctx, auth.FindSourcesOptions{
|
2024-03-02 15:42:31 +00:00
|
|
|
IsActive: optional.Some(true),
|
2023-11-03 01:41:00 +00:00
|
|
|
})
|
2015-09-13 13:51:51 +00:00
|
|
|
if err != nil {
|
2022-01-02 13:12:35 +00:00
|
|
|
ctx.ServerError("auth.Sources", err)
|
2014-08-29 07:32:52 +00:00
|
|
|
return
|
|
|
|
}
|
2015-09-13 13:51:51 +00:00
|
|
|
ctx.Data["Sources"] = sources
|
2014-08-29 07:32:52 +00:00
|
|
|
|
2015-09-25 23:45:44 +00:00
|
|
|
ctx.Data["CanSendEmail"] = setting.MailService != nil
|
|
|
|
|
2015-09-13 13:51:51 +00:00
|
|
|
if ctx.HasError() {
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplUserNew)
|
2014-08-29 07:32:52 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
u := &user_model.User{
|
2019-11-04 19:10:37 +00:00
|
|
|
Name: form.UserName,
|
|
|
|
Email: form.Email,
|
|
|
|
Passwd: form.Password,
|
2022-01-02 13:12:35 +00:00
|
|
|
LoginType: auth.Plain,
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
|
2022-04-29 19:38:11 +00:00
|
|
|
overwriteDefault := &user_model.CreateUserOverwriteOptions{
|
2024-02-23 02:18:33 +00:00
|
|
|
IsActive: optional.Some(true),
|
2022-04-29 19:38:11 +00:00
|
|
|
Visibility: &form.Visibility,
|
|
|
|
}
|
|
|
|
|
2014-08-29 07:32:52 +00:00
|
|
|
if len(form.LoginType) > 0 {
|
|
|
|
fields := strings.Split(form.LoginType, "-")
|
2015-09-13 13:51:51 +00:00
|
|
|
if len(fields) == 2 {
|
2020-12-25 09:59:32 +00:00
|
|
|
lType, _ := strconv.ParseInt(fields[0], 10, 0)
|
2022-01-02 13:12:35 +00:00
|
|
|
u.LoginType = auth.Type(lType)
|
2020-12-25 09:59:32 +00:00
|
|
|
u.LoginSource, _ = strconv.ParseInt(fields[1], 10, 64)
|
2015-09-13 13:51:51 +00:00
|
|
|
u.LoginName = form.LoginName
|
|
|
|
}
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
2022-01-02 13:12:35 +00:00
|
|
|
if u.LoginType == auth.NoType || u.LoginType == auth.Plain {
|
2019-11-20 00:07:51 +00:00
|
|
|
if len(form.Password) < setting.MinPasswordLength {
|
|
|
|
ctx.Data["Err_Password"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.password_too_short", setting.MinPasswordLength), tplUserNew, &form)
|
|
|
|
return
|
|
|
|
}
|
2019-11-04 19:10:37 +00:00
|
|
|
if !password.IsComplexEnough(form.Password) {
|
2019-11-20 00:07:51 +00:00
|
|
|
ctx.Data["Err_Password"] = true
|
2023-05-08 09:36:54 +00:00
|
|
|
ctx.RenderWithErr(password.BuildComplexityError(ctx.Locale), tplUserNew, &form)
|
2019-11-04 19:10:37 +00:00
|
|
|
return
|
|
|
|
}
|
2024-02-04 13:29:09 +00:00
|
|
|
if err := password.IsPwned(ctx, form.Password); err != nil {
|
2020-09-08 22:06:39 +00:00
|
|
|
ctx.Data["Err_Password"] = true
|
2024-09-02 18:36:24 +00:00
|
|
|
errMsg := ctx.Tr("auth.password_pwned", "https://haveibeenpwned.com/Passwords")
|
2024-02-04 13:29:09 +00:00
|
|
|
if password.IsErrIsPwnedRequest(err) {
|
2020-09-08 22:06:39 +00:00
|
|
|
log.Error(err.Error())
|
|
|
|
errMsg = ctx.Tr("auth.password_pwned_err")
|
|
|
|
}
|
|
|
|
ctx.RenderWithErr(errMsg, tplUserNew, &form)
|
|
|
|
return
|
|
|
|
}
|
2019-11-04 19:10:37 +00:00
|
|
|
u.MustChangePassword = form.MustChangePassword
|
2019-10-14 15:24:26 +00:00
|
|
|
}
|
2021-06-26 19:53:14 +00:00
|
|
|
|
2024-03-05 05:55:47 +00:00
|
|
|
if err := user_model.AdminCreateUser(ctx, u, overwriteDefault); err != nil {
|
2015-03-26 21:11:47 +00:00
|
|
|
switch {
|
2021-11-24 09:49:20 +00:00
|
|
|
case user_model.IsErrUserAlreadyExist(err):
|
2014-08-29 07:32:52 +00:00
|
|
|
ctx.Data["Err_UserName"] = true
|
2016-11-21 03:21:24 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.username_been_taken"), tplUserNew, &form)
|
2021-11-11 07:03:30 +00:00
|
|
|
case user_model.IsErrEmailAlreadyUsed(err):
|
2014-08-29 07:32:52 +00:00
|
|
|
ctx.Data["Err_Email"] = true
|
2016-11-21 03:21:24 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.email_been_used"), tplUserNew, &form)
|
2024-08-28 22:56:35 +00:00
|
|
|
case validation.IsErrEmailInvalid(err), validation.IsErrEmailCharIsNotSupported(err):
|
2020-11-14 16:53:43 +00:00
|
|
|
ctx.Data["Err_Email"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.email_invalid"), tplUserNew, &form)
|
2021-11-24 09:49:20 +00:00
|
|
|
case db.IsErrNameReserved(err):
|
2014-08-29 07:32:52 +00:00
|
|
|
ctx.Data["Err_UserName"] = true
|
2021-11-24 09:49:20 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("user.form.name_reserved", err.(db.ErrNameReserved).Name), tplUserNew, &form)
|
|
|
|
case db.IsErrNamePatternNotAllowed(err):
|
2015-03-26 21:11:47 +00:00
|
|
|
ctx.Data["Err_UserName"] = true
|
2021-11-24 09:49:20 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("user.form.name_pattern_not_allowed", err.(db.ErrNamePatternNotAllowed).Pattern), tplUserNew, &form)
|
|
|
|
case db.IsErrNameCharsNotAllowed(err):
|
2020-02-23 19:52:05 +00:00
|
|
|
ctx.Data["Err_UserName"] = true
|
2021-11-24 09:49:20 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("user.form.name_chars_not_allowed", err.(db.ErrNameCharsNotAllowed).Name), tplUserNew, &form)
|
2014-08-29 07:32:52 +00:00
|
|
|
default:
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("CreateUser", err)
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2024-03-11 06:07:36 +00:00
|
|
|
|
2024-08-28 22:56:35 +00:00
|
|
|
if !validation.IsEmailDomainAllowed(u.Email) {
|
2024-03-11 06:07:36 +00:00
|
|
|
ctx.Flash.Warning(ctx.Tr("form.email_domain_is_not_allowed", u.Email))
|
|
|
|
}
|
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
log.Trace("Account created by admin (%s): %s", ctx.Doer.Name, u.Name)
|
2015-09-13 13:51:51 +00:00
|
|
|
|
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-09-25 23:45:44 +00:00
|
|
|
}
|
|
|
|
|
2015-09-13 13:51:51 +00:00
|
|
|
ctx.Flash.Success(ctx.Tr("admin.users.new_success", u.Name))
|
2021-11-16 18:18:25 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users/" + strconv.FormatInt(u.ID, 10))
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
|
2021-11-24 09:49:20 +00:00
|
|
|
func prepareUserInfo(ctx *context.Context) *user_model.User {
|
2022-12-03 02:48:26 +00:00
|
|
|
u, err := user_model.GetUserByID(ctx, ctx.ParamsInt64(":userid"))
|
2014-08-29 07:32:52 +00:00
|
|
|
if err != nil {
|
2022-08-29 13:44:39 +00:00
|
|
|
if user_model.IsErrUserNotExist(err) {
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users")
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("GetUserByID", err)
|
|
|
|
}
|
2015-09-13 15:07:21 +00:00
|
|
|
return nil
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
ctx.Data["User"] = u
|
2015-09-13 13:51:51 +00:00
|
|
|
|
2015-09-13 15:07:21 +00:00
|
|
|
if u.LoginSource > 0 {
|
2023-10-11 04:24:07 +00:00
|
|
|
ctx.Data["LoginSource"], err = auth.GetSourceByID(ctx, u.LoginSource)
|
2015-09-13 15:07:21 +00:00
|
|
|
if err != nil {
|
2022-01-02 13:12:35 +00:00
|
|
|
ctx.ServerError("auth.GetSourceByID", err)
|
2015-09-13 15:07:21 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
} else {
|
2022-01-02 13:12:35 +00:00
|
|
|
ctx.Data["LoginSource"] = &auth.Source{}
|
2015-09-13 15:07:21 +00:00
|
|
|
}
|
|
|
|
|
2023-11-24 03:49:41 +00:00
|
|
|
sources, err := db.Find[auth.Source](ctx, auth.FindSourcesOptions{})
|
2014-08-29 07:32:52 +00:00
|
|
|
if err != nil {
|
2022-01-02 13:12:35 +00:00
|
|
|
ctx.ServerError("auth.Sources", err)
|
2015-09-13 15:07:21 +00:00
|
|
|
return nil
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
2015-09-13 15:07:21 +00:00
|
|
|
ctx.Data["Sources"] = sources
|
|
|
|
|
2023-09-15 06:13:19 +00:00
|
|
|
hasTOTP, err := auth.HasTwoFactorByUID(ctx, u.ID)
|
2021-01-05 13:54:48 +00:00
|
|
|
if err != nil {
|
2022-03-02 00:24:31 +00:00
|
|
|
ctx.ServerError("auth.HasTwoFactorByUID", err)
|
|
|
|
return nil
|
|
|
|
}
|
2023-09-16 14:39:12 +00:00
|
|
|
hasWebAuthn, err := auth.HasWebAuthnRegistrationsByUID(ctx, u.ID)
|
2022-03-02 00:24:31 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("auth.HasWebAuthnRegistrationsByUID", err)
|
|
|
|
return nil
|
2021-01-05 13:54:48 +00:00
|
|
|
}
|
2022-03-02 00:24:31 +00:00
|
|
|
ctx.Data["TwoFactorEnabled"] = hasTOTP || hasWebAuthn
|
2021-01-05 13:54:48 +00:00
|
|
|
|
2015-09-13 15:07:21 +00:00
|
|
|
return u
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
|
2023-08-31 09:21:18 +00:00
|
|
|
func ViewUser(ctx *context.Context) {
|
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.users.details")
|
|
|
|
ctx.Data["PageIsAdminUsers"] = true
|
|
|
|
ctx.Data["DisableRegularOrgCreation"] = setting.Admin.DisableRegularOrgCreation
|
|
|
|
ctx.Data["DisableMigrations"] = setting.Repository.DisableMigrations
|
|
|
|
ctx.Data["AllowedUserVisibilityModes"] = setting.Service.AllowedUserVisibilityModesSlice.ToVisibleTypeSlice()
|
|
|
|
|
|
|
|
u := prepareUserInfo(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
repos, count, err := repo_model.SearchRepository(ctx, &repo_model.SearchRepoOptions{
|
2024-03-22 12:53:52 +00:00
|
|
|
ListOptions: db.ListOptionsAll,
|
2023-08-31 09:21:18 +00:00
|
|
|
OwnerID: u.ID,
|
|
|
|
OrderBy: db.SearchOrderByAlphabetically,
|
|
|
|
Private: true,
|
2024-02-29 18:52:49 +00:00
|
|
|
Collaborate: optional.Some(false),
|
2023-08-31 09:21:18 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("SearchRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Repos"] = repos
|
|
|
|
ctx.Data["ReposTotal"] = int(count)
|
|
|
|
|
2023-09-14 17:09:32 +00:00
|
|
|
emails, err := user_model.GetEmailAddresses(ctx, u.ID)
|
2023-08-31 09:21:18 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetEmailAddresses", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Emails"] = emails
|
|
|
|
ctx.Data["EmailsTotal"] = len(emails)
|
|
|
|
|
2023-11-24 03:49:41 +00:00
|
|
|
orgs, err := db.Find[org_model.Organization](ctx, org_model.FindOrgOptions{
|
2024-03-22 12:53:52 +00:00
|
|
|
ListOptions: db.ListOptionsAll,
|
2023-08-31 09:21:18 +00:00
|
|
|
UserID: u.ID,
|
|
|
|
IncludePrivate: true,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("FindOrgs", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Users"] = orgs // needed to be able to use explore/user_list template
|
|
|
|
ctx.Data["OrgsTotal"] = len(orgs)
|
|
|
|
|
|
|
|
ctx.HTML(http.StatusOK, tplUserView)
|
|
|
|
}
|
|
|
|
|
2023-10-05 01:08:19 +00:00
|
|
|
func editUserCommon(ctx *context.Context) {
|
2014-08-29 07:32:52 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("admin.users.edit_account")
|
|
|
|
ctx.Data["PageIsAdminUsers"] = true
|
2017-02-14 12:16:00 +00:00
|
|
|
ctx.Data["DisableRegularOrgCreation"] = setting.Admin.DisableRegularOrgCreation
|
2020-12-21 14:39:41 +00:00
|
|
|
ctx.Data["DisableMigrations"] = setting.Repository.DisableMigrations
|
2021-06-27 18:47:35 +00:00
|
|
|
ctx.Data["AllowedUserVisibilityModes"] = setting.Service.AllowedUserVisibilityModesSlice.ToVisibleTypeSlice()
|
2023-10-05 01:08:19 +00:00
|
|
|
ctx.Data["DisableGravatar"] = setting.Config().Picture.DisableGravatar.Value(ctx)
|
|
|
|
}
|
2014-08-29 07:32:52 +00:00
|
|
|
|
2023-10-05 01:08:19 +00:00
|
|
|
// EditUser show editing user page
|
|
|
|
func EditUser(ctx *context.Context) {
|
|
|
|
editUserCommon(ctx)
|
2015-09-13 15:07:21 +00:00
|
|
|
prepareUserInfo(ctx)
|
|
|
|
if ctx.Written() {
|
2014-08-29 07:32:52 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplUserEdit)
|
2015-09-13 15:07:21 +00:00
|
|
|
}
|
|
|
|
|
2021-07-08 11:38:13 +00:00
|
|
|
// EditUserPost response for editing user
|
2021-01-26 15:36:53 +00:00
|
|
|
func EditUserPost(ctx *context.Context) {
|
2023-10-05 01:08:19 +00:00
|
|
|
editUserCommon(ctx)
|
2015-09-13 15:07:21 +00:00
|
|
|
u := prepareUserInfo(ctx)
|
|
|
|
if ctx.Written() {
|
2014-08-29 07:32:52 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-10-05 01:08:19 +00:00
|
|
|
form := web.GetForm(ctx).(*forms.AdminEditUserForm)
|
2014-08-29 07:32:52 +00:00
|
|
|
if ctx.HasError() {
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplUserEdit)
|
2014-08-29 07:32:52 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-04 13:29:09 +00:00
|
|
|
if form.UserName != "" {
|
|
|
|
if err := user_service.RenameUser(ctx, u, form.UserName); err != nil {
|
|
|
|
switch {
|
|
|
|
case user_model.IsErrUserIsNotLocal(err):
|
|
|
|
ctx.Data["Err_UserName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.username_change_not_local_user"), tplUserEdit, &form)
|
|
|
|
case user_model.IsErrUserAlreadyExist(err):
|
|
|
|
ctx.Data["Err_UserName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.username_been_taken"), tplUserEdit, &form)
|
|
|
|
case db.IsErrNameReserved(err):
|
|
|
|
ctx.Data["Err_UserName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("user.form.name_reserved", form.UserName), tplUserEdit, &form)
|
|
|
|
case db.IsErrNamePatternNotAllowed(err):
|
|
|
|
ctx.Data["Err_UserName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("user.form.name_pattern_not_allowed", form.UserName), tplUserEdit, &form)
|
|
|
|
case db.IsErrNameCharsNotAllowed(err):
|
|
|
|
ctx.Data["Err_UserName"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("user.form.name_chars_not_allowed", form.UserName), tplUserEdit, &form)
|
|
|
|
default:
|
|
|
|
ctx.ServerError("RenameUser", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
authOpts := &user_service.UpdateAuthOptions{
|
|
|
|
Password: optional.FromNonDefault(form.Password),
|
|
|
|
LoginName: optional.Some(form.LoginName),
|
|
|
|
}
|
|
|
|
|
|
|
|
// skip self Prohibit Login
|
|
|
|
if ctx.Doer.ID == u.ID {
|
|
|
|
authOpts.ProhibitLogin = optional.Some(false)
|
|
|
|
} else {
|
|
|
|
authOpts.ProhibitLogin = optional.Some(form.ProhibitLogin)
|
|
|
|
}
|
|
|
|
|
2015-09-13 15:07:21 +00:00
|
|
|
fields := strings.Split(form.LoginType, "-")
|
|
|
|
if len(fields) == 2 {
|
2022-01-02 13:12:35 +00:00
|
|
|
authSource, _ := strconv.ParseInt(fields[1], 10, 64)
|
2015-09-13 15:07:21 +00:00
|
|
|
|
2024-02-04 13:29:09 +00:00
|
|
|
authOpts.LoginSource = optional.Some(authSource)
|
2015-09-13 15:07:21 +00:00
|
|
|
}
|
|
|
|
|
2024-02-04 13:29:09 +00:00
|
|
|
if err := user_service.UpdateAuth(ctx, u, authOpts); err != nil {
|
|
|
|
switch {
|
|
|
|
case errors.Is(err, password.ErrMinLength):
|
2019-11-20 00:07:51 +00:00
|
|
|
ctx.Data["Err_Password"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.password_too_short", setting.MinPasswordLength), tplUserEdit, &form)
|
2024-02-04 13:29:09 +00:00
|
|
|
case errors.Is(err, password.ErrComplexity):
|
|
|
|
ctx.Data["Err_Password"] = true
|
2023-05-08 09:36:54 +00:00
|
|
|
ctx.RenderWithErr(password.BuildComplexityError(ctx.Locale), tplUserEdit, &form)
|
2024-02-04 13:29:09 +00:00
|
|
|
case errors.Is(err, password.ErrIsPwned):
|
2020-09-08 22:06:39 +00:00
|
|
|
ctx.Data["Err_Password"] = true
|
2024-09-02 18:36:24 +00:00
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.password_pwned", "https://haveibeenpwned.com/Passwords"), tplUserEdit, &form)
|
2024-02-04 13:29:09 +00:00
|
|
|
case password.IsErrIsPwnedRequest(err):
|
|
|
|
ctx.Data["Err_Password"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.password_pwned_err"), tplUserEdit, &form)
|
|
|
|
default:
|
|
|
|
ctx.ServerError("UpdateUser", err)
|
2020-09-08 22:06:39 +00:00
|
|
|
}
|
2024-02-04 13:29:09 +00:00
|
|
|
return
|
|
|
|
}
|
2021-11-26 01:56:16 +00:00
|
|
|
|
2024-02-04 13:29:09 +00:00
|
|
|
if form.Email != "" {
|
2024-03-05 16:51:56 +00:00
|
|
|
if err := user_service.AdminAddOrSetPrimaryEmailAddress(ctx, u, form.Email); err != nil {
|
2024-02-04 13:29:09 +00:00
|
|
|
switch {
|
2024-08-28 22:56:35 +00:00
|
|
|
case validation.IsErrEmailCharIsNotSupported(err), validation.IsErrEmailInvalid(err):
|
2024-02-04 13:29:09 +00:00
|
|
|
ctx.Data["Err_Email"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.email_invalid"), tplUserEdit, &form)
|
|
|
|
case user_model.IsErrEmailAlreadyUsed(err):
|
|
|
|
ctx.Data["Err_Email"] = true
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.email_been_used"), tplUserEdit, &form)
|
|
|
|
default:
|
|
|
|
ctx.ServerError("AddOrSetPrimaryEmailAddress", err)
|
|
|
|
}
|
2021-11-26 01:56:16 +00:00
|
|
|
return
|
|
|
|
}
|
2024-08-28 22:56:35 +00:00
|
|
|
if !validation.IsEmailDomainAllowed(form.Email) {
|
2024-03-11 06:07:36 +00:00
|
|
|
ctx.Flash.Warning(ctx.Tr("form.email_domain_is_not_allowed", form.Email))
|
|
|
|
}
|
2024-02-04 13:29:09 +00:00
|
|
|
}
|
2021-11-26 01:56:16 +00:00
|
|
|
|
2024-02-04 13:29:09 +00:00
|
|
|
opts := &user_service.UpdateOptions{
|
|
|
|
FullName: optional.Some(form.FullName),
|
|
|
|
Website: optional.Some(form.Website),
|
|
|
|
Location: optional.Some(form.Location),
|
2024-02-29 12:55:52 +00:00
|
|
|
Pronouns: optional.Some(form.Pronouns),
|
2024-02-04 13:29:09 +00:00
|
|
|
IsActive: optional.Some(form.Active),
|
|
|
|
IsAdmin: optional.Some(form.Admin),
|
|
|
|
AllowGitHook: optional.Some(form.AllowGitHook),
|
|
|
|
AllowImportLocal: optional.Some(form.AllowImportLocal),
|
|
|
|
MaxRepoCreation: optional.Some(form.MaxRepoCreation),
|
|
|
|
AllowCreateOrganization: optional.Some(form.AllowCreateOrganization),
|
|
|
|
IsRestricted: optional.Some(form.Restricted),
|
|
|
|
Visibility: optional.Some(form.Visibility),
|
2024-03-02 21:55:02 +00:00
|
|
|
Language: optional.Some(form.Language),
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
|
2024-02-04 13:29:09 +00:00
|
|
|
if err := user_service.UpdateUser(ctx, u, opts); err != nil {
|
|
|
|
if models.IsErrDeleteLastAdminUser(err) {
|
|
|
|
ctx.RenderWithErr(ctx.Tr("auth.last_admin"), tplUserEdit, &form)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("UpdateUser", err)
|
2021-01-10 12:14:02 +00:00
|
|
|
}
|
2024-02-04 13:29:09 +00:00
|
|
|
return
|
2021-01-10 12:14:02 +00:00
|
|
|
}
|
2024-02-04 13:29:09 +00:00
|
|
|
log.Trace("Account profile updated by admin (%s): %s", ctx.Doer.Name, u.Name)
|
2021-01-10 12:14:02 +00:00
|
|
|
|
2021-01-05 13:54:48 +00:00
|
|
|
if form.Reset2FA {
|
2023-09-15 06:13:19 +00:00
|
|
|
tf, err := auth.GetTwoFactorByUID(ctx, u.ID)
|
2022-01-02 13:12:35 +00:00
|
|
|
if err != nil && !auth.IsErrTwoFactorNotEnrolled(err) {
|
2022-03-02 00:24:31 +00:00
|
|
|
ctx.ServerError("auth.GetTwoFactorByUID", err)
|
2021-01-05 13:54:48 +00:00
|
|
|
return
|
2022-03-02 00:24:31 +00:00
|
|
|
} else if tf != nil {
|
2023-09-15 06:13:19 +00:00
|
|
|
if err := auth.DeleteTwoFactorByID(ctx, tf.ID, u.ID); err != nil {
|
2022-03-02 00:24:31 +00:00
|
|
|
ctx.ServerError("auth.DeleteTwoFactorByID", err)
|
|
|
|
return
|
|
|
|
}
|
2021-01-05 13:54:48 +00:00
|
|
|
}
|
|
|
|
|
2023-09-16 14:39:12 +00:00
|
|
|
wn, err := auth.GetWebAuthnCredentialsByUID(ctx, u.ID)
|
2022-03-02 00:24:31 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("auth.GetTwoFactorByUID", err)
|
2021-01-05 13:54:48 +00:00
|
|
|
return
|
|
|
|
}
|
2022-03-02 00:24:31 +00:00
|
|
|
for _, cred := range wn {
|
2023-09-16 14:39:12 +00:00
|
|
|
if _, err := auth.DeleteCredential(ctx, cred.ID, u.ID); err != nil {
|
2022-03-02 00:24:31 +00:00
|
|
|
ctx.ServerError("auth.DeleteCredential", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
2015-09-13 15:07:21 +00:00
|
|
|
|
2014-08-29 07:32:52 +00:00
|
|
|
ctx.Flash.Success(ctx.Tr("admin.users.update_profile_success"))
|
2021-11-16 18:18:25 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users/" + url.PathEscape(ctx.Params(":userid")))
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 03:21:24 +00:00
|
|
|
// DeleteUser response for deleting a user
|
2016-03-11 16:56:52 +00:00
|
|
|
func DeleteUser(ctx *context.Context) {
|
2022-12-03 02:48:26 +00:00
|
|
|
u, err := user_model.GetUserByID(ctx, ctx.ParamsInt64(":userid"))
|
2014-08-29 07:32:52 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetUserByID", err)
|
2014-08-29 07:32:52 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-05-08 20:22:55 +00:00
|
|
|
// admin should not delete themself
|
|
|
|
if u.ID == ctx.Doer.ID {
|
|
|
|
ctx.Flash.Error(ctx.Tr("admin.users.cannot_delete_self"))
|
2022-07-14 07:22:09 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users/" + url.PathEscape(ctx.Params(":userid")))
|
2022-05-08 20:22:55 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-07-14 07:22:09 +00:00
|
|
|
if err = user_service.DeleteUser(ctx, u, ctx.FormBool("purge")); err != nil {
|
2015-03-18 01:51:39 +00:00
|
|
|
switch {
|
|
|
|
case models.IsErrUserOwnRepos(err):
|
2014-08-29 07:32:52 +00:00
|
|
|
ctx.Flash.Error(ctx.Tr("admin.users.still_own_repo"))
|
2022-07-14 07:22:09 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users/" + url.PathEscape(ctx.Params(":userid")))
|
2015-03-18 01:51:39 +00:00
|
|
|
case models.IsErrUserHasOrgs(err):
|
2014-11-13 10:27:01 +00:00
|
|
|
ctx.Flash.Error(ctx.Tr("admin.users.still_has_org"))
|
2022-07-14 07:22:09 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users/" + url.PathEscape(ctx.Params(":userid")))
|
2022-03-30 08:42:47 +00:00
|
|
|
case models.IsErrUserOwnPackages(err):
|
|
|
|
ctx.Flash.Error(ctx.Tr("admin.users.still_own_packages"))
|
2024-01-15 06:51:43 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users/" + url.PathEscape(ctx.Params(":userid")))
|
|
|
|
case models.IsErrDeleteLastAdminUser(err):
|
|
|
|
ctx.Flash.Error(ctx.Tr("auth.last_admin"))
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users/" + url.PathEscape(ctx.Params(":userid")))
|
2014-08-29 07:32:52 +00:00
|
|
|
default:
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("DeleteUser", err)
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
2022-03-22 07:03:22 +00:00
|
|
|
log.Trace("Account deleted by admin (%s): %s", ctx.Doer.Name, u.Name)
|
2015-09-13 17:26:20 +00:00
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("admin.users.deletion_success"))
|
2022-07-14 07:22:09 +00:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users")
|
2014-08-29 07:32:52 +00:00
|
|
|
}
|
2021-11-16 19:13:13 +00:00
|
|
|
|
|
|
|
// AvatarPost response for change user's avatar request
|
|
|
|
func AvatarPost(ctx *context.Context) {
|
|
|
|
u := prepareUserInfo(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
form := web.GetForm(ctx).(*forms.AvatarForm)
|
2021-11-22 15:21:55 +00:00
|
|
|
if err := user_setting.UpdateAvatarSetting(ctx, form, u); err != nil {
|
2021-11-16 19:13:13 +00:00
|
|
|
ctx.Flash.Error(err.Error())
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.update_user_avatar_success"))
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/admin/users/" + strconv.FormatInt(u.ID, 10))
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteAvatar render delete avatar page
|
|
|
|
func DeleteAvatar(ctx *context.Context) {
|
|
|
|
u := prepareUserInfo(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-10-11 04:24:07 +00:00
|
|
|
if err := user_service.DeleteAvatar(ctx, u); err != nil {
|
2021-11-16 19:13:13 +00:00
|
|
|
ctx.Flash.Error(err.Error())
|
|
|
|
}
|
|
|
|
|
2023-08-23 09:36:57 +00:00
|
|
|
ctx.JSONRedirect(setting.AppSubURL + "/admin/users/" + strconv.FormatInt(u.ID, 10))
|
2021-11-16 19:13:13 +00:00
|
|
|
}
|