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

import_users.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: 0d59537b9035bef32add25004ef8e741dc934d84 (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
# frozen_string_literal: true

module Mutations
  module JiraImport
    class ImportUsers < BaseMutation
      include ResolvesProject

      graphql_name 'JiraImportUsers'

      field :jira_users,
            [Types::JiraUserType],
            null: true,
            description: 'Users returned from Jira, matched by email and name if possible.'

      argument :project_path, GraphQL::ID_TYPE,
               required: true,
               description: 'The project to import the Jira users into'
      argument :start_at, GraphQL::INT_TYPE,
               required: false,
               description: 'The index of the record the import should started at, default 0 (50 records returned)'

      def resolve(project_path:, start_at: 0)
        project = authorized_find!(full_path: project_path)

        service_response = ::JiraImport::UsersImporter.new(context[:current_user], project, start_at.to_i).execute

        {
          jira_users: service_response.payload,
          errors: service_response.errors
        }
      end

      private

      def find_object(full_path:)
        resolve_project(full_path: full_path)
      end

      def authorized_resource?(project)
        Ability.allowed?(context[:current_user], :admin_project, project)
      end
    end
  end
end