2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 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 do
|
2018-12-22 19:39:08 +00:00
|
|
|
alias Calendar.DateTime
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Plug.Crypto.KeyGenerator
|
|
|
|
alias Plug.Crypto.MessageEncryptor
|
2018-12-15 19:06:44 +00:00
|
|
|
|
2020-12-18 16:44:46 +00:00
|
|
|
@cachex Pleroma.Config.get([:cachex, :provider], Cachex)
|
|
|
|
|
2018-12-15 19:06:44 +00:00
|
|
|
@doc """
|
|
|
|
Ask the configured captcha service for a new captcha
|
|
|
|
"""
|
2019-03-05 03:18:43 +00:00
|
|
|
def new do
|
2020-04-29 16:48:08 +00:00
|
|
|
if not enabled?() do
|
2020-04-29 17:01:16 +00:00
|
|
|
%{type: :none}
|
2018-12-15 19:06:44 +00:00
|
|
|
else
|
2018-12-22 19:39:08 +00:00
|
|
|
new_captcha = method().new()
|
|
|
|
|
|
|
|
# This make salt a little different for two keys
|
2020-04-29 16:48:08 +00:00
|
|
|
{secret, sign_secret} = secret_pair(new_captcha[:token])
|
|
|
|
|
2020-02-24 01:41:48 +00:00
|
|
|
# Basically copy what Phoenix.Token does here, add the time to
|
2018-12-22 19:39:08 +00:00
|
|
|
# the actual data and make it a binary to then encrypt it
|
|
|
|
encrypted_captcha_answer =
|
|
|
|
%{
|
|
|
|
at: DateTime.now_utc(),
|
|
|
|
answer_data: new_captcha[:answer_data]
|
|
|
|
}
|
|
|
|
|> :erlang.term_to_binary()
|
|
|
|
|> MessageEncryptor.encrypt(secret, sign_secret)
|
|
|
|
|
2020-04-29 17:01:16 +00:00
|
|
|
# Replace the answer with the encrypted answer
|
|
|
|
%{new_captcha | answer_data: encrypted_captcha_answer}
|
2018-12-15 19:06:44 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-29 17:01:16 +00:00
|
|
|
@doc """
|
|
|
|
Ask the configured captcha service to validate the captcha
|
|
|
|
"""
|
|
|
|
def validate(token, captcha, answer_data) do
|
|
|
|
with {:ok, %{at: at, answer_data: answer_md5}} <- validate_answer_data(token, answer_data),
|
|
|
|
:ok <- validate_expiration(at),
|
|
|
|
:ok <- validate_usage(token),
|
|
|
|
:ok <- method().validate(token, captcha, answer_md5),
|
|
|
|
{:ok, _} <- mark_captcha_as_used(token) do
|
|
|
|
:ok
|
|
|
|
end
|
2020-04-29 16:48:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def enabled?, do: Pleroma.Config.get([__MODULE__, :enabled], false)
|
|
|
|
|
|
|
|
defp seconds_valid, do: Pleroma.Config.get!([__MODULE__, :seconds_valid])
|
|
|
|
|
|
|
|
defp secret_pair(token) do
|
2018-12-22 19:39:08 +00:00
|
|
|
secret_key_base = Pleroma.Config.get!([Pleroma.Web.Endpoint, :secret_key_base])
|
|
|
|
secret = KeyGenerator.generate(secret_key_base, token <> "_encrypt")
|
|
|
|
sign_secret = KeyGenerator.generate(secret_key_base, token <> "_sign")
|
2018-12-15 19:06:44 +00:00
|
|
|
|
2020-04-29 16:48:08 +00:00
|
|
|
{secret, sign_secret}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp validate_answer_data(token, answer_data) do
|
|
|
|
{secret, sign_secret} = secret_pair(token)
|
|
|
|
|
|
|
|
with false <- is_nil(answer_data),
|
|
|
|
{:ok, data} <- MessageEncryptor.decrypt(answer_data, secret, sign_secret),
|
|
|
|
%{at: at, answer_data: answer_md5} <- :erlang.binary_to_term(data) do
|
|
|
|
{:ok, %{at: at, answer_data: answer_md5}}
|
|
|
|
else
|
|
|
|
_ -> {:error, :invalid_answer_data}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp validate_expiration(created_at) do
|
2019-03-05 04:37:33 +00:00
|
|
|
# If the time found is less than (current_time-seconds_valid) then the time has already passed
|
2018-12-22 19:39:08 +00:00
|
|
|
# Later we check that the time found is more than the presumed invalidatation time, that means
|
|
|
|
# that the data is still valid and the captcha can be checked
|
2020-04-29 16:48:08 +00:00
|
|
|
|
|
|
|
valid_if_after = DateTime.subtract!(DateTime.now_utc(), seconds_valid())
|
|
|
|
|
|
|
|
if DateTime.before?(created_at, valid_if_after) do
|
|
|
|
{:error, :expired}
|
|
|
|
else
|
|
|
|
:ok
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp validate_usage(token) do
|
2020-12-18 16:44:46 +00:00
|
|
|
if is_nil(@cachex.get!(:used_captcha_cache, token)) do
|
2020-04-29 16:48:08 +00:00
|
|
|
:ok
|
|
|
|
else
|
|
|
|
{:error, :already_used}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp mark_captcha_as_used(token) do
|
|
|
|
ttl = seconds_valid() |> :timer.seconds()
|
2020-12-18 16:44:46 +00:00
|
|
|
@cachex.put(:used_captcha_cache, token, true, ttl: ttl)
|
2018-12-16 19:04:43 +00:00
|
|
|
end
|
|
|
|
|
2018-12-15 19:06:44 +00:00
|
|
|
defp method, do: Pleroma.Config.get!([__MODULE__, :method])
|
|
|
|
end
|