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