question_validator: Allow content to be an empty-string (blank)
[akkoma] / lib / pleroma / captcha / kocaptcha.ex
index a3128decb4daa8ef43acaf5aeef8aaf5a89c6b8e..6bc2fa158a2045182b9641c2f04166e168eaded7 100644 (file)
@@ -1,21 +1,18 @@
 # Pleroma: A lightweight social networking server
-# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
 # SPDX-License-Identifier: AGPL-3.0-only
 
 defmodule Pleroma.Captcha.Kocaptcha do
-  import Pleroma.Web.Gettext
   alias Pleroma.Captcha.Service
-
   @behaviour Service
-  @default_endpoint "https://captcha.kotobank.ch"
 
   @impl Service
   def new do
-    endpoint = Pleroma.Config.get([__MODULE__, :endpoint], @default_endpoint)
+    endpoint = Pleroma.Config.get!([__MODULE__, :endpoint])
 
     case Tesla.get(endpoint <> "/new") do
       {:error, _} ->
-        %{error: dgettext("errors", "Kocaptcha service unavailable")}
+        %{error: :kocaptcha_service_unavailable}
 
       {:ok, res} ->
         json_resp = Jason.decode!(res.body)
@@ -35,6 +32,6 @@ defmodule Pleroma.Captcha.Kocaptcha do
     if not is_nil(captcha) and
          :crypto.hash(:md5, captcha) |> Base.encode16() == String.upcase(answer_data),
        do: :ok,
-       else: {:error, dgettext("errors", "Invalid CAPTCHA")}
+       else: {:error, :invalid}
   end
 end