2018-05-16 22:05:00 -06:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-05-16 22:05:00 -06:00
|
|
|
|
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
2019-08-29 08:05:42 -06:00
|
|
|
"errors"
|
2021-04-05 09:30:52 -06:00
|
|
|
"net/http"
|
2021-01-17 13:48:38 -07:00
|
|
|
"time"
|
2019-08-29 08:05:42 -06:00
|
|
|
|
2018-05-16 22:05:00 -06:00
|
|
|
"code.gitea.io/gitea/models"
|
2021-11-11 00:03:30 -07:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2023-02-19 00:35:20 -07:00
|
|
|
"code.gitea.io/gitea/modules/auth/password"
|
2018-05-16 22:05:00 -06:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
2024-02-04 06:29:09 -07:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2018-05-16 22:05:00 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-08-15 08:46:21 -06:00
|
|
|
"code.gitea.io/gitea/modules/timeutil"
|
2021-01-26 08:36:53 -07:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2021-07-24 04:16:34 -06:00
|
|
|
"code.gitea.io/gitea/services/auth"
|
2024-03-07 21:28:21 -07:00
|
|
|
"code.gitea.io/gitea/services/auth/source/db"
|
|
|
|
"code.gitea.io/gitea/services/auth/source/smtp"
|
2024-02-27 00:12:22 -07:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2021-04-06 13:44:05 -06:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2019-09-23 23:02:49 -06:00
|
|
|
"code.gitea.io/gitea/services/mailer"
|
2021-11-18 10:42:27 -07:00
|
|
|
"code.gitea.io/gitea/services/user"
|
2018-05-16 22:05:00 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
tplSettingsAccount base.TplName = "user/settings/account"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Account renders change user's password, user's email and user suicide page
|
|
|
|
func Account(ctx *context.Context) {
|
2023-02-01 15:56:10 -07:00
|
|
|
ctx.Data["Title"] = ctx.Tr("settings.account")
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.Data["PageIsSettingsAccount"] = true
|
2022-03-22 01:03:22 -06:00
|
|
|
ctx.Data["Email"] = ctx.Doer.Email
|
2022-06-27 10:59:47 -06:00
|
|
|
ctx.Data["EnableNotifyMail"] = setting.Service.EnableNotifyMail
|
2018-05-16 22:05:00 -06:00
|
|
|
|
2018-06-18 12:24:45 -06:00
|
|
|
loadAccountData(ctx)
|
2018-05-16 22:05:00 -06:00
|
|
|
|
2021-04-05 09:30:52 -06:00
|
|
|
ctx.HTML(http.StatusOK, tplSettingsAccount)
|
2018-05-16 22:05:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// AccountPost response for change user's password
|
2021-01-26 08:36:53 -07:00
|
|
|
func AccountPost(ctx *context.Context) {
|
2021-04-06 13:44:05 -06:00
|
|
|
form := web.GetForm(ctx).(*forms.ChangePasswordForm)
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsSettingsAccount"] = true
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
2018-06-18 12:24:45 -06:00
|
|
|
loadAccountData(ctx)
|
|
|
|
|
2021-04-05 09:30:52 -06:00
|
|
|
ctx.HTML(http.StatusOK, tplSettingsAccount)
|
2018-05-16 22:05:00 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-04 06:29:09 -07:00
|
|
|
if ctx.Doer.IsPasswordSet() && !ctx.Doer.ValidatePassword(form.OldPassword) {
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.Flash.Error(ctx.Tr("settings.password_incorrect"))
|
|
|
|
} else if form.Password != form.Retype {
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.password_not_match"))
|
|
|
|
} else {
|
2024-02-04 06:29:09 -07:00
|
|
|
opts := &user.UpdateAuthOptions{
|
|
|
|
Password: optional.Some(form.Password),
|
|
|
|
MustChangePassword: optional.Some(false),
|
2018-05-16 22:05:00 -06:00
|
|
|
}
|
2024-02-04 06:29:09 -07:00
|
|
|
if err := user.UpdateAuth(ctx, ctx.Doer, opts); err != nil {
|
|
|
|
switch {
|
|
|
|
case errors.Is(err, password.ErrMinLength):
|
|
|
|
ctx.Flash.Error(ctx.Tr("auth.password_too_short", setting.MinPasswordLength))
|
|
|
|
case errors.Is(err, password.ErrComplexity):
|
|
|
|
ctx.Flash.Error(password.BuildComplexityError(ctx.Locale))
|
|
|
|
case errors.Is(err, password.ErrIsPwned):
|
|
|
|
ctx.Flash.Error(ctx.Tr("auth.password_pwned"))
|
|
|
|
case password.IsErrIsPwnedRequest(err):
|
|
|
|
ctx.Flash.Error(ctx.Tr("auth.password_pwned_err"))
|
|
|
|
default:
|
|
|
|
ctx.ServerError("UpdateAuth", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.change_password_success"))
|
2018-05-16 22:05:00 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
}
|
|
|
|
|
|
|
|
// EmailPost response for change user's email
|
2021-01-26 08:36:53 -07:00
|
|
|
func EmailPost(ctx *context.Context) {
|
2021-04-06 13:44:05 -06:00
|
|
|
form := web.GetForm(ctx).(*forms.AddEmailForm)
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsSettingsAccount"] = true
|
|
|
|
|
2024-02-27 03:55:13 -07:00
|
|
|
// Make email address primary.
|
2021-08-10 18:31:13 -06:00
|
|
|
if ctx.FormString("_method") == "PRIMARY" {
|
2024-02-27 03:55:13 -07:00
|
|
|
if err := user_model.MakeActiveEmailPrimary(ctx, ctx.FormInt64("id")); err != nil {
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.ServerError("MakeEmailPrimary", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-03-22 01:03:22 -06:00
|
|
|
log.Trace("Email made primary: %s", ctx.Doer.Name)
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
2020-03-02 11:25:36 -07:00
|
|
|
// Send activation Email
|
2021-08-10 18:31:13 -06:00
|
|
|
if ctx.FormString("_method") == "SENDACTIVATION" {
|
2020-03-02 11:25:36 -07:00
|
|
|
var address string
|
2023-12-19 02:29:05 -07:00
|
|
|
if ctx.Cache.IsExist("MailResendLimit_" + ctx.Doer.LowerName) {
|
2020-03-02 11:25:36 -07:00
|
|
|
log.Error("Send activation: activation still pending")
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
2021-07-13 14:59:27 -06:00
|
|
|
|
2021-07-28 19:42:15 -06:00
|
|
|
id := ctx.FormInt64("id")
|
2023-09-14 11:09:32 -06:00
|
|
|
email, err := user_model.GetEmailAddressByID(ctx, ctx.Doer.ID, id)
|
2021-07-13 14:59:27 -06:00
|
|
|
if err != nil {
|
2022-03-22 01:03:22 -06:00
|
|
|
log.Error("GetEmailAddressByID(%d,%d) error: %v", ctx.Doer.ID, id, err)
|
2021-07-13 14:59:27 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if email == nil {
|
2022-03-22 01:03:22 -06:00
|
|
|
log.Warn("Send activation failed: EmailAddress[%d] not found for user: %-v", id, ctx.Doer)
|
2021-07-13 14:59:27 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if email.IsActivated {
|
2022-03-22 01:03:22 -06:00
|
|
|
log.Debug("Send activation failed: email %s is already activated for user: %-v", email.Email, ctx.Doer)
|
2021-07-13 14:59:27 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if email.IsPrimary {
|
2022-03-22 01:03:22 -06:00
|
|
|
if ctx.Doer.IsActive && !setting.Service.RegisterEmailConfirm {
|
|
|
|
log.Debug("Send activation failed: email %s is already activated for user: %-v", email.Email, ctx.Doer)
|
2020-03-02 11:25:36 -07:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
2021-07-13 14:59:27 -06:00
|
|
|
// Only fired when the primary email is inactive (Wrong state)
|
2022-03-22 01:03:22 -06:00
|
|
|
mailer.SendActivateAccountMail(ctx.Locale, ctx.Doer)
|
2020-03-02 11:25:36 -07:00
|
|
|
} else {
|
2024-02-04 06:29:09 -07:00
|
|
|
mailer.SendActivateEmailMail(ctx.Doer, email.Email)
|
2020-03-02 11:25:36 -07:00
|
|
|
}
|
2021-07-13 14:59:27 -06:00
|
|
|
address = email.Email
|
2020-03-02 11:25:36 -07:00
|
|
|
|
2023-12-19 02:29:05 -07:00
|
|
|
if err := ctx.Cache.Put("MailResendLimit_"+ctx.Doer.LowerName, ctx.Doer.LowerName, 180); err != nil {
|
|
|
|
log.Error("Set cache(MailResendLimit) fail: %v", err)
|
2020-03-02 11:25:36 -07:00
|
|
|
}
|
2023-12-19 02:29:05 -07:00
|
|
|
|
2022-06-26 08:19:22 -06:00
|
|
|
ctx.Flash.Info(ctx.Tr("settings.add_email_confirmation_sent", address, timeutil.MinutesToFriendly(setting.Service.ActiveCodeLives, ctx.Locale)))
|
2020-03-02 11:25:36 -07:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
2019-08-29 08:05:42 -06:00
|
|
|
// Set Email Notification Preference
|
2021-08-10 18:31:13 -06:00
|
|
|
if ctx.FormString("_method") == "NOTIFICATION" {
|
|
|
|
preference := ctx.FormString("preference")
|
2021-11-24 02:49:20 -07:00
|
|
|
if !(preference == user_model.EmailNotificationsEnabled ||
|
|
|
|
preference == user_model.EmailNotificationsOnMention ||
|
2022-07-28 02:30:12 -06:00
|
|
|
preference == user_model.EmailNotificationsDisabled ||
|
|
|
|
preference == user_model.EmailNotificationsAndYourOwn) {
|
2022-03-22 01:03:22 -06:00
|
|
|
log.Error("Email notifications preference change returned unrecognized option %s: %s", preference, ctx.Doer.Name)
|
2019-08-29 08:05:42 -06:00
|
|
|
ctx.ServerError("SetEmailPreference", errors.New("option unrecognized"))
|
|
|
|
return
|
|
|
|
}
|
2024-02-04 06:29:09 -07:00
|
|
|
opts := &user.UpdateOptions{
|
|
|
|
EmailNotificationsPreference: optional.Some(preference),
|
|
|
|
}
|
|
|
|
if err := user.UpdateUser(ctx, ctx.Doer, opts); err != nil {
|
2019-08-29 08:05:42 -06:00
|
|
|
log.Error("Set Email Notifications failed: %v", err)
|
2024-02-04 06:29:09 -07:00
|
|
|
ctx.ServerError("UpdateUser", err)
|
2019-08-29 08:05:42 -06:00
|
|
|
return
|
|
|
|
}
|
2022-03-22 01:03:22 -06:00
|
|
|
log.Trace("Email notifications preference made %s: %s", preference, ctx.Doer.Name)
|
2020-04-09 11:22:17 -06:00
|
|
|
ctx.Flash.Success(ctx.Tr("settings.email_preference_set_success"))
|
2019-08-29 08:05:42 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
2018-05-16 22:05:00 -06:00
|
|
|
|
|
|
|
if ctx.HasError() {
|
2018-06-18 12:24:45 -06:00
|
|
|
loadAccountData(ctx)
|
|
|
|
|
2021-04-05 09:30:52 -06:00
|
|
|
ctx.HTML(http.StatusOK, tplSettingsAccount)
|
2018-05-16 22:05:00 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-04 06:29:09 -07:00
|
|
|
if err := user.AddEmailAddresses(ctx, ctx.Doer, []string{form.Email}); err != nil {
|
2021-11-11 00:03:30 -07:00
|
|
|
if user_model.IsErrEmailAlreadyUsed(err) {
|
2018-06-18 12:24:45 -06:00
|
|
|
loadAccountData(ctx)
|
|
|
|
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.email_been_used"), tplSettingsAccount, &form)
|
2024-02-04 06:29:09 -07:00
|
|
|
} else if user_model.IsErrEmailCharIsNotSupported(err) || user_model.IsErrEmailInvalid(err) {
|
2020-11-14 09:53:43 -07:00
|
|
|
loadAccountData(ctx)
|
|
|
|
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.email_invalid"), tplSettingsAccount, &form)
|
2024-02-04 06:29:09 -07:00
|
|
|
} else {
|
|
|
|
ctx.ServerError("AddEmailAddresses", err)
|
2018-05-16 22:05:00 -06:00
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send confirmation email
|
|
|
|
if setting.Service.RegisterEmailConfirm {
|
2024-02-04 06:29:09 -07:00
|
|
|
mailer.SendActivateEmailMail(ctx.Doer, form.Email)
|
2023-12-19 02:29:05 -07:00
|
|
|
if err := ctx.Cache.Put("MailResendLimit_"+ctx.Doer.LowerName, ctx.Doer.LowerName, 180); err != nil {
|
|
|
|
log.Error("Set cache(MailResendLimit) fail: %v", err)
|
2018-05-16 22:05:00 -06:00
|
|
|
}
|
2023-12-19 02:29:05 -07:00
|
|
|
|
2024-02-04 06:29:09 -07:00
|
|
|
ctx.Flash.Info(ctx.Tr("settings.add_email_confirmation_sent", form.Email, timeutil.MinutesToFriendly(setting.Service.ActiveCodeLives, ctx.Locale)))
|
2018-05-16 22:05:00 -06:00
|
|
|
} else {
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.add_email_success"))
|
|
|
|
}
|
|
|
|
|
2024-02-04 06:29:09 -07:00
|
|
|
log.Trace("Email address added: %s", form.Email)
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteEmail response for delete user's email
|
|
|
|
func DeleteEmail(ctx *context.Context) {
|
2024-02-04 06:29:09 -07:00
|
|
|
email, err := user_model.GetEmailAddressByID(ctx, ctx.Doer.ID, ctx.FormInt64("id"))
|
|
|
|
if err != nil || email == nil {
|
|
|
|
ctx.ServerError("GetEmailAddressByID", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := user.DeleteEmailAddresses(ctx, ctx.Doer, []string{email.Email}); err != nil {
|
|
|
|
ctx.ServerError("DeleteEmailAddresses", err)
|
2018-05-16 22:05:00 -06:00
|
|
|
return
|
|
|
|
}
|
2022-03-22 01:03:22 -06:00
|
|
|
log.Trace("Email address deleted: %s", ctx.Doer.Name)
|
2018-05-16 22:05:00 -06:00
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("settings.email_deletion_success"))
|
2023-07-26 00:04:01 -06:00
|
|
|
ctx.JSONRedirect(setting.AppSubURL + "/user/settings/account")
|
2018-05-16 22:05:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteAccount render user suicide page and response for delete user himself
|
|
|
|
func DeleteAccount(ctx *context.Context) {
|
2024-03-29 09:05:41 -06:00
|
|
|
if user_model.IsFeatureDisabledWithLoginType(ctx.Doer, setting.UserFeatureDeletion) {
|
2024-02-23 00:24:04 -07:00
|
|
|
ctx.Error(http.StatusNotFound)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.Data["Title"] = ctx.Tr("settings")
|
|
|
|
ctx.Data["PageIsSettingsAccount"] = true
|
|
|
|
|
2023-09-14 11:09:32 -06:00
|
|
|
if _, _, err := auth.UserSignIn(ctx, ctx.Doer.Name, ctx.FormString("password")); err != nil {
|
2024-03-07 21:28:21 -07:00
|
|
|
switch {
|
|
|
|
case user_model.IsErrUserNotExist(err):
|
|
|
|
loadAccountData(ctx)
|
|
|
|
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.user_not_exist"), tplSettingsAccount, nil)
|
|
|
|
case errors.Is(err, smtp.ErrUnsupportedLoginType):
|
|
|
|
loadAccountData(ctx)
|
|
|
|
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.unsupported_login_type"), tplSettingsAccount, nil)
|
|
|
|
case errors.As(err, &db.ErrUserPasswordNotSet{}):
|
|
|
|
loadAccountData(ctx)
|
|
|
|
|
|
|
|
ctx.RenderWithErr(ctx.Tr("form.unset_password"), tplSettingsAccount, nil)
|
|
|
|
case errors.As(err, &db.ErrUserPasswordInvalid{}):
|
2018-06-18 12:24:45 -06:00
|
|
|
loadAccountData(ctx)
|
|
|
|
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.RenderWithErr(ctx.Tr("form.enterred_invalid_password"), tplSettingsAccount, nil)
|
2024-03-07 21:28:21 -07:00
|
|
|
default:
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.ServerError("UserSignIn", err)
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-01-14 23:51:43 -07:00
|
|
|
// admin should not delete themself
|
|
|
|
if ctx.Doer.IsAdmin {
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.admin_cannot_delete_self"))
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-07-14 01:22:09 -06:00
|
|
|
if err := user.DeleteUser(ctx, ctx.Doer, false); err != nil {
|
2018-05-16 22:05:00 -06:00
|
|
|
switch {
|
|
|
|
case models.IsErrUserOwnRepos(err):
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.still_own_repo"))
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
|
|
|
case models.IsErrUserHasOrgs(err):
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.still_has_org"))
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
2022-03-30 02:42:47 -06:00
|
|
|
case models.IsErrUserOwnPackages(err):
|
|
|
|
ctx.Flash.Error(ctx.Tr("form.still_own_packages"))
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
2024-01-14 23:51:43 -07:00
|
|
|
case models.IsErrDeleteLastAdminUser(err):
|
|
|
|
ctx.Flash.Error(ctx.Tr("auth.last_admin"))
|
|
|
|
ctx.Redirect(setting.AppSubURL + "/user/settings/account")
|
2018-05-16 22:05:00 -06:00
|
|
|
default:
|
|
|
|
ctx.ServerError("DeleteUser", err)
|
|
|
|
}
|
|
|
|
} else {
|
2022-03-22 01:03:22 -06:00
|
|
|
log.Trace("Account deleted: %s", ctx.Doer.Name)
|
2018-05-16 22:05:00 -06:00
|
|
|
ctx.Redirect(setting.AppSubURL + "/")
|
|
|
|
}
|
|
|
|
}
|
2018-06-18 12:24:45 -06:00
|
|
|
|
|
|
|
func loadAccountData(ctx *context.Context) {
|
2023-09-14 11:09:32 -06:00
|
|
|
emlist, err := user_model.GetEmailAddresses(ctx, ctx.Doer.ID)
|
2018-06-18 12:24:45 -06:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetEmailAddresses", err)
|
|
|
|
return
|
|
|
|
}
|
2020-03-02 11:25:36 -07:00
|
|
|
type UserEmail struct {
|
2021-11-11 00:03:30 -07:00
|
|
|
user_model.EmailAddress
|
2020-03-02 11:25:36 -07:00
|
|
|
CanBePrimary bool
|
|
|
|
}
|
2023-12-19 02:29:05 -07:00
|
|
|
pendingActivation := ctx.Cache.IsExist("MailResendLimit_" + ctx.Doer.LowerName)
|
2020-03-02 11:25:36 -07:00
|
|
|
emails := make([]*UserEmail, len(emlist))
|
|
|
|
for i, em := range emlist {
|
|
|
|
var email UserEmail
|
|
|
|
email.EmailAddress = *em
|
|
|
|
email.CanBePrimary = em.IsActivated
|
|
|
|
emails[i] = &email
|
|
|
|
}
|
2018-06-18 12:24:45 -06:00
|
|
|
ctx.Data["Emails"] = emails
|
2024-02-04 06:29:09 -07:00
|
|
|
ctx.Data["EmailNotificationsPreference"] = ctx.Doer.EmailNotificationsPreference
|
2020-03-02 11:25:36 -07:00
|
|
|
ctx.Data["ActivationsPending"] = pendingActivation
|
|
|
|
ctx.Data["CanAddEmails"] = !pendingActivation || !setting.Service.RegisterEmailConfirm
|
2024-03-29 09:05:41 -06:00
|
|
|
ctx.Data["UserDisabledFeatures"] = user_model.DisabledFeaturesWithLoginType(ctx.Doer)
|
2021-01-17 13:48:38 -07:00
|
|
|
|
2021-01-21 19:56:19 -07:00
|
|
|
if setting.Service.UserDeleteWithCommentsMaxTime != 0 {
|
|
|
|
ctx.Data["UserDeleteWithCommentsMaxTime"] = setting.Service.UserDeleteWithCommentsMaxTime.String()
|
2022-03-22 01:03:22 -06:00
|
|
|
ctx.Data["UserDeleteWithComments"] = ctx.Doer.CreatedUnix.AsTime().Add(setting.Service.UserDeleteWithCommentsMaxTime).After(time.Now())
|
2021-01-17 13:48:38 -07:00
|
|
|
}
|
2018-06-18 12:24:45 -06:00
|
|
|
}
|