mirror of
https://github.com/plausible/analytics.git
synced 2024-11-24 04:32:57 +03:00
30 lines
596 B
Elixir
30 lines
596 B
Elixir
defmodule PlausibleWeb.Captcha do
|
|
@verify_endpoint "https://hcaptcha.com/siteverify"
|
|
|
|
def enabled? do
|
|
!!sitekey()
|
|
end
|
|
|
|
def sitekey() do
|
|
Application.get_env(:plausible, :hcaptcha, [])
|
|
|> Keyword.fetch!(:sitekey)
|
|
end
|
|
|
|
def verify(token) do
|
|
if enabled?() do
|
|
res =
|
|
HTTPoison.post!(@verify_endpoint, {:form, [{"response", token}, {"secret", secret()}]})
|
|
|
|
json = Jason.decode!(res.body)
|
|
json["success"]
|
|
else
|
|
true
|
|
end
|
|
end
|
|
|
|
defp secret() do
|
|
Application.get_env(:plausible, :hcaptcha, [])
|
|
|> Keyword.fetch!(:secret)
|
|
end
|
|
end
|