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

start.rb « jira_import « mutations « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4929d6f394a89f8148b54e6559ad254e443533cb (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
# frozen_string_literal: true

module Mutations
  module JiraImport
    class Start < BaseMutation
      include FindsProject

      graphql_name 'JiraImportStart'

      authorize :admin_project

      field :jira_import,
            Types::JiraImportType,
            null: true,
            description: 'Jira import data after mutation.'

      argument :jira_project_key, GraphQL::Types::String,
               required: true,
               description: 'Project key of the importer Jira project.'
      argument :jira_project_name, GraphQL::Types::String,
               required: false,
               description: 'Project name of the importer Jira project.'
      argument :project_path, GraphQL::Types::ID,
               required: true,
               description: 'Project to import the Jira project into.'
      argument :users_mapping,
               [Types::JiraUsersMappingInputType],
               required: false,
               description: 'Mapping of Jira to GitLab users.'

      def resolve(project_path:, jira_project_key:, users_mapping:)
        project = authorized_find!(project_path)
        mapping = users_mapping.to_ary.map { |map| map.to_hash }

        service_response = ::JiraImport::StartImportService
                             .new(context[:current_user], project, jira_project_key, mapping)
                             .execute
        jira_import = service_response.success? ? service_response.payload[:import_data] : nil

        {
          jira_import: jira_import,
          errors: service_response.errors
        }
      end
    end
  end
end