2018-12-15 19:06:44 +00:00
|
|
|
defmodule Pleroma.Captcha.Kocaptcha do
|
2018-12-16 20:41:11 +00:00
|
|
|
alias Calendar.DateTime
|
|
|
|
|
2018-12-15 19:06:44 +00:00
|
|
|
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"]
|
|
|
|
|
2018-12-17 14:19:28 +00:00
|
|
|
true =
|
|
|
|
:ets.insert(
|
|
|
|
@ets,
|
|
|
|
{token, json_resp["md5"], DateTime.now_utc() |> DateTime.Format.unix()}
|
|
|
|
)
|
2018-12-15 19:06:44 +00:00
|
|
|
|
|
|
|
%{type: :kocaptcha, token: token, url: endpoint <> json_resp["url"]}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl Service
|
|
|
|
def validate(token, captcha) do
|
|
|
|
with false <- is_nil(captcha),
|
2018-12-16 20:41:11 +00:00
|
|
|
[{^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 20:41:11 +00:00
|
|
|
:ets.delete(@ets, token)
|
2018-12-15 19:06:44 +00:00
|
|
|
|
|
|
|
true
|
|
|
|
else
|
|
|
|
_ -> false
|
|
|
|
end
|
|
|
|
end
|
2018-12-16 19:04:43 +00:00
|
|
|
|
|
|
|
@impl Service
|
2018-12-16 20:41:11 +00:00
|
|
|
def cleanup() do
|
|
|
|
seconds_retained = Pleroma.Config.get!([Pleroma.Captcha, :seconds_retained])
|
2018-12-17 14:19:28 +00:00
|
|
|
# If the time in ETS is less than current_time - seconds_retained, then the time has
|
|
|
|
# already passed
|
|
|
|
delete_after =
|
|
|
|
DateTime.subtract!(DateTime.now_utc(), seconds_retained) |> DateTime.Format.unix()
|
2018-12-16 20:41:11 +00:00
|
|
|
|
2018-12-17 14:19:28 +00:00
|
|
|
:ets.select_delete(
|
|
|
|
@ets,
|
|
|
|
[
|
|
|
|
{
|
|
|
|
{:_, :_, :"$1"},
|
|
|
|
[{:<, :"$1", {:const, delete_after}}],
|
|
|
|
[true]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
)
|
2018-12-16 20:41:11 +00:00
|
|
|
|
|
|
|
:ok
|
2018-12-16 19:04:43 +00:00
|
|
|
end
|
2018-12-15 19:06:44 +00:00
|
|
|
end
|