mirror of https://github.com/databricks/cli.git
21 lines
616 B
Go
21 lines
616 B
Go
package auth
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/databricks/cli/libs/textutil"
|
|
"github.com/databricks/databricks-sdk-go/service/iam"
|
|
)
|
|
|
|
// Get a short-form username, based on the user's primary email address.
|
|
// We leave the full range of unicode letters in tact, but remove all "special" characters,
|
|
// including dots, which are not supported in e.g. experiment names.
|
|
func GetShortUserName(user *iam.User) string {
|
|
name := user.UserName
|
|
if IsServicePrincipal(user.UserName) && user.DisplayName != "" {
|
|
name = user.DisplayName
|
|
}
|
|
local, _, _ := strings.Cut(name, "@")
|
|
return textutil.NormalizeString(local)
|
|
}
|