summaryrefslogtreecommitdiff
path: root/lib/gitlab/github_import/importer/labels_importer.rb
blob: a73033d35ba4f8bd0a95438e494ae811ccab5eaa (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
# frozen_string_literal: true

module Gitlab
  module GithubImport
    module Importer
      class LabelsImporter
        include BulkImporting

        attr_reader :project, :client, :existing_labels

        # project - An instance of `Project`.
        # client - An instance of `Gitlab::GithubImport::Client`.
        def initialize(project, client)
          @project = project
          @client = client
          @existing_labels = project.labels.pluck(:title).to_set
        end

        def execute
          bulk_insert(Label, build_labels)
          build_labels_cache
        end

        def build_labels
          build_database_rows(each_label)
        end

        def already_imported?(label)
          existing_labels.include?(label.name)
        end

        def build_labels_cache
          LabelFinder.new(project).build_cache
        end

        def build(label)
          time = Time.zone.now

          {
            title: label.name,
            color: '#' + label.color,
            project_id: project.id,
            type: 'ProjectLabel',
            created_at: time,
            updated_at: time
          }
        end

        def each_label
          client.labels(project.import_source)
        end
      end
    end
  end
end