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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
5b893d60
Commit
5b893d60
authored
Jun 30, 2016
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
few changes based on feedback
parent
0ca27574
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
20 additions
and
17 deletions
+20
-17
CHANGELOG
CHANGELOG
+1
-3
app/models/project.rb
app/models/project.rb
+2
-2
app/validators/addressable_url_validator.rb
app/validators/addressable_url_validator.rb
+5
-8
db/migrate/20160620110927_fix_no_validatable_import_url.rb
db/migrate/20160620110927_fix_no_validatable_import_url.rb
+3
-3
lib/gitlab/url_sanitizer.rb
lib/gitlab/url_sanitizer.rb
+9
-1
No files found.
CHANGELOG
View file @
5b893d60
...
@@ -14,6 +14,7 @@ v 8.10.0 (unreleased)
...
@@ -14,6 +14,7 @@ v 8.10.0 (unreleased)
- Check for conflicts with existing Project's wiki path when creating a new project.
- Check for conflicts with existing Project's wiki path when creating a new project.
- Add API endpoint for a group issues !4520 (mahcsig)
- Add API endpoint for a group issues !4520 (mahcsig)
- Allow [ci skip] to be in any case and allow [skip ci]. !4785 (simon_w)
- Allow [ci skip] to be in any case and allow [skip ci]. !4785 (simon_w)
- Set import_url validation to be more strict
v 8.9.3 (unreleased)
v 8.9.3 (unreleased)
- Fix encrypted data backwards compatibility after upgrading attr_encrypted gem
- Fix encrypted data backwards compatibility after upgrading attr_encrypted gem
...
@@ -66,9 +67,6 @@ v 8.9.1
...
@@ -66,9 +67,6 @@ v 8.9.1
- Add SMTP as default delivery method to match gitlab-org/omnibus-gitlab!826. !4915
- Add SMTP as default delivery method to match gitlab-org/omnibus-gitlab!826. !4915
- Remove duplicate 'New Page' button on edit wiki page
- Remove duplicate 'New Page' button on edit wiki page
v 8.9.1 (unreleased)
- Set import_url validation to be more strict
v 8.9.0
v 8.9.0
- Fix builds API response not including commit data
- Fix builds API response not including commit data
- Fix error when CI job variables key specified but not defined
- Fix error when CI job variables key specified but not defined
...
...
app/models/project.rb
View file @
5b893d60
...
@@ -445,11 +445,11 @@ class Project < ActiveRecord::Base
...
@@ -445,11 +445,11 @@ class Project < ActiveRecord::Base
end
end
def
import_url
=
(
value
)
def
import_url
=
(
value
)
return
super
(
value
)
unless
Gitlab
::
UrlSanitizer
.
valid?
(
value
)
import_url
=
Gitlab
::
UrlSanitizer
.
new
(
value
)
import_url
=
Gitlab
::
UrlSanitizer
.
new
(
value
)
create_or_update_import_data
(
credentials:
import_url
.
credentials
)
create_or_update_import_data
(
credentials:
import_url
.
credentials
)
super
(
import_url
.
sanitized_url
)
super
(
import_url
.
sanitized_url
)
rescue
Addressable
::
URI
::
InvalidURIError
errors
.
add
(
:import_url
,
'must be a valid URL.'
)
end
end
def
import_url
def
import_url
...
...
app/validators/addressable_url_validator.rb
View file @
5b893d60
...
@@ -18,6 +18,9 @@
...
@@ -18,6 +18,9 @@
# end
# end
#
#
class
AddressableUrlValidator
<
ActiveModel
::
EachValidator
class
AddressableUrlValidator
<
ActiveModel
::
EachValidator
DEFAULT_OPTIONS
=
{
protocols:
%w(http https ssh git)
}
def
validate_each
(
record
,
attribute
,
value
)
def
validate_each
(
record
,
attribute
,
value
)
unless
valid_url?
(
value
)
unless
valid_url?
(
value
)
record
.
errors
.
add
(
attribute
,
"must be a valid URL"
)
record
.
errors
.
add
(
attribute
,
"must be a valid URL"
)
...
@@ -29,15 +32,9 @@ class AddressableUrlValidator < ActiveModel::EachValidator
...
@@ -29,15 +32,9 @@ class AddressableUrlValidator < ActiveModel::EachValidator
def
valid_url?
(
value
)
def
valid_url?
(
value
)
return
false
unless
value
return
false
unless
value
value
.
strip!
valid_protocol?
(
value
)
&&
valid_uri?
(
value
)
valid_protocol?
(
value
)
&&
valid_uri?
(
value
)
end
end
def
default_options
@default_options
||=
{
protocols:
%w(http https ssh git)
}
end
def
valid_uri?
(
value
)
def
valid_uri?
(
value
)
Addressable
::
URI
.
parse
(
value
).
is_a?
(
Addressable
::
URI
)
Addressable
::
URI
.
parse
(
value
).
is_a?
(
Addressable
::
URI
)
rescue
Addressable
::
URI
::
InvalidURIError
rescue
Addressable
::
URI
::
InvalidURIError
...
@@ -45,7 +42,7 @@ class AddressableUrlValidator < ActiveModel::EachValidator
...
@@ -45,7 +42,7 @@ class AddressableUrlValidator < ActiveModel::EachValidator
end
end
def
valid_protocol?
(
value
)
def
valid_protocol?
(
value
)
options
=
default_options
.
merge
(
self
.
options
)
options
=
DEFAULT_OPTIONS
.
merge
(
self
.
options
)
!!
(
value
=~
/\A
#{
URI
.
regexp
(
options
[
:protocols
])
}
\z/
)
value
=~
/\A
#{
URI
.
regexp
(
options
[
:protocols
])
}
\z/
end
end
end
end
db/migrate/20160620110927_fix_no_validatable_import_url.rb
View file @
5b893d60
...
@@ -38,8 +38,6 @@ class FixNoValidatableImportUrl < ActiveRecord::Migration
...
@@ -38,8 +38,6 @@ class FixNoValidatableImportUrl < ActiveRecord::Migration
def
valid_url?
(
value
)
def
valid_url?
(
value
)
return
false
unless
value
return
false
unless
value
value
.
strip!
valid_uri?
(
value
)
&&
valid_protocol?
(
value
)
valid_uri?
(
value
)
&&
valid_protocol?
(
value
)
rescue
Addressable
::
URI
::
InvalidURIError
rescue
Addressable
::
URI
::
InvalidURIError
false
false
...
@@ -50,11 +48,13 @@ class FixNoValidatableImportUrl < ActiveRecord::Migration
...
@@ -50,11 +48,13 @@ class FixNoValidatableImportUrl < ActiveRecord::Migration
end
end
def
valid_protocol?
(
value
)
def
valid_protocol?
(
value
)
!!
(
value
=~
/\A
#{
URI
.
regexp
(
%w(http https ssh git)
)
}
\z/
)
value
=~
/\A
#{
URI
.
regexp
(
%w(http https ssh git)
)
}
\z/
end
end
end
end
def
up
def
up
return
unless
defined?
(
Addressable
::
URI
::
InvalidURIError
)
say
(
'Cleaning up invalid import URLs... This may take a few minutes if we have a large number of imported projects.'
)
say
(
'Cleaning up invalid import URLs... This may take a few minutes if we have a large number of imported projects.'
)
invalid_import_url_project_ids
.
each
{
|
project_id
|
cleanup_import_url
(
project_id
)
}
invalid_import_url_project_ids
.
each
{
|
project_id
|
cleanup_import_url
(
project_id
)
}
...
...
lib/gitlab/url_sanitizer.rb
View file @
5b893d60
module
Gitlab
module
Gitlab
class
UrlSanitizer
class
UrlSanitizer
attr_reader
:valid
alias_method
:valid?
,
:valid
def
self
.
sanitize
(
content
)
def
self
.
sanitize
(
content
)
regexp
=
URI
::
Parser
.
new
.
make_regexp
([
'http'
,
'https'
,
'ssh'
,
'git'
])
regexp
=
URI
::
Parser
.
new
.
make_regexp
([
'http'
,
'https'
,
'ssh'
,
'git'
])
...
@@ -7,8 +11,12 @@ module Gitlab
...
@@ -7,8 +11,12 @@ module Gitlab
end
end
def
initialize
(
url
,
credentials:
nil
)
def
initialize
(
url
,
credentials:
nil
)
@url
=
Addressable
::
URI
.
parse
(
url
)
@valid
=
true
@url
=
Addressable
::
URI
.
parse
(
url
.
strip
)
@credentials
=
credentials
@credentials
=
credentials
rescue
Addressable
::
URI
::
InvalidURIError
@valid
=
false
raise
end
end
def
sanitized_url
def
sanitized_url
...
...
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