2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-03 22:44:49 +00:00
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-15 19:06:44 +00:00
|
|
|
defmodule Pleroma.Captcha.Kocaptcha do
|
|
|
|
alias Pleroma.Captcha.Service
|
|
|
|
@behaviour Service
|
|
|
|
|
|
|
|
@impl Service
|
2019-03-05 03:18:43 +00:00
|
|
|
def new do
|
2018-12-15 19:06:44 +00:00
|
|
|
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, _} ->
|
2020-04-29 16:48:08 +00:00
|
|
|
%{error: :kocaptcha_service_unavailable}
|
2018-12-15 19:08:26 +00:00
|
|
|
|
2018-12-15 19:06:44 +00:00
|
|
|
{:ok, res} ->
|
2019-05-13 20:37:38 +00:00
|
|
|
json_resp = Jason.decode!(res.body)
|
2018-12-15 19:06:44 +00:00
|
|
|
|
2018-12-20 21:32:37 +00:00
|
|
|
%{
|
|
|
|
type: :kocaptcha,
|
2018-12-22 19:39:08 +00:00
|
|
|
token: json_resp["token"],
|
2018-12-20 21:32:37 +00:00
|
|
|
url: endpoint <> json_resp["url"],
|
2020-07-29 21:07:22 +00:00
|
|
|
answer_data: json_resp["md5"],
|
|
|
|
seconds_valid: Pleroma.Config.get([Pleroma.Captcha, :seconds_valid])
|
2018-12-20 21:32:37 +00:00
|
|
|
}
|
2018-12-15 19:06:44 +00:00
|
|
|
end
|
|
|
|
end
|
2018-12-16 19:04:43 +00:00
|
|
|
|
|
|
|
@impl Service
|
2018-12-22 19:39:08 +00:00
|
|
|
def validate(_token, captcha, answer_data) do
|
|
|
|
# Here the token is unsed, because the unencrypted captcha answer is just passed to method
|
|
|
|
if not is_nil(captcha) and
|
|
|
|
:crypto.hash(:md5, captcha) |> Base.encode16() == String.upcase(answer_data),
|
|
|
|
do: :ok,
|
2020-04-29 16:48:08 +00:00
|
|
|
else: {:error, :invalid}
|
2018-12-16 19:04:43 +00:00
|
|
|
end
|
2018-12-15 19:06:44 +00:00
|
|
|
end
|