1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 16:22:32 -04:00

Accept octet-stream and text-plain on /post /put and /patch

This commit is contained in:
Eduardo Gurgel 2014-01-14 17:37:30 -03:00
parent 9bc05fb45a
commit 3f9387d917
2 changed files with 20 additions and 1 deletions

View file

@ -19,6 +19,8 @@ defmodule HTTParrot.PHandler do
def content_types_accepted(req, state) do
{[{{"application", "json", :*}, :post_json},
{{"application", "octet-stream", :*}, :post_json},
{{"text", "plain", :*}, :post_json},
{{"application", "x-www-form-urlencoded", :*}, :post_form}], req, state}
end
@ -33,7 +35,11 @@ defmodule HTTParrot.PHandler do
def post_json(req, _state) do
{:ok, body, req} = :cowboy_req.body(req)
if JSEX.is_json?(body) do
post(req, [form: [{}], data: body, json: JSEX.decode!(body)])
else
post(req, [form: [{}], data: body, json: nil])
end
end
defp post(req, body) do

View file

@ -42,6 +42,7 @@ defmodule HTTParrot.PHandlerTest do
expect(:cowboy_req, :body, 1, {:ok, :body, :req2})
expect(:cowboy_req, :set_resp_body, [{[:response, :req3], :req4}])
expect(HTTParrot.GeneralRequestInfo, :retrieve, 1, {[:info], :req3})
expect(JSEX, :is_json?, 1, true)
expect(JSEX, :decode!, 1, :decoded_json)
expect(JSEX, :encode!, [{[[:info, {:form, [{}]}, {:data, :body}, {:json, :decoded_json}]], :response}])
@ -49,4 +50,16 @@ defmodule HTTParrot.PHandlerTest do
assert validate HTTParrot.GeneralRequestInfo
end
test "returns json with general info and P[OST, ATCH, UT] non-JSON body data" do
expect(:cowboy_req, :body, 1, {:ok, :body, :req2})
expect(:cowboy_req, :set_resp_body, [{[:response, :req3], :req4}])
expect(HTTParrot.GeneralRequestInfo, :retrieve, 1, {[:info], :req3})
expect(JSEX, :is_json?, 1, false)
expect(JSEX, :encode!, [{[[:info, {:form, [{}]}, {:data, :body}, {:json, nil}]], :response}])
assert post_json(:req1, :state) == {true, :req4, nil}
assert validate HTTParrot.GeneralRequestInfo
end
end