2019-12-11 15:29:31 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2019-12-11 15:29:31 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Captcha.Native do
|
|
|
|
alias Pleroma.Captcha.Service
|
|
|
|
@behaviour Service
|
|
|
|
|
|
|
|
@impl Service
|
|
|
|
def new do
|
|
|
|
case Captcha.get() do
|
2020-02-25 14:34:56 +00:00
|
|
|
:error ->
|
2020-04-29 16:48:08 +00:00
|
|
|
%{error: :captcha_error}
|
2019-12-11 15:29:31 +00:00
|
|
|
|
|
|
|
{:ok, answer_data, img_binary} ->
|
|
|
|
%{
|
|
|
|
type: :native,
|
|
|
|
token: token(),
|
|
|
|
url: "data:image/png;base64," <> Base.encode64(img_binary),
|
2020-07-29 21:07:22 +00:00
|
|
|
answer_data: answer_data,
|
|
|
|
seconds_valid: Pleroma.Config.get([Pleroma.Captcha, :seconds_valid])
|
2019-12-11 15:29:31 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl Service
|
|
|
|
def validate(_token, captcha, captcha) when not is_nil(captcha), do: :ok
|
2020-04-29 16:48:08 +00:00
|
|
|
def validate(_token, _captcha, _answer), do: {:error, :invalid}
|
2019-12-11 15:29:31 +00:00
|
|
|
|
|
|
|
defp token do
|
|
|
|
10
|
|
|
|
|> :crypto.strong_rand_bytes()
|
|
|
|
|> Base.url_encode64(padding: false)
|
|
|
|
end
|
|
|
|
end
|