mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-01-07 01:16:35 +01:00
allow + in usernames
This commit is contained in:
parent
130039f5c8
commit
e4d22ebd8b
2 changed files with 13 additions and 1 deletions
|
@ -241,7 +241,7 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
allowedUsernameRegex = regexp.MustCompile(`^[-_.@a-zA-Z0-9]+$`) // Does not include Everyone (*)
|
allowedUsernameRegex = regexp.MustCompile(`^[-_.+@a-zA-Z0-9]+$`) // Does not include Everyone (*)
|
||||||
allowedTopicRegex = regexp.MustCompile(`^[-_A-Za-z0-9]{1,64}$`) // No '*'
|
allowedTopicRegex = regexp.MustCompile(`^[-_A-Za-z0-9]{1,64}$`) // No '*'
|
||||||
allowedTopicPatternRegex = regexp.MustCompile(`^[-_*A-Za-z0-9]{1,64}$`) // Adds '*' for wildcards!
|
allowedTopicPatternRegex = regexp.MustCompile(`^[-_*A-Za-z0-9]{1,64}$`) // Adds '*' for wildcards!
|
||||||
allowedTierRegex = regexp.MustCompile(`^[-_A-Za-z0-9]{1,64}$`)
|
allowedTierRegex = regexp.MustCompile(`^[-_A-Za-z0-9]{1,64}$`)
|
||||||
|
|
|
@ -61,3 +61,15 @@ func TestTierContext(t *testing.T) {
|
||||||
require.Equal(t, "price_456", context["stripe_yearly_price_id"])
|
require.Equal(t, "price_456", context["stripe_yearly_price_id"])
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestUsernameRegex(t *testing.T) {
|
||||||
|
username := "phil"
|
||||||
|
username_email := "phil@ntfy.sh"
|
||||||
|
username_email_alias := "phil+alias@ntfy.sh"
|
||||||
|
username_invalid := "phil\rocks"
|
||||||
|
|
||||||
|
require.True(t, AllowedUsername(username))
|
||||||
|
require.True(t, AllowedUsername(username_email))
|
||||||
|
require.True(t, AllowedUsername(username_email_alias))
|
||||||
|
require.False(t, AllowedUsername(username_invalid))
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue