summaryrefslogtreecommitdiff
path: root/lib/bulk_imports/groups/pipelines/project_entities_pipeline.rb
blob: 026b2e557134aa040a2d8e585c1d5ede55fb8e06 (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
# 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,
            source_xid: GlobalID.parse(data['id']).model_id
          }
        end

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