summaryrefslogtreecommitdiff
path: root/app/services/jira_import/users_mapper.rb
blob: 31a3f721556bbd4754fbb3f2b430adcdfc5125f5 (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
# frozen_string_literal: true

module JiraImport
  class UsersMapper
    attr_reader :project, :jira_users

    def initialize(project, jira_users)
      @project = project
      @jira_users = jira_users
    end

    def execute
      jira_users.to_a.map do |jira_user|
        {
          jira_account_id: jira_user['accountId'],
          jira_display_name: jira_user['displayName'],
          jira_email: jira_user['emailAddress'],
          gitlab_id: match_user(jira_user)
        }
      end
    end

    private

    # TODO: Matching user by email and displayName will be done as the part
    # of follow-up issue: https://gitlab.com/gitlab-org/gitlab/-/issues/219023
    def match_user(jira_user)
      nil
    end
  end
end