Sha256: b0bb6bca166dd6654ceb40851e684180cb26a1f9e7dd7bf4cfe6528a379eae94
Contents?: true
Size: 1.49 KB
Versions: 6
Compression:
Stored size: 1.49 KB
Contents
# frozen_string_literal: true module Faraday class Request # Request middleware for the Authorization HTTP header class Authorization < Faraday::Middleware KEY = 'Authorization' unless defined? KEY # @param type [String, Symbol] # @param token [String, Symbol, Hash] # @return [String] a header value def self.header(type, token) case token when String, Symbol "#{type} #{token}" when Hash build_hash(type.to_s, token) else raise ArgumentError, "Can't build an Authorization #{type}" \ "header from #{token.inspect}" end end # @param type [String] # @param hash [Hash] # @return [String] type followed by comma-separated key=value pairs # @api private def self.build_hash(type, hash) comma = ', ' values = [] hash.each do |key, value| values << "#{key}=#{value.to_s.inspect}" end "#{type} #{values * comma}" end # @param app [#call] # @param type [String, Symbol] Type of Authorization # @param token [String, Symbol, Hash] Token value for the Authorization def initialize(app, type, token) @header_value = self.class.header(type, token) super(app) end # @param env [Faraday::Env] def call(env) env.request_headers[KEY] = @header_value unless env.request_headers[KEY] @app.call(env) end end end end
Version data entries
6 entries across 6 versions & 2 rubygems