e6cc7a0a38
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
35 lines
1 KiB
Ruby
35 lines
1 KiB
Ruby
# ProjectPathValidator
|
|
#
|
|
# Custom validator for GitLab project path values.
|
|
#
|
|
# Values are checked for formatting and exclusion from a list of reserved path
|
|
# names.
|
|
class ProjectPathValidator < ActiveModel::EachValidator
|
|
# All project routes with wildcard argument must be listed here.
|
|
# Otherwise it can lead to routing issues when route considered as project name.
|
|
#
|
|
# Example:
|
|
# /group/project/tree/deploy_keys
|
|
#
|
|
# without tree as reserved name routing can match 'group/project' as group name,
|
|
# 'tree' as project name and 'deploy_keys' as route.
|
|
#
|
|
RESERVED = (NamespaceValidator::STRICT_RESERVED -
|
|
%w[dashboard help ci admin search notes services assets profile public]).freeze
|
|
|
|
def self.valid?(value)
|
|
!reserved?(value)
|
|
end
|
|
|
|
def self.reserved?(value)
|
|
RESERVED.include?(value)
|
|
end
|
|
|
|
delegate :reserved?, to: :class
|
|
|
|
def validate_each(record, attribute, value)
|
|
if reserved?(value)
|
|
record.errors.add(attribute, "#{value} is a reserved name")
|
|
end
|
|
end
|
|
end
|