2019-11-17 19:18:21 +01:00
|
|
|
defmodule PhilomenaWeb.ReferrerPlug do
|
2019-11-16 01:40:32 +01:00
|
|
|
@moduledoc """
|
|
|
|
This plug assigns the HTTP Referer, if it exists. Note the misspelling
|
|
|
|
in the standard.
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
2019-11-17 19:18:21 +01:00
|
|
|
plug PhilomenaWeb.ReferrerPlug
|
2019-11-16 01:40:32 +01:00
|
|
|
"""
|
|
|
|
|
|
|
|
alias Plug.Conn
|
|
|
|
|
|
|
|
@doc false
|
|
|
|
@spec init(any()) :: any()
|
|
|
|
def init(opts), do: opts
|
|
|
|
|
|
|
|
@doc false
|
|
|
|
@spec call(Conn.t(), any()) :: Conn.t()
|
|
|
|
def call(conn, _opts) do
|
|
|
|
case Conn.get_req_header(conn, "referer") do
|
|
|
|
[] ->
|
|
|
|
conn
|
|
|
|
|> Conn.assign(:referrer, "/")
|
|
|
|
|
|
|
|
[referrer] ->
|
|
|
|
conn
|
|
|
|
|> Conn.assign(:referrer, referrer)
|
|
|
|
end
|
|
|
|
end
|
2020-01-11 05:20:19 +01:00
|
|
|
end
|