Sha256: 6f1c77eb36c85a3655986e73aac6eb742f7f20b21fc90e3f5b05aac20141c84c

Contents?: true

Size: 1.37 KB

Versions: 5

Compression:

Stored size: 1.37 KB

Contents

# encoding: utf-8

module BitBucket
  class Response

    # Represents http response header
    class Header < Struct.new(:env)
      include BitBucket::Constants

      SUCCESSFUL_STATUSES = 200..299

      def loaded?
        !!env
      end

      # Requests are limited to API v3 to 5000 per hour.
      def ratelimit_limit
        loaded? ? env[:response_headers][RATELIMIT_LIMIT] : nil
      end

      def ratelimit_remaining
        loaded? ? env[:response_headers][RATELIMIT_REMAINING] : nil
      end

      def cache_control
        loaded? ? env[:response_headers][CACHE_CONTROL] : nil
      end

      def content_type
        loaded? ? env[:response_headers][CONTENT_TYPE] : nil
      end

      def content_length
        loaded? ? env[:response_headers][CONTENT_LENGTH] : nil
      end

      def etag
        loaded? ? env[:response_headers][ETAG] : nil
      end

      def date
        loaded? ? env[:response_headers][DATE] : nil
      end

      def location
        loaded? ? env[:response_headers][LOCATION] : nil
      end

      def server
        loaded? ? env[:response_headers][SERVER] : nil
      end

      def status
        loaded? ? env[:status] : nil
      end

      def success?
        SUCCESSFUL_STATUSES.include? status
      end

      # Returns raw body
      def body
        loaded? ? env[:body] : nil
      end

    end # Header
  end # Response
end # BitBucket

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
codenamev_bitbucket_api-0.4.1 lib/bitbucket_rest_api/response/header.rb
codenamev_bitbucket_api-0.4.0 lib/bitbucket_rest_api/response/header.rb
reenhanced_bitbucket_api-0.3.2 lib/bitbucket_rest_api/response/header.rb
reenhanced_bitbucket_api-0.3.1 lib/bitbucket_rest_api/response/header.rb
reenhanced_bitbucket_api-0.3.0 lib/bitbucket_rest_api/response/header.rb