Sha256: 892a0046bf597d2f0ef2370adf893cd743f8ca6978623e72d2b9c3c1de37fee6
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
# frozen_string_literal: true # Released under the MIT License. # Copyright, 2018-2023, by Samuel Williams. require 'json' require 'protocol/http/body/wrapper' require 'protocol/http/body/buffered' require_relative 'generic' module Async module REST module Wrapper class JSON < Generic APPLICATION_JSON = "application/json".freeze APPLICATION_JSON_STREAM = "application/json; boundary=NL".freeze def initialize(content_type = APPLICATION_JSON) @content_type = content_type end attr :content_type def split(*arguments) @content_type.split end def prepare_request(request, payload) request.headers['accept'] ||= @content_type if payload request.headers['content-type'] = @content_type request.body = HTTP::Body::Buffered.new([ ::JSON.dump(payload) ]) end end class Parser < HTTP::Body::Wrapper def join ::JSON.parse(super, symbolize_names: true) end end def parser_for(response) if content_type = response.headers['content-type'] if content_type.start_with? @content_type return Parser end end return super end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
async-rest-0.13.0 | lib/async/rest/wrapper/json.rb |