summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorDouglas Barbosa Alexandre <dbalexandre@gmail.com>2018-09-17 19:34:27 +0000
committerDouglas Barbosa Alexandre <dbalexandre@gmail.com>2018-09-17 19:34:27 +0000
commit2a7b1367eb34aff8483d460cfda7b5d592585da5 (patch)
treeb4e9b3849ccb8109720f935079c54e66387b27f5 /app
parentbe7328dea292bb9d7b3847db990f0a62b79e3f25 (diff)
parentb73f3ce58fa6bf0e75ae7f348000b7bce53da9b1 (diff)
downloadgitlab-ce-2a7b1367eb34aff8483d460cfda7b5d592585da5.tar.gz
Merge branch 'fix-url-validator' into 'master'
Allow UrlValidator to work with attr_encrypted See merge request gitlab-org/gitlab-ce!21776
Diffstat (limited to 'app')
-rw-r--r--app/validators/url_validator.rb14
1 files changed, 11 insertions, 3 deletions
diff --git a/app/validators/url_validator.rb b/app/validators/url_validator.rb
index faaf1283078..216acf79cbd 100644
--- a/app/validators/url_validator.rb
+++ b/app/validators/url_validator.rb
@@ -41,12 +41,13 @@ class UrlValidator < ActiveModel::EachValidator
def validate_each(record, attribute, value)
@record = record
- if value.present?
- value.strip!
- else
+ unless value.present?
record.errors.add(attribute, 'must be a valid URL')
+ return
end
+ value = strip_value!(record, attribute, value)
+
Gitlab::UrlBlocker.validate!(value, blocker_args)
rescue Gitlab::UrlBlocker::BlockedUrlError => e
record.errors.add(attribute, "is blocked: #{e.message}")
@@ -54,6 +55,13 @@ class UrlValidator < ActiveModel::EachValidator
private
+ def strip_value!(record, attribute, value)
+ new_value = value.strip
+ return value if new_value == value
+
+ record.public_send("#{attribute}=", new_value) # rubocop:disable GitlabSecurity/PublicSend
+ end
+
def default_options
# By default the validator doesn't block any url based on the ip address
{