0
0
Fork 0
mirror of https://github.com/matrix-org/dendrite synced 2024-09-27 21:38:54 +02:00

Squash username to lowercase at login (#2065)

Signed-off-by: Bernard Zhao <bernard.zhao.us@gmail.com>
This commit is contained in:
nymori 2021-12-03 01:48:49 -08:00 committed by GitHub
parent 83b9cb4d79
commit 388d7a1974
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,6 +17,7 @@ package auth
import (
"context"
"net/http"
"strings"
"github.com/matrix-org/dendrite/clientapi/jsonerror"
"github.com/matrix-org/dendrite/clientapi/userutil"
@ -48,7 +49,8 @@ func (t *LoginTypePassword) Request() interface{} {
func (t *LoginTypePassword) Login(ctx context.Context, req interface{}) (*Login, *util.JSONResponse) {
r := req.(*PasswordRequest)
username := r.Username()
// Squash username to all lowercase letters
username := strings.ToLower(r.Username())
if username == "" {
return nil, &util.JSONResponse{
Code: http.StatusUnauthorized,