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

milestones_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: eb51424c14a4ca053027c8b216debc638c4abb6e (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
# frozen_string_literal: true

module BulkImports
  module Groups
    module Pipelines
      class MilestonesPipeline
        include Pipeline

        extractor BulkImports::Common::Extractors::GraphqlExtractor,
          query: BulkImports::Groups::Graphql::GetMilestonesQuery

        transformer Common::Transformers::ProhibitedAttributesTransformer

        def load(context, data)
          return unless data

          raise ::BulkImports::Pipeline::NotAllowedError unless authorized?

          context.group.milestones.create!(data)
        end

        def after_run(extracted_data)
          tracker.update(
            has_next_page: extracted_data.has_next_page?,
            next_page: extracted_data.next_page
          )

          if extracted_data.has_next_page?
            run
          end
        end

        private

        def authorized?
          context.current_user.can?(:admin_milestone, context.group)
        end
      end
    end
  end
end