diff --git a/README.md b/README.md index b8b4113..6320766 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,6 @@ HTTP server built on top of Cowboy using (mostly) `cowboy_rest` handlers to serv ## TODO -* [ ] /gzip Returns gzip-encoded data. * [ ] /deflate Returns deflate-encoded data. * [ ] /response-headers?key=val Returns given response headers. * [ ] /digest-auth/:qop/:user/:passwd Challenges HTTP Digest Auth. diff --git a/lib/httparrot.ex b/lib/httparrot.ex index 8cce509..92415a3 100644 --- a/lib/httparrot.ex +++ b/lib/httparrot.ex @@ -12,6 +12,7 @@ defmodule HTTParrot do {'/put', HTTParrot.PHandler, []}, {'/patch', HTTParrot.PHandler, []}, {'/delete', HTTParrot.DeleteHandler, []}, + {'/gzip', HTTParrot.GzipHandler, []}, {'/status/:code', [code: :int], HTTParrot.StatusCodeHandler, []}, {'/redirect/:n', HTTParrot.RedirectHandler, []}, {'/redirect-to', HTTParrot.RedirectToHandler, []}, diff --git a/lib/httparrot/gzip_handler.ex b/lib/httparrot/gzip_handler.ex new file mode 100644 index 0000000..3d3fb1e --- /dev/null +++ b/lib/httparrot/gzip_handler.ex @@ -0,0 +1,22 @@ +defmodule HTTParrot.GzipHandler do + @moduledoc """ + Encode body using gzip encoding + """ + alias HTTParrot.GeneralRequestInfo + use HTTParrot.Cowboy, methods: ~w(GET HEAD OPTIONS) + + def content_types_provided(req, state) do + {[{{"application", "json", []}, :get_json}], req, state} + end + + def get_json(req, state) do + {info, req} = GeneralRequestInfo.retrieve(req) + req = :cowboy_req.set_resp_header("content-encoding", "gzip", req) + response = response(info) |> JSEX.prettify! |> :zlib.gzip + {response, req, state} + end + + defp response(info) do + info |> JSEX.encode! + end +end diff --git a/priv/index.html b/priv/index.html index d2ebfe8..5a5a23e 100644 --- a/priv/index.html +++ b/priv/index.html @@ -70,6 +70,7 @@
  • /put Returns PUT data.
  • /patch Returns PATCH data.
  • /delete Returns DELETE data
  • +
  • /gzip Returns gzip-encoded data.
  • /status/:code Returns given HTTP Status code.
  • /redirect/:n 302 Redirects n times.
  • /redirect-to?url=foo 302 Redirects to the foo URL.
  • diff --git a/test/gzip_handler_test.exs b/test/gzip_handler_test.exs new file mode 100644 index 0000000..6966526 --- /dev/null +++ b/test/gzip_handler_test.exs @@ -0,0 +1,27 @@ +defmodule HTTParrot.GzipHandlerTest do + use ExUnit.Case + import :meck + import HTTParrot.GzipHandler + + setup do + new HTTParrot.GeneralRequestInfo + new JSEX + on_exit fn -> unload end + :ok + end + + test "returns prettified json with query values, headers, url and origin" do + expect(HTTParrot.GeneralRequestInfo, :retrieve, 1, {:info, :req2}) + expect(JSEX, :encode!, [{[:info], :json}]) + expect(JSEX, :prettify!, [{[:json], "json"}]) + expect(:cowboy_req, :set_resp_header, 3, :req3) + + body = :zlib.gzip("json") + + assert get_json(:req1, :state) == {body, :req3, :state} + + assert validate HTTParrot.GeneralRequestInfo + assert validate JSEX + assert validate :cowboy_req + end +end