Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@gitlab.com>2017-05-02 11:32:31 +0300
committerBob Van Landuyt <bob@gitlab.com>2017-05-02 11:47:01 +0300
commita035ebbe069fa6b203c279c8944b447f8fe896c5 (patch)
tree1584df4a1304e9ded6c0b127cb0be75ed2ae1da3 /app/validators
parentc853dd6158af0f77721ce59c03f5f05e98eeadba (diff)
Update path validation & specs
Diffstat (limited to 'app/validators')
-rw-r--r--app/validators/dynamic_path_validator.rb31
1 files changed, 18 insertions, 13 deletions
diff --git a/app/validators/dynamic_path_validator.rb b/app/validators/dynamic_path_validator.rb
index ce90e6f01dd..ba142ea06a6 100644
--- a/app/validators/dynamic_path_validator.rb
+++ b/app/validators/dynamic_path_validator.rb
@@ -140,17 +140,17 @@ class DynamicPathValidator < ActiveModel::EachValidator
end
def self.valid?(path)
- path =~ Gitlab::Regex.full_namespace_regex && !reserved?(path)
+ path =~ Gitlab::Regex.full_namespace_regex && !full_path_reserved?(path)
end
- def self.reserved?(path)
+ def self.full_path_reserved?(path)
path = path.to_s.downcase
- _project_parts, namespace_parts = path.reverse.split('/', 2).map(&:reverse)
+ _project_part, namespace_parts = path.reverse.split('/', 2).map(&:reverse)
- wildcard_reserved?(path) || any_reserved?(namespace_parts)
+ wildcard_reserved?(path) || child_reserved?(namespace_parts)
end
- def self.any_reserved?(path)
+ def self.child_reserved?(path)
return false unless path
path !~ without_reserved_child_paths_regex
@@ -162,18 +162,23 @@ class DynamicPathValidator < ActiveModel::EachValidator
path !~ without_reserved_wildcard_paths_regex
end
- delegate :reserved?,
- :any_reserved?,
+ delegate :full_path_reserved?,
+ :child_reserved?,
to: :class
- def valid_full_path?(record, value)
+ def path_reserved_for_record?(record, value)
full_path = record.respond_to?(:full_path) ? record.full_path : value
- case record
- when Project || User
- reserved?(full_path)
+ # For group paths the entire path cannot contain a reserved child word
+ # The path doesn't contain the last `_project_part` so we need to validate
+ # if the entire path.
+ # Example:
+ # A *group* with full path `parent/activity` is reserved.
+ # A *project* with full path `parent/activity` is allowed.
+ if record.is_a? Group
+ child_reserved?(full_path)
else
- any_reserved?(full_path)
+ full_path_reserved?(full_path)
end
end
@@ -182,7 +187,7 @@ class DynamicPathValidator < ActiveModel::EachValidator
record.errors.add(attribute, Gitlab::Regex.namespace_regex_message)
end
- if valid_full_path?(record, value)
+ if path_reserved_for_record?(record, value)
record.errors.add(attribute, "#{value} is a reserved name")
end
end