Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
b1c40e81
Commit
b1c40e81
authored
Jun 26, 2014
by
Ciro Santilli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix username validation message to match regexp.
Also used for project, group and web ui new file names.
parent
3f8e6cf3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
6 deletions
+32
-6
app/models/namespace.rb
app/models/namespace.rb
+2
-2
app/models/project.rb
app/models/project.rb
+2
-2
app/models/user.rb
app/models/user.rb
+1
-1
app/services/files/create_service.rb
app/services/files/create_service.rb
+4
-1
lib/gitlab/regex.rb
lib/gitlab/regex.rb
+23
-0
No files found.
app/models/namespace.rb
View file @
b1c40e81
...
...
@@ -25,12 +25,12 @@ class Namespace < ActiveRecord::Base
validates
:name
,
presence:
true
,
uniqueness:
true
,
length:
{
within:
0
..
255
},
format:
{
with:
Gitlab
::
Regex
.
name_regex
,
message:
"only letters, digits, spaces & '_' '-' '.' allowed."
}
message:
Gitlab
::
Regex
.
name_regex_message
}
validates
:description
,
length:
{
within:
0
..
255
}
validates
:path
,
uniqueness:
{
case_sensitive:
false
},
presence:
true
,
length:
{
within:
1
..
255
},
exclusion:
{
in:
Gitlab
::
Blacklist
.
path
},
format:
{
with:
Gitlab
::
Regex
.
path_regex
,
message:
"only letters, digits & '_' '-' '.' allowed. Letter should be first"
}
message:
Gitlab
::
Regex
.
path_regex_message
}
delegate
:name
,
to: :owner
,
allow_nil:
true
,
prefix:
true
...
...
app/models/project.rb
View file @
b1c40e81
...
...
@@ -93,11 +93,11 @@ class Project < ActiveRecord::Base
validates
:description
,
length:
{
maximum:
2000
},
allow_blank:
true
validates
:name
,
presence:
true
,
length:
{
within:
0
..
255
},
format:
{
with:
Gitlab
::
Regex
.
project_name_regex
,
message:
"only letters, digits, spaces & '_' '-' '.' allowed. Letter or digit should be first"
}
message:
Gitlab
::
Regex
.
project_regex_message
}
validates
:path
,
presence:
true
,
length:
{
within:
0
..
255
},
exclusion:
{
in:
Gitlab
::
Blacklist
.
path
},
format:
{
with:
Gitlab
::
Regex
.
path_regex
,
message:
"only letters, digits & '_' '-' '.' allowed. Letter or digit should be first"
}
message:
Gitlab
::
Regex
.
path_regex_message
}
validates
:issues_enabled
,
:merge_requests_enabled
,
:wiki_enabled
,
inclusion:
{
in:
[
true
,
false
]
}
validates
:issues_tracker_id
,
length:
{
maximum:
255
},
allow_blank:
true
...
...
app/models/user.rb
View file @
b1c40e81
...
...
@@ -120,7 +120,7 @@ class User < ActiveRecord::Base
validates
:username
,
presence:
true
,
uniqueness:
{
case_sensitive:
false
},
exclusion:
{
in:
Gitlab
::
Blacklist
.
path
},
format:
{
with:
Gitlab
::
Regex
.
username_regex
,
message:
"only letters, digits & '_' '-' '.' allowed. Letter should be first"
}
message:
Gitlab
::
Regex
.
username_regex_message
}
validates
:notification_level
,
inclusion:
{
in:
Notification
.
notification_levels
},
presence:
true
validate
:namespace_uniq
,
if:
->
(
user
)
{
user
.
username_changed?
}
...
...
app/services/files/create_service.rb
View file @
b1c40e81
...
...
@@ -21,7 +21,10 @@ module Files
file_path
=
path
unless
file_name
=~
Gitlab
::
Regex
.
path_regex
return
error
(
"Your changes could not be committed, because file name contains not allowed characters"
)
return
error
(
'Your changes could not be committed, because the file name '
+
Gitlab
::
Regex
.
path_regex_message
)
end
blob
=
repository
.
blob_at_branch
(
ref
,
file_path
)
...
...
lib/gitlab/regex.rb
View file @
b1c40e81
...
...
@@ -6,18 +6,35 @@ module Gitlab
default_regex
end
def
username_regex_message
default_regex_message
end
def
project_name_regex
/\A[a-zA-Z0-9_][a-zA-Z0-9_\-\. ]*\z/
end
def
project_regex_message
"can contain only letters, digits, '_', '-' and '.' and space. "
\
"It must start with letter, digit or '_'."
end
def
name_regex
/\A[a-zA-Z0-9_\-\. ]*\z/
end
def
name_regex_message
"can contain only letters, digits, '_', '-' and '.' and space."
end
def
path_regex
default_regex
end
def
path_regex_message
default_regex_message
end
def
archive_formats_regex
#|zip|tar| tar.gz | tar.bz2 |
/(zip|tar|tar\.gz|tgz|gz|tar\.bz2|tbz|tbz2|tb2|bz2)/
...
...
@@ -48,6 +65,12 @@ module Gitlab
protected
def
default_regex_message
"can contain only letters, digits, '_', '-' and '.'. "
\
"It must start with letter, digit or '_', optionally preceeded by '.'. "
\
"It must not end in '.git'."
end
def
default_regex
/\A[.?]?[a-zA-Z0-9_][a-zA-Z0-9_\-\.]*(?<!\.git)\z/
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment