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

response.rb « external_authorization « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8656065303d00379b40e5ce84b681b9d66def27d (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(response)
        @response = response
      end

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

      def successful?
        valid? && @response.code == 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!
        Gitlab::Json.parse(@response.body)
      rescue JSON::JSONError
        # The JSON response is optional, so don't fail when it's missing
        nil
      end
    end
  end
end