debian-mirror-gitlab/lib/api/validations/validators/bulk_imports.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
2.4 KiB
Ruby
Raw Normal View History

2023-03-17 16:20:25 +05:30
# frozen_string_literal: true
module API
module Validations
module Validators
module BulkImports
class DestinationSlugPath < Grape::Validations::Base
def validate_param!(attr_name, params)
2023-06-20 00:43:36 +05:30
if Feature.disabled?(:restrict_special_characters_in_namespace_path)
return if params[attr_name] =~ Gitlab::Regex.group_path_regex
2023-03-17 16:20:25 +05:30
raise Grape::Exceptions::Validation.new(
params: [@scope.full_name(attr_name)],
2023-06-20 00:43:36 +05:30
message: "#{Gitlab::Regex.group_path_regex_message} " \
2023-03-17 16:20:25 +05:30
"It can only contain alphanumeric characters, periods, underscores, and dashes. " \
2023-06-20 00:43:36 +05:30
"For example, 'destination_namespace' not 'destination/namespace'"
2023-03-17 16:20:25 +05:30
)
2023-06-20 00:43:36 +05:30
else
return if params[attr_name] =~ Gitlab::Regex.oci_repository_path_regex
raise Grape::Exceptions::Validation.new(
params: [@scope.full_name(attr_name)],
message: "#{Gitlab::Regex.oci_repository_path_regex_message} " \
"It can only contain alphanumeric characters, periods, underscores, and dashes. " \
"For example, 'destination_namespace' not 'destination/namespace'"
)
2023-03-17 16:20:25 +05:30
end
end
end
class DestinationNamespacePath < Grape::Validations::Base
def validate_param!(attr_name, params)
return if params[attr_name].blank?
2023-06-20 00:43:36 +05:30
return if params[attr_name] =~ Gitlab::Regex.bulk_import_destination_namespace_path_regex
raise Grape::Exceptions::Validation.new(
params: [@scope.full_name(attr_name)],
message: Gitlab::Regex.bulk_import_destination_namespace_path_regex_message
)
2023-03-17 16:20:25 +05:30
end
end
class SourceFullPath < Grape::Validations::Base
def validate_param!(attr_name, params)
2023-06-20 00:43:36 +05:30
return if params[attr_name] =~ Gitlab::Regex.bulk_import_source_full_path_regex
raise Grape::Exceptions::Validation.new(
params: [@scope.full_name(attr_name)],
message: "must be a relative path and not include protocol, sub-domain, or domain information. " \
"For example, 'source/full/path' not 'https://example.com/source/full/path'" \
)
2023-03-17 16:20:25 +05:30
end
end
end
end
end
end