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

client.rb « beyond_identity « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9e47eb830587d5dc3a3870e3429d21db3ab4afd (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
# frozen_string_literal: true

module Gitlab
  module BeyondIdentity
    class Client
      API_URL = "https://api.byndid.com/key-mgmt/v0/gpg/key/authorization/git-commit-signing"

      Error = Class.new(StandardError)

      attr_reader :integration

      def initialize(integration)
        raise Error, 'integration is not activated' unless integration.activated?

        @integration = integration
      end

      def execute(params)
        options = { headers: headers, query: params }
        response = Gitlab::HTTP.get(API_URL, options)
        body = Gitlab::Json.parse(response.body) || {}

        raise Error, body.dig('error', 'message') unless response.success?
        raise Error, "authorization denied: #{body['message']}" unless body['authorized']

        body
      rescue JSON::ParserError
        raise Error, 'invalid response format'
      end

      private

      def headers
        {
          'Content-Type': 'application/json',
          Authorization: "Bearer #{integration.token}"
        }
      end
    end
  end
end