Added `auth_template/0` to DatabaseAuthenticator.
authorIvan Tashkinov <ivantashkinov@gmail.com>
Thu, 28 Feb 2019 10:58:58 +0000 (13:58 +0300)
committerIvan Tashkinov <ivantashkinov@gmail.com>
Thu, 28 Feb 2019 10:58:58 +0000 (13:58 +0300)
lib/pleroma/web/auth/database_authenticator.ex
lib/pleroma/web/auth/pleroma_database_authenticator.ex
lib/pleroma/web/oauth/oauth_controller.ex

index e78068b03bb65417cfa43a5c8ed37bd9147cac8b..494f28f23590ada1f55baed1c62fa6b4e8eb6c8f 100644 (file)
@@ -17,4 +17,9 @@ defmodule Pleroma.Web.Auth.DatabaseAuthenticator do
 
   @callback handle_error(Plug.Conn.t(), any()) :: any()
   def handle_error(plug, error), do: implementation().handle_error(plug, error)
+
+  @callback auth_template() :: String.t() | nil
+  def auth_template do
+    implementation().auth_template() || Pleroma.Config.get(:auth_template, "show.html")
+  end
 end
index 39aa1a586ec06bb96e93be4c7bbc2e0004b3743a..0780388bca4ab2de2386dc7dceb5d6d7e90e6e3b 100644 (file)
@@ -23,4 +23,6 @@ defmodule Pleroma.Web.Auth.PleromaDatabaseAuthenticator do
   def handle_error(%Plug.Conn{} = _conn, error) do
     error
   end
+
+  def auth_template, do: nil
 end
index 5c2b0507c9a0c8c5dc48fb0dff643986c22d55b8..99346f3991c03b0dc731391b1430e27fcd19df90 100644 (file)
@@ -25,9 +25,7 @@ defmodule Pleroma.Web.OAuth.OAuthController do
     available_scopes = (app && app.scopes) || []
     scopes = oauth_scopes(params, nil) || available_scopes
 
-    template = Pleroma.Config.get(:auth_template, "show.html")
-
-    render(conn, template, %{
+    render(conn, DatabaseAuthenticator.auth_template(), %{
       response_type: params["response_type"],
       client_id: params["client_id"],
       available_scopes: available_scopes,