summaryrefslogtreecommitdiff
path: root/lib/gitlab/external_authorization/response.rb
blob: 4f3fe5882db26001415fa02fe32b2d7e065b1439 (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
# frozen_string_literal: true

module Gitlab
  module ExternalAuthorization
    class Response
      include ::Gitlab::Utils::StrongMemoize

      def initialize(excon_response)
        @excon_response = excon_response
      end

      def valid?
        @excon_response && [200, 401, 403].include?(@excon_response.status)
      end

      def successful?
        valid? && @excon_response.status == 200
      end

      def reason
        parsed_response['reason'] if parsed_response
      end

      private

      def parsed_response
        strong_memoize(:parsed_response) { parse_response! }
      end

      def parse_response!
        JSON.parse(@excon_response.body)
      rescue JSON::JSONError
        # The JSON response is optional, so don't fail when it's missing
        nil
      end
    end
  end
end