Revert "Usernames must start with a letter (#5581)"

This reverts commit 2e911b77c3.
Этот коммит содержится в:
Christopher Speller
2017-04-18 17:37:25 -04:00
родитель 86c7e7cacd
Коммит 5398c82e1b
12 изменённых файлов: 85 добавлений и 104 удалений

Просмотреть файл

@@ -10,7 +10,6 @@ import (
"net/http"
"regexp"
"strings"
"unicode"
"unicode/utf8"
"golang.org/x/crypto/bcrypt"
@@ -152,7 +151,7 @@ func (u *User) PreSave() {
}
if u.Username == "" {
u.Username = "n" + NewId()
u.Username = NewId()
}
if u.AuthData != nil && *u.AuthData == "" {
@@ -582,10 +581,6 @@ func IsValidUsername(s string) bool {
return false
}
if !unicode.IsLetter(rune(s[0])) {
return false
}
for _, restrictedUsername := range restrictedUsernames {
if s == restrictedUsername {
return false

Просмотреть файл

@@ -97,9 +97,9 @@ func TestUserIsValid(t *testing.T) {
t.Fatal()
}
user.Username = "n" + NewId()
user.Email = strings.Repeat("a", 129)
if err := user.IsValid(); !HasExpectedUserIsValidError(err, "email", user.Id) {
user.Username = NewId()
user.Email = strings.Repeat("01234567890", 20)
if err := user.IsValid(); err == nil {
t.Fatal()
}
@@ -204,9 +204,9 @@ var usernames = []struct {
{"spin-punch", true},
{"sp", true},
{"s", true},
{"1spin-punch", false},
{"-spin-punch", false},
{".spin-punch", false},
{"1spin-punch", true},
{"-spin-punch", true},
{".spin-punch", true},
{"Spin-punch", false},
{"spin punch-", false},
{"spin_punch", true},