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

issue_importer.rb « importers « bitbucket_import « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d194a3112786459f87f013260fab7b2050fc9402 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# frozen_string_literal: true

module Gitlab
  module BitbucketImport
    module Importers
      class IssueImporter
        include Loggable
        include ErrorTracking

        def initialize(project, hash)
          @project = project
          @formatter = Gitlab::ImportFormatter.new
          @user_finder = UserFinder.new(project)
          @object = hash.with_indifferent_access
        end

        def execute
          log_info(import_stage: 'import_issue', message: 'starting', iid: object[:iid])

          description = ''
          description += author_line
          description += object[:description] if object[:description]

          milestone = object[:milestone] ? project.milestones.find_or_create_by(title: object[:milestone]) : nil # rubocop: disable CodeReuse/ActiveRecord

          attributes = {
            iid: object[:iid],
            title: object[:title],
            description: description,
            state_id: Issue.available_states[object[:state]],
            author_id: author_id,
            assignee_ids: [author_id],
            namespace_id: project.project_namespace_id,
            milestone: milestone,
            work_item_type_id: object[:issue_type_id],
            label_ids: [object[:label_id]].compact,
            created_at: object[:created_at],
            updated_at: object[:updated_at]
          }

          project.issues.create!(attributes)

          metrics.issues_counter.increment

          log_info(import_stage: 'import_issue', message: 'finished', iid: object[:iid])
        rescue StandardError => e
          track_import_failure!(project, exception: e)
        end

        private

        attr_reader :object, :project, :formatter, :user_finder

        def author_line
          return '' if find_user_id

          formatter.author_line(object[:author])
        end

        def find_user_id
          user_finder.find_user_id(object[:author])
        end

        def author_id
          user_finder.gitlab_user_id(project, object[:author])
        end
      end
    end
  end
end