Sha256: 9eb3da1ce4001d357781c91658182f1ad74a2ff7ab72a66858a542f0cde69e1f
Contents?: true
Size: 1.85 KB
Versions: 4
Compression:
Stored size: 1.85 KB
Contents
# frozen_string_literal: true module HTTPX module Plugins # # This plugin adds helper methods to implement HTTP Digest Auth (https://datatracker.ietf.org/doc/html/rfc7616) # # https://gitlab.com/os85/httpx/wikis/Auth#digest-auth # module DigestAuth DigestError = Class.new(Error) class << self def extra_options(options) options.merge(max_concurrent_requests: 1) end def load_dependencies(*) require_relative "auth/digest" end end # adds support for the following options: # # :digest :: instance of HTTPX::Plugins::Authentication::Digest, used to authenticate requests in the session. module OptionsMethods def option_digest(value) raise TypeError, ":digest must be a #{Authentication::Digest}" unless value.is_a?(Authentication::Digest) value end end module InstanceMethods def digest_auth(user, password, hashed: false) with(digest: Authentication::Digest.new(user, password, hashed: hashed)) end private def send_requests(*requests) requests.flat_map do |request| digest = request.options.digest next super(request) unless digest probe_response = wrap { super(request).first } return probe_response unless probe_response.is_a?(Response) if probe_response.status == 401 && digest.can_authenticate?(probe_response.headers["www-authenticate"]) request.transition(:idle) request.headers["authorization"] = digest.authenticate(request, probe_response.headers["www-authenticate"]) super(request) else probe_response end end end end end register_plugin :digest_auth, DigestAuth end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
httpx-1.3.4 | lib/httpx/plugins/digest_auth.rb |
httpx-1.3.3 | lib/httpx/plugins/digest_auth.rb |
httpx-1.3.2 | lib/httpx/plugins/digest_auth.rb |
httpx-1.3.1 | lib/httpx/plugins/digest_auth.rb |