2018-12-15 19:06:44 +00:00
|
|
|
defmodule Pleroma.Captcha.Kocaptcha do
|
|
|
|
alias Pleroma.Captcha.Service
|
|
|
|
@behaviour Service
|
|
|
|
|
|
|
|
@ets __MODULE__.Ets
|
|
|
|
|
|
|
|
@impl Service
|
|
|
|
def new() do
|
|
|
|
endpoint = Pleroma.Config.get!([__MODULE__, :endpoint])
|
2018-12-15 19:08:26 +00:00
|
|
|
|
2018-12-15 19:43:28 +00:00
|
|
|
case Tesla.get(endpoint <> "/new") do
|
2018-12-15 19:06:44 +00:00
|
|
|
{:error, _} ->
|
|
|
|
%{error: "Kocaptcha service unavailable"}
|
2018-12-15 19:08:26 +00:00
|
|
|
|
2018-12-15 19:06:44 +00:00
|
|
|
{:ok, res} ->
|
|
|
|
json_resp = Poison.decode!(res.body)
|
|
|
|
|
|
|
|
token = json_resp["token"]
|
|
|
|
|
|
|
|
true = :ets.insert(@ets, {token, json_resp["md5"]})
|
|
|
|
|
|
|
|
%{type: :kocaptcha, token: token, url: endpoint <> json_resp["url"]}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl Service
|
|
|
|
def validate(token, captcha) do
|
|
|
|
with false <- is_nil(captcha),
|
|
|
|
[{^token, saved_md5}] <- :ets.lookup(@ets, token),
|
2018-12-15 19:08:26 +00:00
|
|
|
true <- :crypto.hash(:md5, captcha) |> Base.encode16() == String.upcase(saved_md5) do
|
2018-12-15 19:06:44 +00:00
|
|
|
# Clear the saved value
|
2018-12-16 19:04:43 +00:00
|
|
|
cleanup(token)
|
2018-12-15 19:06:44 +00:00
|
|
|
|
|
|
|
true
|
|
|
|
else
|
|
|
|
_ -> false
|
|
|
|
end
|
|
|
|
end
|
2018-12-16 19:04:43 +00:00
|
|
|
|
|
|
|
@impl Service
|
|
|
|
def cleanup(token) do
|
|
|
|
# Only delete the entry if it exists in the table, because ets:delete raises an exception if it does not
|
|
|
|
case :ets.lookup(@ets, token) do
|
|
|
|
[{^token, _}] -> :ets.delete(@ets, token)
|
|
|
|
_ -> true
|
|
|
|
end
|
|
|
|
end
|
2018-12-15 19:06:44 +00:00
|
|
|
end
|