Sha256: 9bae4cbf243b8ea44a6190bcadbc0abb8225dc45f433c40a2cc2449c402ed9d4
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true require 'backport_dig' if RUBY_VERSION < '2.3' Excon.defaults[:middlewares].delete(Excon::Addressable::Middleware) Excon.defaults[:middlewares].unshift(Excon::Addressable::Middleware) module Excon module HyperMedia # Middleware # # This middleware sets the `hypermedia` datum to `true`, if the returned # `Content-Type` header contains `hal+json`. # # If the `hypermedia` attribute is already set for the connection, it # will be left alone by this middleware. # class Middleware < Excon::Middleware::Base def request_call(datum) # if `hcp` is enabled, insert the `HypertextCachePattern` middleware in # the middleware stack right after this one. if datum[:hcp] orig_stack = @stack @stack = Excon::HyperMedia::Middlewares::HypertextCachePattern.new(orig_stack) end super end def response_call(datum) return super unless (content_type = datum.dig(:response, :headers, 'Content-Type').to_s) datum[:response][:hypermedia] = if datum[:hypermedia].nil? content_type.include?('hal+json') else datum[:hypermedia] end super end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
excon-hypermedia-0.5.3 | lib/excon/hypermedia/middleware.rb |