chore: make username of userpass case insensitive

close: #1297

Just a workaround for "uppercase usernames do not work".

Usernames in different cases (like "Gawr" and "gawR") will now conflict.
This commit is contained in:
Haruue 2025-02-03 12:27:44 +09:00
parent 8c05217590
commit e1df8aa4e2
No known key found for this signature in database
GPG key ID: F6083B28CBCBC148
3 changed files with 30 additions and 5 deletions

View file

@ -755,7 +755,7 @@ func (c *serverConfig) fillAuthenticator(hyConfig *server.Config) error {
if len(c.Auth.UserPass) == 0 {
return configError{Field: "auth.userpass", Err: errors.New("empty auth userpass")}
}
hyConfig.Authenticator = &auth.UserPassAuthenticator{Users: c.Auth.UserPass}
hyConfig.Authenticator = auth.NewUserPassAuthenticator(c.Auth.UserPass)
return nil
case "http", "https":
if c.Auth.HTTP.URL == "" {