mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
32 lines
699 B
Elixir
32 lines
699 B
Elixir
defmodule PhilomenaWeb.CaptchaPlug do
|
|
alias Philomena.Captcha
|
|
alias Phoenix.Controller
|
|
alias Plug.Conn
|
|
|
|
def init([]), do: false
|
|
|
|
def call(conn, _opts) do
|
|
user = conn |> Pow.Plug.current_user()
|
|
|
|
conn
|
|
|> maybe_check_captcha(user)
|
|
end
|
|
|
|
defp maybe_check_captcha(conn, nil) do
|
|
case Captcha.valid_solution?(conn.params) do
|
|
true ->
|
|
conn
|
|
|
|
false ->
|
|
conn
|
|
|> Controller.put_flash(
|
|
:error,
|
|
"There was an error verifying you're not a robot. Please try again."
|
|
)
|
|
|> Controller.redirect(external: conn.assigns.referrer)
|
|
|> Conn.halt()
|
|
end
|
|
end
|
|
|
|
defp maybe_check_captcha(conn, _user), do: conn
|
|
end
|