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

bulk_imports.rb « validators « validations « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77d76c98e006759402f56467a844aba2720a0305 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
# frozen_string_literal: true

module API
  module Validations
    module Validators
      module BulkImports
        class DestinationSlugPath < Grape::Validations::Validators::Base
          def validate_param!(attr_name, params)
            if Feature.disabled?(:restrict_special_characters_in_namespace_path)
              return if params[attr_name] =~ Gitlab::Regex.group_path_regex

              raise Grape::Exceptions::Validation.new(
                params: [@scope.full_name(attr_name)],
                message: "#{Gitlab::Regex.group_path_regex_message} " \
                         "It can only contain alphanumeric characters, periods, underscores, and dashes. " \
                         "For example, 'destination_namespace' not 'destination/namespace'"
              )
            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'"
              )

            end
          end
        end

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

            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, 'destination/full/path' not 'https://example.com/destination/full/path'"
            )
          end
        end

        class SourceFullPath < Grape::Validations::Validators::Base
          def validate_param!(attr_name, params)
            full_path = params[attr_name]

            return if params['source_type'] == 'group_entity' && NamespacePathValidator.valid_path?(full_path)
            return if params['source_type'] == 'project_entity' && ProjectPathValidator.valid_path?(full_path)

            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'"
            )
          end
        end
      end
    end
  end
end