summaryrefslogtreecommitdiff
path: root/lib/atlassian/jira_connect/client.rb
blob: 0b578c03782bd422648f7774c5fd0ee9c7f44d73 (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 Atlassian
  module JiraConnect
    class Client < Gitlab::HTTP
      def initialize(base_uri, shared_secret)
        @base_uri = base_uri
        @shared_secret = shared_secret
      end

      def store_dev_info(project:, commits: nil, branches: nil, merge_requests: nil)
        dev_info_json = {
          repositories: [
            Serializers::RepositoryEntity.represent(
              project,
              commits: commits,
              branches: branches,
              merge_requests: merge_requests
            )
          ]
        }.to_json

        uri = URI.join(@base_uri, '/rest/devinfo/0.10/bulk')

        headers = {
          'Authorization' => "JWT #{jwt_token('POST', uri)}",
          'Content-Type' => 'application/json'
        }

        self.class.post(uri, headers: headers, body: dev_info_json)
      end

      private

      def jwt_token(http_method, uri)
        claims = Atlassian::Jwt.build_claims(
          Atlassian::JiraConnect.app_key,
          uri,
          http_method,
          @base_uri
        )

        Atlassian::Jwt.encode(claims, @shared_secret)
      end
    end
  end
end