2021-11-11 00:03:30 -07:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-11-11 00:03:30 -07:00
|
|
|
|
|
|
|
package user
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"net/mail"
|
2022-03-14 11:39:54 -06:00
|
|
|
"regexp"
|
2021-11-11 00:03:30 -07:00
|
|
|
"strings"
|
2024-05-20 09:12:50 -06:00
|
|
|
"time"
|
2021-11-11 00:03:30 -07:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/db"
|
2021-11-28 07:11:58 -07:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
2021-11-11 00:03:30 -07:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2024-02-29 11:52:49 -07:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2021-11-11 00:03:30 -07:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2021-11-28 07:11:58 -07:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2023-08-30 09:46:49 -06:00
|
|
|
"code.gitea.io/gitea/modules/validation"
|
2021-11-11 00:03:30 -07:00
|
|
|
|
|
|
|
"xorm.io/builder"
|
|
|
|
)
|
|
|
|
|
2022-03-14 11:39:54 -06:00
|
|
|
// ErrEmailCharIsNotSupported e-mail address contains unsupported character
|
|
|
|
type ErrEmailCharIsNotSupported struct {
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrEmailCharIsNotSupported checks if an error is an ErrEmailCharIsNotSupported
|
|
|
|
func IsErrEmailCharIsNotSupported(err error) bool {
|
|
|
|
_, ok := err.(ErrEmailCharIsNotSupported)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrEmailCharIsNotSupported) Error() string {
|
|
|
|
return fmt.Sprintf("e-mail address contains unsupported character [email: %s]", err.Email)
|
|
|
|
}
|
2021-11-11 00:03:30 -07:00
|
|
|
|
2022-10-17 23:50:37 -06:00
|
|
|
func (err ErrEmailCharIsNotSupported) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2021-11-11 00:03:30 -07:00
|
|
|
// ErrEmailInvalid represents an error where the email address does not comply with RFC 5322
|
2022-10-11 20:44:09 -06:00
|
|
|
// or has a leading '-' character
|
2021-11-11 00:03:30 -07:00
|
|
|
type ErrEmailInvalid struct {
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrEmailInvalid checks if an error is an ErrEmailInvalid
|
|
|
|
func IsErrEmailInvalid(err error) bool {
|
|
|
|
_, ok := err.(ErrEmailInvalid)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrEmailInvalid) Error() string {
|
|
|
|
return fmt.Sprintf("e-mail invalid [email: %s]", err.Email)
|
|
|
|
}
|
|
|
|
|
2022-10-17 23:50:37 -06:00
|
|
|
func (err ErrEmailInvalid) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2021-11-11 00:03:30 -07:00
|
|
|
// ErrEmailAlreadyUsed represents a "EmailAlreadyUsed" kind of error.
|
|
|
|
type ErrEmailAlreadyUsed struct {
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrEmailAlreadyUsed checks if an error is a ErrEmailAlreadyUsed.
|
|
|
|
func IsErrEmailAlreadyUsed(err error) bool {
|
|
|
|
_, ok := err.(ErrEmailAlreadyUsed)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrEmailAlreadyUsed) Error() string {
|
|
|
|
return fmt.Sprintf("e-mail already in use [email: %s]", err.Email)
|
|
|
|
}
|
|
|
|
|
2022-10-17 23:50:37 -06:00
|
|
|
func (err ErrEmailAlreadyUsed) Unwrap() error {
|
|
|
|
return util.ErrAlreadyExist
|
|
|
|
}
|
|
|
|
|
2021-11-11 00:03:30 -07:00
|
|
|
// ErrEmailAddressNotExist email address not exist
|
|
|
|
type ErrEmailAddressNotExist struct {
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrEmailAddressNotExist checks if an error is an ErrEmailAddressNotExist
|
|
|
|
func IsErrEmailAddressNotExist(err error) bool {
|
|
|
|
_, ok := err.(ErrEmailAddressNotExist)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrEmailAddressNotExist) Error() string {
|
|
|
|
return fmt.Sprintf("Email address does not exist [email: %s]", err.Email)
|
|
|
|
}
|
|
|
|
|
2022-10-17 23:50:37 -06:00
|
|
|
func (err ErrEmailAddressNotExist) Unwrap() error {
|
|
|
|
return util.ErrNotExist
|
|
|
|
}
|
|
|
|
|
2021-11-11 00:03:30 -07:00
|
|
|
// ErrPrimaryEmailCannotDelete primary email address cannot be deleted
|
|
|
|
type ErrPrimaryEmailCannotDelete struct {
|
|
|
|
Email string
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsErrPrimaryEmailCannotDelete checks if an error is an ErrPrimaryEmailCannotDelete
|
|
|
|
func IsErrPrimaryEmailCannotDelete(err error) bool {
|
|
|
|
_, ok := err.(ErrPrimaryEmailCannotDelete)
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
|
|
|
func (err ErrPrimaryEmailCannotDelete) Error() string {
|
|
|
|
return fmt.Sprintf("Primary email address cannot be deleted [email: %s]", err.Email)
|
|
|
|
}
|
|
|
|
|
2022-10-17 23:50:37 -06:00
|
|
|
func (err ErrPrimaryEmailCannotDelete) Unwrap() error {
|
|
|
|
return util.ErrInvalidArgument
|
|
|
|
}
|
|
|
|
|
2021-11-11 00:03:30 -07:00
|
|
|
// EmailAddress is the list of all email addresses of a user. It also contains the
|
|
|
|
// primary email address which is saved in user table.
|
|
|
|
type EmailAddress struct {
|
|
|
|
ID int64 `xorm:"pk autoincr"`
|
|
|
|
UID int64 `xorm:"INDEX NOT NULL"`
|
|
|
|
Email string `xorm:"UNIQUE NOT NULL"`
|
|
|
|
LowerEmail string `xorm:"UNIQUE NOT NULL"`
|
|
|
|
IsActivated bool
|
|
|
|
IsPrimary bool `xorm:"DEFAULT(false) NOT NULL"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
db.RegisterModel(new(EmailAddress))
|
|
|
|
}
|
|
|
|
|
|
|
|
// BeforeInsert will be invoked by XORM before inserting a record
|
|
|
|
func (email *EmailAddress) BeforeInsert() {
|
|
|
|
if email.LowerEmail == "" {
|
|
|
|
email.LowerEmail = strings.ToLower(email.Email)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-04 06:29:09 -07:00
|
|
|
func InsertEmailAddress(ctx context.Context, email *EmailAddress) (*EmailAddress, error) {
|
|
|
|
if err := db.Insert(ctx, email); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return email, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func UpdateEmailAddress(ctx context.Context, email *EmailAddress) error {
|
|
|
|
_, err := db.GetEngine(ctx).ID(email.ID).AllCols().Update(email)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-03-14 11:39:54 -06:00
|
|
|
var emailRegexp = regexp.MustCompile("^[a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]*@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$")
|
|
|
|
|
2024-03-04 22:55:47 -07:00
|
|
|
// ValidateEmail check if email is a valid & allowed address
|
2021-11-11 00:03:30 -07:00
|
|
|
func ValidateEmail(email string) error {
|
2024-03-04 22:55:47 -07:00
|
|
|
if err := validateEmailBasic(email); err != nil {
|
|
|
|
return err
|
2023-08-30 09:46:49 -06:00
|
|
|
}
|
2024-03-04 22:55:47 -07:00
|
|
|
return validateEmailDomain(email)
|
|
|
|
}
|
2021-11-11 00:03:30 -07:00
|
|
|
|
2024-03-05 09:51:56 -07:00
|
|
|
// ValidateEmailForAdmin check if email is a valid address when admins manually add or edit users
|
2024-03-04 22:55:47 -07:00
|
|
|
func ValidateEmailForAdmin(email string) error {
|
|
|
|
return validateEmailBasic(email)
|
|
|
|
// In this case we do not need to check the email domain
|
2021-11-11 00:03:30 -07:00
|
|
|
}
|
|
|
|
|
2024-02-04 06:29:09 -07:00
|
|
|
func GetEmailAddressByEmail(ctx context.Context, email string) (*EmailAddress, error) {
|
|
|
|
ea := &EmailAddress{}
|
|
|
|
if has, err := db.GetEngine(ctx).Where("lower_email=?", strings.ToLower(email)).Get(ea); err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrEmailAddressNotExist{email}
|
|
|
|
}
|
|
|
|
return ea, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetEmailAddressOfUser(ctx context.Context, email string, uid int64) (*EmailAddress, error) {
|
|
|
|
ea := &EmailAddress{}
|
|
|
|
if has, err := db.GetEngine(ctx).Where("lower_email=? AND uid=?", strings.ToLower(email), uid).Get(ea); err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrEmailAddressNotExist{email}
|
|
|
|
}
|
|
|
|
return ea, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetPrimaryEmailAddressOfUser(ctx context.Context, uid int64) (*EmailAddress, error) {
|
|
|
|
ea := &EmailAddress{}
|
|
|
|
if has, err := db.GetEngine(ctx).Where("uid=? AND is_primary=?", uid, true).Get(ea); err != nil {
|
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, ErrEmailAddressNotExist{}
|
|
|
|
}
|
|
|
|
return ea, nil
|
|
|
|
}
|
|
|
|
|
2021-11-11 00:03:30 -07:00
|
|
|
// GetEmailAddresses returns all email addresses belongs to given user.
|
2023-09-14 11:09:32 -06:00
|
|
|
func GetEmailAddresses(ctx context.Context, uid int64) ([]*EmailAddress, error) {
|
2021-11-11 00:03:30 -07:00
|
|
|
emails := make([]*EmailAddress, 0, 5)
|
2023-09-14 11:09:32 -06:00
|
|
|
if err := db.GetEngine(ctx).
|
2021-11-11 00:03:30 -07:00
|
|
|
Where("uid=?", uid).
|
|
|
|
Asc("id").
|
|
|
|
Find(&emails); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return emails, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetEmailAddressByID gets a user's email address by ID
|
2023-09-14 11:09:32 -06:00
|
|
|
func GetEmailAddressByID(ctx context.Context, uid, id int64) (*EmailAddress, error) {
|
2021-11-11 00:03:30 -07:00
|
|
|
// User ID is required for security reasons
|
|
|
|
email := &EmailAddress{UID: uid}
|
2023-09-14 11:09:32 -06:00
|
|
|
if has, err := db.GetEngine(ctx).ID(id).Get(email); err != nil {
|
2021-11-11 00:03:30 -07:00
|
|
|
return nil, err
|
|
|
|
} else if !has {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return email, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsEmailActive check if email is activated with a different emailID
|
|
|
|
func IsEmailActive(ctx context.Context, email string, excludeEmailID int64) (bool, error) {
|
|
|
|
if len(email) == 0 {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can't filter by boolean field unless it's explicit
|
|
|
|
cond := builder.NewCond()
|
|
|
|
cond = cond.And(builder.Eq{"lower_email": strings.ToLower(email)}, builder.Neq{"id": excludeEmailID})
|
|
|
|
if setting.Service.RegisterEmailConfirm {
|
|
|
|
// Inactive (unvalidated) addresses don't count as active if email validation is required
|
|
|
|
cond = cond.And(builder.Eq{"is_activated": true})
|
|
|
|
}
|
|
|
|
|
|
|
|
var em EmailAddress
|
|
|
|
if has, err := db.GetEngine(ctx).Where(cond).Get(&em); has || err != nil {
|
|
|
|
if has {
|
|
|
|
log.Info("isEmailActive(%q, %d) found duplicate in email ID %d", email, excludeEmailID, em.ID)
|
|
|
|
}
|
|
|
|
return has, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsEmailUsed returns true if the email has been used.
|
|
|
|
func IsEmailUsed(ctx context.Context, email string) (bool, error) {
|
|
|
|
if len(email) == 0 {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return db.GetEngine(ctx).Where("lower_email=?", strings.ToLower(email)).Get(&EmailAddress{})
|
|
|
|
}
|
|
|
|
|
2021-11-28 07:11:58 -07:00
|
|
|
// ActivateEmail activates the email address to given user.
|
2023-09-14 11:09:32 -06:00
|
|
|
func ActivateEmail(ctx context.Context, email *EmailAddress) error {
|
|
|
|
ctx, committer, err := db.TxContext(ctx)
|
2021-11-28 07:11:58 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
2022-05-20 08:08:52 -06:00
|
|
|
if err := updateActivation(ctx, email, true); err != nil {
|
2021-11-28 07:11:58 -07:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return committer.Commit()
|
|
|
|
}
|
|
|
|
|
2022-05-20 08:08:52 -06:00
|
|
|
func updateActivation(ctx context.Context, email *EmailAddress, activate bool) error {
|
2022-12-02 19:48:26 -07:00
|
|
|
user, err := GetUserByID(ctx, email.UID)
|
2021-11-28 07:11:58 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if user.Rands, err = GetUserSalt(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
email.IsActivated = activate
|
2022-05-20 08:08:52 -06:00
|
|
|
if _, err := db.GetEngine(ctx).ID(email.ID).Cols("is_activated").Update(email); err != nil {
|
2021-11-28 07:11:58 -07:00
|
|
|
return err
|
|
|
|
}
|
2022-05-20 08:08:52 -06:00
|
|
|
return UpdateUserCols(ctx, user, "rands")
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
|
|
|
|
2024-02-27 03:55:13 -07:00
|
|
|
func MakeActiveEmailPrimary(ctx context.Context, emailID int64) error {
|
|
|
|
return makeEmailPrimaryInternal(ctx, emailID, true)
|
|
|
|
}
|
|
|
|
|
|
|
|
func MakeInactiveEmailPrimary(ctx context.Context, emailID int64) error {
|
|
|
|
return makeEmailPrimaryInternal(ctx, emailID, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeEmailPrimaryInternal(ctx context.Context, emailID int64, isActive bool) error {
|
|
|
|
email := &EmailAddress{}
|
|
|
|
if has, err := db.GetEngine(ctx).ID(emailID).Where(builder.Eq{"is_activated": isActive}).Get(email); err != nil {
|
2021-11-28 07:11:58 -07:00
|
|
|
return err
|
|
|
|
} else if !has {
|
2024-02-27 03:55:13 -07:00
|
|
|
return ErrEmailAddressNotExist{}
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
user := &User{}
|
2024-02-27 03:55:13 -07:00
|
|
|
if has, err := db.GetEngine(ctx).ID(email.UID).Get(user); err != nil {
|
2021-11-28 07:11:58 -07:00
|
|
|
return err
|
|
|
|
} else if !has {
|
2024-02-27 03:55:13 -07:00
|
|
|
return ErrUserNotExist{UID: email.UID}
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
|
|
|
|
2023-09-14 11:09:32 -06:00
|
|
|
ctx, committer, err := db.TxContext(ctx)
|
2021-11-28 07:11:58 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
|
|
|
sess := db.GetEngine(ctx)
|
|
|
|
|
|
|
|
// 1. Update user table
|
|
|
|
user.Email = email.Email
|
|
|
|
if _, err = sess.ID(user.ID).Cols("email").Update(user); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Update old primary email
|
|
|
|
if _, err = sess.Where("uid=? AND is_primary=?", email.UID, true).Cols("is_primary").Update(&EmailAddress{
|
|
|
|
IsPrimary: false,
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3. update new primary email
|
|
|
|
email.IsPrimary = true
|
|
|
|
if _, err = sess.ID(email.ID).Cols("is_primary").Update(email); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return committer.Commit()
|
|
|
|
}
|
|
|
|
|
2024-02-27 03:55:13 -07:00
|
|
|
// ChangeInactivePrimaryEmail replaces the inactive primary email of a given user
|
|
|
|
func ChangeInactivePrimaryEmail(ctx context.Context, uid int64, oldEmailAddr, newEmailAddr string) error {
|
|
|
|
return db.WithTx(ctx, func(ctx context.Context) error {
|
|
|
|
_, err := db.GetEngine(ctx).Where(builder.Eq{"uid": uid, "lower_email": strings.ToLower(oldEmailAddr)}).Delete(&EmailAddress{})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
newEmail, err := InsertEmailAddress(ctx, &EmailAddress{UID: uid, Email: newEmailAddr})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return MakeInactiveEmailPrimary(ctx, newEmail.ID)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-11-28 07:11:58 -07:00
|
|
|
// VerifyActiveEmailCode verifies active email code when active account
|
2023-09-14 11:09:32 -06:00
|
|
|
func VerifyActiveEmailCode(ctx context.Context, code, email string) *EmailAddress {
|
|
|
|
if user := GetVerifyUser(ctx, code); user != nil {
|
2021-11-28 07:11:58 -07:00
|
|
|
// time limit code
|
|
|
|
prefix := code[:base.TimeLimitCodeLength]
|
|
|
|
data := fmt.Sprintf("%d%s%s%s%s", user.ID, email, user.LowerName, user.Passwd, user.Rands)
|
|
|
|
|
2024-05-20 09:12:50 -06:00
|
|
|
if base.VerifyTimeLimitCode(time.Now(), data, setting.Service.ActiveCodeLives, prefix) {
|
2021-11-28 07:11:58 -07:00
|
|
|
emailAddress := &EmailAddress{UID: user.ID, Email: email}
|
2023-09-14 11:09:32 -06:00
|
|
|
if has, _ := db.GetEngine(ctx).Get(emailAddress); has {
|
2021-11-28 07:11:58 -07:00
|
|
|
return emailAddress
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SearchEmailOrderBy is used to sort the results from SearchEmails()
|
|
|
|
type SearchEmailOrderBy string
|
|
|
|
|
|
|
|
func (s SearchEmailOrderBy) String() string {
|
|
|
|
return string(s)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Strings for sorting result
|
|
|
|
const (
|
|
|
|
SearchEmailOrderByEmail SearchEmailOrderBy = "email_address.lower_email ASC, email_address.is_primary DESC, email_address.id ASC"
|
|
|
|
SearchEmailOrderByEmailReverse SearchEmailOrderBy = "email_address.lower_email DESC, email_address.is_primary ASC, email_address.id DESC"
|
|
|
|
SearchEmailOrderByName SearchEmailOrderBy = "`user`.lower_name ASC, email_address.is_primary DESC, email_address.id ASC"
|
|
|
|
SearchEmailOrderByNameReverse SearchEmailOrderBy = "`user`.lower_name DESC, email_address.is_primary ASC, email_address.id DESC"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SearchEmailOptions are options to search e-mail addresses for the admin panel
|
|
|
|
type SearchEmailOptions struct {
|
|
|
|
db.ListOptions
|
|
|
|
Keyword string
|
|
|
|
SortType SearchEmailOrderBy
|
2024-02-29 11:52:49 -07:00
|
|
|
IsPrimary optional.Option[bool]
|
|
|
|
IsActivated optional.Option[bool]
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// SearchEmailResult is an e-mail address found in the user or email_address table
|
|
|
|
type SearchEmailResult struct {
|
2024-07-25 04:11:04 -06:00
|
|
|
ID int64
|
2021-11-28 07:11:58 -07:00
|
|
|
UID int64
|
|
|
|
Email string
|
|
|
|
IsActivated bool
|
|
|
|
IsPrimary bool
|
|
|
|
// From User
|
|
|
|
Name string
|
|
|
|
FullName string
|
|
|
|
}
|
|
|
|
|
|
|
|
// SearchEmails takes options i.e. keyword and part of email name to search,
|
|
|
|
// it returns results in given range and number of total results.
|
2023-09-14 11:09:32 -06:00
|
|
|
func SearchEmails(ctx context.Context, opts *SearchEmailOptions) ([]*SearchEmailResult, int64, error) {
|
2021-11-28 07:11:58 -07:00
|
|
|
var cond builder.Cond = builder.Eq{"`user`.`type`": UserTypeIndividual}
|
|
|
|
if len(opts.Keyword) > 0 {
|
|
|
|
likeStr := "%" + strings.ToLower(opts.Keyword) + "%"
|
|
|
|
cond = cond.And(builder.Or(
|
|
|
|
builder.Like{"lower(`user`.full_name)", likeStr},
|
|
|
|
builder.Like{"`user`.lower_name", likeStr},
|
|
|
|
builder.Like{"email_address.lower_email", likeStr},
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2024-02-29 11:52:49 -07:00
|
|
|
if opts.IsPrimary.Has() {
|
|
|
|
cond = cond.And(builder.Eq{"email_address.is_primary": opts.IsPrimary.Value()})
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
|
|
|
|
2024-02-29 11:52:49 -07:00
|
|
|
if opts.IsActivated.Has() {
|
|
|
|
cond = cond.And(builder.Eq{"email_address.is_activated": opts.IsActivated.Value()})
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
|
|
|
|
2024-03-17 07:24:45 -06:00
|
|
|
count, err := db.GetEngine(ctx).Join("INNER", "`user`", "`user`.id = email_address.uid").
|
2021-11-28 07:11:58 -07:00
|
|
|
Where(cond).Count(new(EmailAddress))
|
|
|
|
if err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return nil, 0, fmt.Errorf("Count: %w", err)
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
orderby := opts.SortType.String()
|
|
|
|
if orderby == "" {
|
|
|
|
orderby = SearchEmailOrderByEmail.String()
|
|
|
|
}
|
|
|
|
|
|
|
|
opts.SetDefaultValues()
|
|
|
|
|
|
|
|
emails := make([]*SearchEmailResult, 0, opts.PageSize)
|
2023-09-14 11:09:32 -06:00
|
|
|
err = db.GetEngine(ctx).Table("email_address").
|
2021-11-28 07:11:58 -07:00
|
|
|
Select("email_address.*, `user`.name, `user`.full_name").
|
2024-03-17 07:24:45 -06:00
|
|
|
Join("INNER", "`user`", "`user`.id = email_address.uid").
|
2021-11-28 07:11:58 -07:00
|
|
|
Where(cond).
|
|
|
|
OrderBy(orderby).
|
|
|
|
Limit(opts.PageSize, (opts.Page-1)*opts.PageSize).
|
|
|
|
Find(&emails)
|
|
|
|
|
|
|
|
return emails, count, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// ActivateUserEmail will change the activated state of an email address,
|
|
|
|
// either primary or secondary (all in the email_address table)
|
2023-09-14 11:09:32 -06:00
|
|
|
func ActivateUserEmail(ctx context.Context, userID int64, email string, activate bool) (err error) {
|
|
|
|
ctx, committer, err := db.TxContext(ctx)
|
2021-11-28 07:11:58 -07:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer committer.Close()
|
|
|
|
|
|
|
|
// Activate/deactivate a user's secondary email address
|
|
|
|
// First check if there's another user active with the same address
|
2023-12-07 00:27:36 -07:00
|
|
|
addr, exist, err := db.Get[EmailAddress](ctx, builder.Eq{"uid": userID, "lower_email": strings.ToLower(email)})
|
|
|
|
if err != nil {
|
2021-11-28 07:11:58 -07:00
|
|
|
return err
|
2023-12-07 00:27:36 -07:00
|
|
|
} else if !exist {
|
2021-11-28 07:11:58 -07:00
|
|
|
return fmt.Errorf("no such email: %d (%s)", userID, email)
|
|
|
|
}
|
2023-12-07 00:27:36 -07:00
|
|
|
|
2021-11-28 07:11:58 -07:00
|
|
|
if addr.IsActivated == activate {
|
|
|
|
// Already in the desired state; no action
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if activate {
|
|
|
|
if used, err := IsEmailActive(ctx, email, addr.ID); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("unable to check isEmailActive() for %s: %w", email, err)
|
2021-11-28 07:11:58 -07:00
|
|
|
} else if used {
|
|
|
|
return ErrEmailAlreadyUsed{Email: email}
|
|
|
|
}
|
|
|
|
}
|
2023-12-07 00:27:36 -07:00
|
|
|
if err = updateActivation(ctx, addr, activate); err != nil {
|
2021-11-28 07:11:58 -07:00
|
|
|
return fmt.Errorf("unable to updateActivation() for %d:%s: %w", addr.ID, addr.Email, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Activate/deactivate a user's primary email address and account
|
|
|
|
if addr.IsPrimary {
|
2023-12-07 00:27:36 -07:00
|
|
|
user, exist, err := db.Get[User](ctx, builder.Eq{"id": userID, "email": email})
|
|
|
|
if err != nil {
|
2021-11-28 07:11:58 -07:00
|
|
|
return err
|
2023-12-07 00:27:36 -07:00
|
|
|
} else if !exist {
|
2021-11-28 07:11:58 -07:00
|
|
|
return fmt.Errorf("no user with ID: %d and Email: %s", userID, email)
|
|
|
|
}
|
2023-12-07 00:27:36 -07:00
|
|
|
|
2021-11-28 07:11:58 -07:00
|
|
|
// The user's activation state should be synchronized with the primary email
|
|
|
|
if user.IsActive != activate {
|
|
|
|
user.IsActive = activate
|
|
|
|
if user.Rands, err = GetUserSalt(); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("unable to generate salt: %w", err)
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
2023-12-07 00:27:36 -07:00
|
|
|
if err = UpdateUserCols(ctx, user, "is_active", "rands"); err != nil {
|
2022-10-24 13:29:17 -06:00
|
|
|
return fmt.Errorf("unable to updateUserCols() for user ID: %d: %w", userID, err)
|
2021-11-28 07:11:58 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return committer.Commit()
|
|
|
|
}
|
2024-03-04 22:55:47 -07:00
|
|
|
|
|
|
|
// validateEmailBasic checks whether the email complies with the rules
|
|
|
|
func validateEmailBasic(email string) error {
|
|
|
|
if len(email) == 0 {
|
|
|
|
return ErrEmailInvalid{email}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !emailRegexp.MatchString(email) {
|
|
|
|
return ErrEmailCharIsNotSupported{email}
|
|
|
|
}
|
|
|
|
|
|
|
|
if email[0] == '-' {
|
|
|
|
return ErrEmailInvalid{email}
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := mail.ParseAddress(email); err != nil {
|
|
|
|
return ErrEmailInvalid{email}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// validateEmailDomain checks whether the email domain is allowed or blocked
|
|
|
|
func validateEmailDomain(email string) error {
|
2024-03-11 00:07:36 -06:00
|
|
|
if !IsEmailDomainAllowed(email) {
|
2024-03-04 22:55:47 -07:00
|
|
|
return ErrEmailInvalid{email}
|
|
|
|
}
|
|
|
|
|
2024-03-11 00:07:36 -06:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsEmailDomainAllowed(email string) bool {
|
|
|
|
if len(setting.Service.EmailDomainAllowList) == 0 {
|
|
|
|
return !validation.IsEmailDomainListed(setting.Service.EmailDomainBlockList, email)
|
2024-03-04 22:55:47 -07:00
|
|
|
}
|
|
|
|
|
2024-03-11 00:07:36 -06:00
|
|
|
return validation.IsEmailDomainListed(setting.Service.EmailDomainAllowList, email)
|
2024-03-04 22:55:47 -07:00
|
|
|
}
|