2018-12-23 13:04:54 -07:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 08:41:47 -07:00
|
|
|
# Copyright © 2017-2019 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)
|
|
|
|
|> put_flash(:error, "Unknown error, please check the details and try again.")
|
|
|
|
|> OAuthController.registration_details(conn.params)
|
|
|
|
end
|
|
|
|
|
|
|
|
def call(conn, {:register, _error}) do
|
|
|
|
conn
|
|
|
|
|> put_status(:unauthorized)
|
|
|
|
|> put_flash(:error, "Invalid Username/Password")
|
|
|
|
|> 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)
|
2018-03-30 07:01:53 -06:00
|
|
|
|> put_flash(:error, "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
|