File: bulk_imports.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (49 lines) | stat: -rw-r--r-- 2,028 bytes parent folder | download
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::Validators::Base
          def validate_param!(attr_name, params)
            return if Gitlab::Regex.oci_repository_path_regex.match?(params[attr_name])

            raise Grape::Exceptions::Validation.new(
              params: [@scope.full_name(attr_name)],
              message: "#{Gitlab::Regex.oci_repository_path_regex_message} " \
                       "For example, 'destination_namespace' not 'destination/namespace'"
            )
          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