mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
70 lines
1.8 KiB
Go
70 lines
1.8 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/public/model"
|
|
)
|
|
|
|
// 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.FieldsSeq(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, asAdmin)
|
|
}
|
|
|
|
func (us *UserService) GetSanitizeOptions(asAdmin bool) map[string]bool {
|
|
options := us.config().GetSanitizeOptions()
|
|
if asAdmin {
|
|
options["email"] = true
|
|
options["fullname"] = true
|
|
options["authservice"] = true
|
|
options["authdata"] = 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
|
|
}
|