summaryrefslogtreecommitdiff
path: root/lib/atlassian/jira_connect/serializers/pull_request_entity.rb
blob: e2dc197969b759cb843cd96dee25c355d4f50f37 (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
# frozen_string_literal: true

module Atlassian
  module JiraConnect
    module Serializers
      class PullRequestEntity < BaseEntity
        STATUS_MAPPING = {
          'opened' => 'OPEN',
          'locked' => 'OPEN',
          'merged' => 'MERGED',
          'closed' => 'DECLINED'
        }.freeze

        expose :id, format_with: :string
        expose :issueKeys do |mr|
          JiraIssueKeyExtractor.new(mr.title, mr.description).issue_keys
        end
        expose :displayId do |mr|
          mr.to_reference(full: true)
        end
        expose :title
        expose :author, using: JiraConnect::Serializers::AuthorEntity
        expose :commentCount do |mr|
          if options[:user_notes_count]
            options[:user_notes_count].fetch(mr.id, 0)
          else
            mr.user_notes_count
          end
        end
        expose :source_branch, as: :sourceBranch
        expose :target_branch, as: :destinationBranch
        expose :lastUpdate do |mr|
          mr.last_edited_at || mr.created_at
        end
        expose :status do |mr|
          STATUS_MAPPING[mr.state] || 'UNKNOWN'
        end

        expose :sourceBranchUrl do |mr|
          project_commits_url(mr.project, mr.source_branch)
        end
        expose :url do |mr|
          merge_request_url(mr)
        end
      end
    end
  end
end