1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Adds support for starting HTTParrot over a unix socket

This commit is contained in:
Ricardo Hermida Ruiz 2016-10-26 13:07:13 -02:00
parent bbbeb1c0bd
commit cebf7ad9fa
6 changed files with 54 additions and 3 deletions

View file

@ -58,6 +58,16 @@ defmodule HTTParrot do
certfile: priv_dir ++ '/ssl/server.crt', keyfile: priv_dir ++ '/ssl/server.key'],
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
end
if unix_socket_supported? && Application.get_env(:httparrot, :unix_socket, false) do
{:ok, socket_path} = Application.fetch_env(:httparrot, :socket_path)
if File.exists?(socket_path), do: File.rm(socket_path)
IO.puts "Starting HTTParrot on unix socket #{socket_path}"
{:ok, _} = :cowboy.start_http(:http_unix, 100,
[port: 0, ip: {:local, socket_path}],
[env: [dispatch: dispatch], onresponse: &prettify_json/4])
end
Supervisor.start_link([
worker(ConCache, [[
ttl_check: :timer.minutes(5),
@ -78,4 +88,11 @@ defmodule HTTParrot do
req
end
end
defp unix_socket_supported? do
case Integer.parse("#{:erlang.system_info(:otp_release)}") do
{n, _} when n >= 19 -> true
_ -> false
end
end
end

View file

@ -3,9 +3,13 @@ defmodule HTTParrot.GeneralRequestInfo do
{args, req} = :cowboy_req.qs_vals(req)
{headers, req} = :cowboy_req.headers(req)
{url, req} = :cowboy_req.url(req)
{{ip, _port}, req} = :cowboy_req.peer(req)
{{ip, port}, req} = :cowboy_req.peer(req)
ip = case {ip, port} do
{:local, _} -> ""
_ -> :inet_parse.ntoa(ip) |> to_string
end
ip = :inet_parse.ntoa(ip) |> to_string
args = group_by_keys(args)
{[args: args, headers: headers, url: url, origin: ip], req}

View file

@ -10,9 +10,14 @@ defmodule HTTParrot.IPHandler do
def get_json(req, state) do
{{ip, _port}, req} = :cowboy_req.peer(req)
{response(ip), req, state}
end
defp response(:local) do
[origin: ""] |> JSX.encode!
end
defp response(ip) do
ip = :inet_parse.ntoa(ip) |> to_string
[origin: ip] |> JSX.encode!

View file

@ -22,7 +22,8 @@ defmodule Httparrot.Mixfile do
:exjsx,
:con_cache ],
mod: { HTTParrot, [] },
env: [ http_port: 8080, ssl: true, https_port: 8433 ] ]
env: [ http_port: 8080, ssl: true, https_port: 8433,
unix_socket: true, socket_path: "httparrot.sock"] ]
end
defp deps do

View file

@ -55,4 +55,18 @@ defmodule HTTParrot.GeneralRequestInfoTest do
assert validate :cowboy_req
end
test "returns empty origin when using unix sockets" do
qs_vals = [{"a", "b"}]
headers = [header1: "value 1", header2: "value 2"]
url = "http://localhost/get?a=b"
expect(:cowboy_req, :qs_vals, 1, {qs_vals, :req2})
expect(:cowboy_req, :headers, 1, {headers, :req3})
expect(:cowboy_req, :url, 1, {url, :req4})
expect(:cowboy_req, :peer, 1, {{:local, ""}, :req5})
assert retrieve(:req1) == {[args: %{"a" => "b"}, headers: headers, url: url, origin: ""], :req5}
assert validate :cowboy_req
end
end

View file

@ -20,4 +20,14 @@ defmodule HTTParrot.IPHandlerTest do
assert validate :cowboy_req
assert validate JSX
end
test "returns empty when running over unix sockets" do
expect(:cowboy_req, :peer, 1, {{:local, ""}, :req2})
expect(JSX, :encode!, [{[[origin: ""]], :json}])
assert get_json(:req1, :state) == {:json, :req2, :state}
assert validate :cowboy_req
assert validate JSX
end
end