2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-02-08 16:57:30 +00:00
|
|
|
defmodule Pleroma.Web.OAuth.FallbackController do
|
2018-03-30 13:01:53 +00:00
|
|
|
use Pleroma.Web, :controller
|
|
|
|
alias Pleroma.Web.OAuth.OAuthController
|
2018-02-08 16:57:30 +00:00
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
def call(conn, {:register, :generic_error}) do
|
|
|
|
conn
|
|
|
|
|> put_status(:internal_server_error)
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_flash(
|
|
|
|
:error,
|
|
|
|
dgettext("errors", "Unknown error, please check the details and try again.")
|
|
|
|
)
|
2019-04-05 12:12:02 +00:00
|
|
|
|> OAuthController.registration_details(conn.params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, {:register, _error}) do
|
|
|
|
conn
|
|
|
|
|> put_status(:unauthorized)
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_flash(:error, dgettext("errors", "Invalid Username/Password"))
|
2019-04-05 12:12:02 +00:00
|
|
|
|> OAuthController.registration_details(conn.params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, _error) do
|
2018-03-30 13:01:53 +00:00
|
|
|
conn
|
2019-01-28 10:41:47 +00:00
|
|
|
|> put_status(:unauthorized)
|
2019-07-10 09:25:58 +00:00
|
|
|
|> put_flash(:error, dgettext("errors", "Invalid Username/Password"))
|
2019-04-10 18:40:38 +00:00
|
|
|
|> OAuthController.authorize(conn.params)
|
2018-03-30 13:01:53 +00:00
|
|
|
end
|
|
|
|
end
|