mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
https://mattermost.atlassian.net/browse/MM-36271 ```release-note We bump the major version to 6.0 ```
95 lines
2.1 KiB
Go
95 lines
2.1 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package users
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/mattermost/mattermost-server/v6/model"
|
|
)
|
|
|
|
func maxInt(a, b int) int {
|
|
if a > b {
|
|
return a
|
|
}
|
|
return b
|
|
}
|
|
|
|
func (us *UserService) IsFirstUserAccount() bool {
|
|
cachedSessions, err := us.sessionCache.Len()
|
|
if err != nil {
|
|
return false
|
|
}
|
|
if cachedSessions == 0 {
|
|
count, err := us.store.Count(model.UserCountOptions{IncludeDeleted: true})
|
|
if err != nil {
|
|
return false
|
|
}
|
|
if count <= 0 {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// CheckUserDomain checks that a user's email domain matches a list of space-delimited domains as a string.
|
|
func CheckUserDomain(user *model.User, domains string) bool {
|
|
return CheckEmailDomain(user.Email, domains)
|
|
}
|
|
|
|
// CheckEmailDomain checks that an email domain matches a list of space-delimited domains as a string.
|
|
func CheckEmailDomain(email string, domains string) bool {
|
|
if domains == "" {
|
|
return true
|
|
}
|
|
|
|
domainArray := strings.Fields(strings.TrimSpace(strings.ToLower(strings.Replace(strings.Replace(domains, "@", " ", -1), ",", " ", -1))))
|
|
|
|
for _, d := range domainArray {
|
|
if strings.HasSuffix(strings.ToLower(email), "@"+d) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
func (us *UserService) sanitizeProfiles(users []*model.User, asAdmin bool) []*model.User {
|
|
for _, u := range users {
|
|
us.SanitizeProfile(u, asAdmin)
|
|
}
|
|
|
|
return users
|
|
}
|
|
|
|
func (us *UserService) SanitizeProfile(user *model.User, asAdmin bool) {
|
|
options := us.GetSanitizeOptions(asAdmin)
|
|
|
|
user.SanitizeProfile(options)
|
|
}
|
|
|
|
func (us *UserService) GetSanitizeOptions(asAdmin bool) map[string]bool {
|
|
options := us.config().GetSanitizeOptions()
|
|
if asAdmin {
|
|
options["email"] = true
|
|
options["fullname"] = true
|
|
options["authservice"] = true
|
|
}
|
|
return options
|
|
}
|
|
|
|
// IsUsernameTaken checks if the username is already used by another user. Return false if the username is invalid.
|
|
func (us *UserService) IsUsernameTaken(name string) bool {
|
|
if !model.IsValidUsername(name) {
|
|
return false
|
|
}
|
|
|
|
if _, err := us.store.GetByUsername(name); err != nil {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|