Add the library as a dependency to your mix.exs
file:
defp deps do
[
# ...
{:ua_inspector_plug, "~> 0.3.0"}
# ...
]
end
Ensure :ua_inspector
is configured properly. There are no additional configuration steps necessary.
To automatically parse a clients user agent and enrich the connection you need to add the plug into your current pipeline:
defmodule MyRouter do
use Plug.Router
# ...
plug UAInspector.Plug
# ...
plug :match
plug :dispatch
end
Depending on how you are using plugs the actual location may vary. Please consult your frameworks documentation to find the proper place.
Once setup the connection will be automatically enriched with the results of a lookup based on the connections user-agent
header:
defmodule MyRouter do
get "/" do
case UAInspector.Plug.get_result(conn) do
nil -> send_resp(conn, 500, "No lookup done")
%{user_agent: nil} -> send_resp(conn, 404, "Missing user agent")
%{user_agent: ""} -> send_resp(conn, 404, "Empty user agent")
%{device: :unknown} -> send_resp(conn, 404, "Unknown device type")
%{device: %{type: type}} -> send_resp(conn, 200, "Device type: " <> type)
end
end
end