summaryrefslogtreecommitdiff
path: root/lib/api/validations/validators/bulk_imports.rb
blob: 8d49607f64ce6ab6aafcc2684291ef6745b30d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# frozen_string_literal: true

module API
  module Validations
    module Validators
      module BulkImports
        class DestinationSlugPath < Grape::Validations::Base
          def validate_param!(attr_name, params)
            unless params[attr_name] =~ Gitlab::Regex.group_path_regex # rubocop: disable Style/GuardClause
              raise Grape::Exceptions::Validation.new(
                params: [@scope.full_name(attr_name)],
                message: "cannot start with a dash or forward slash, or end with a period or forward slash. " \
                         "It can only contain alphanumeric characters, periods, underscores, and dashes. " \
                         "E.g. 'destination_namespace' not 'destination/namespace'"
              )
            end
          end
        end

        class DestinationNamespacePath < Grape::Validations::Base
          def validate_param!(attr_name, params)
            return if params[attr_name].blank?

            unless params[attr_name] =~ Gitlab::Regex.bulk_import_namespace_path_regex # rubocop: disable Style/GuardClause
              raise Grape::Exceptions::Validation.new(
                params: [@scope.full_name(attr_name)],
                message: "cannot start with a dash or forward slash, or end with a period or forward slash. " \
                         "It can only contain alphanumeric characters, periods, underscores, forward slashes " \
                         "and dashes. E.g. 'destination_namespace' or 'destination/namespace'"
              )
            end
          end
        end

        class SourceFullPath < Grape::Validations::Base
          def validate_param!(attr_name, params)
            unless params[attr_name] =~ Gitlab::Regex.bulk_import_namespace_path_regex # rubocop: disable Style/GuardClause
              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. " \
                         "E.g. 'source/full/path' not 'https://example.com/source/full/path'" \
              )
            end
          end
        end
      end
    end
  end
end