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

project_entities_pipeline.rb « pipelines « groups « bulk_imports « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c318675e649f5bbfd8af414e1639bba32191f883 (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
# frozen_string_literal: true

module BulkImports
  module Groups
    module Pipelines
      class ProjectEntitiesPipeline
        include Pipeline

        extractor Common::Extractors::GraphqlExtractor, query: Graphql::GetProjectsQuery
        transformer Common::Transformers::ProhibitedAttributesTransformer

        def transform(context, data)
          {
            source_type: :project_entity,
            source_full_path: data['full_path'],
            destination_name: data['name'],
            destination_namespace: context.entity.group.full_path,
            parent_id: context.entity.id
          }
        end

        def load(context, data)
          context.bulk_import.entities.create!(data)
        end
      end
    end
  end
end