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
|
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
defmodule Pleroma.Web.OAuth.OAuthController do
|
|
|
|
use Pleroma.Web, :controller
|
|
|
|
|
2019-04-01 06:28:56 +00:00
|
|
|
alias Pleroma.Registration
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Repo
|
|
|
|
alias Pleroma.User
|
2019-02-28 11:12:41 +00:00
|
|
|
alias Pleroma.Web.Auth.Authenticator
|
2019-04-01 11:46:50 +00:00
|
|
|
alias Pleroma.Web.ControllerHelper
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.OAuth.App
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.OAuth.Authorization
|
|
|
|
alias Pleroma.Web.OAuth.Token
|
2017-09-06 17:06:25 +00:00
|
|
|
|
2019-02-14 14:03:19 +00:00
|
|
|
import Pleroma.Web.ControllerHelper, only: [oauth_scopes: 2]
|
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
if Pleroma.Config.oauth_consumer_enabled?(), do: plug(Ueberauth)
|
2019-03-15 14:08:03 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(:fetch_session)
|
|
|
|
plug(:fetch_flash)
|
2018-02-08 16:57:30 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
action_fallback(Pleroma.Web.OAuth.FallbackController)
|
2018-02-08 16:57:30 +00:00
|
|
|
|
2019-04-01 11:46:50 +00:00
|
|
|
def authorize(%{assigns: %{token: %Token{} = token}} = conn, params) do
|
|
|
|
if ControllerHelper.truthy_param?(params["force_login"]) do
|
|
|
|
do_authorize(conn, params)
|
|
|
|
else
|
|
|
|
redirect_uri =
|
|
|
|
if is_binary(params["redirect_uri"]) do
|
|
|
|
params["redirect_uri"]
|
|
|
|
else
|
|
|
|
app = Repo.preload(token, :app).app
|
|
|
|
|
|
|
|
app.redirect_uris
|
|
|
|
|> String.split()
|
|
|
|
|> Enum.at(0)
|
|
|
|
end
|
|
|
|
|
|
|
|
redirect(conn, external: redirect_uri(conn, redirect_uri))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize(conn, params), do: do_authorize(conn, params)
|
|
|
|
|
|
|
|
defp do_authorize(conn, params) do
|
2019-02-17 10:49:14 +00:00
|
|
|
app = Repo.get_by(App, client_id: params["client_id"])
|
|
|
|
available_scopes = (app && app.scopes) || []
|
|
|
|
scopes = oauth_scopes(params, nil) || available_scopes
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-02-28 11:12:41 +00:00
|
|
|
render(conn, Authenticator.auth_template(), %{
|
2017-09-06 17:06:25 +00:00
|
|
|
response_type: params["response_type"],
|
|
|
|
client_id: params["client_id"],
|
2019-02-17 10:49:14 +00:00
|
|
|
available_scopes: available_scopes,
|
|
|
|
scopes: scopes,
|
2017-09-14 07:29:51 +00:00
|
|
|
redirect_uri: params["redirect_uri"],
|
2019-02-21 15:55:19 +00:00
|
|
|
state: params["state"],
|
|
|
|
params: params
|
2018-03-30 13:01:53 +00:00
|
|
|
})
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|
|
|
|
|
2019-03-20 07:35:31 +00:00
|
|
|
def create_authorization(
|
|
|
|
conn,
|
2019-04-05 12:12:02 +00:00
|
|
|
%{"authorization" => auth_params} = params,
|
2019-03-20 07:35:31 +00:00
|
|
|
opts \\ []
|
|
|
|
) do
|
2019-04-05 12:12:02 +00:00
|
|
|
with {:ok, auth} <- do_create_authorization(conn, params, opts[:user]) do
|
|
|
|
after_create_authorization(conn, auth, auth_params)
|
|
|
|
else
|
|
|
|
error ->
|
|
|
|
handle_create_authorization_error(conn, error, auth_params)
|
|
|
|
end
|
|
|
|
end
|
2018-11-06 14:19:11 +00:00
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
def after_create_authorization(conn, auth, %{"redirect_uri" => redirect_uri} = auth_params) do
|
|
|
|
redirect_uri = redirect_uri(conn, redirect_uri)
|
2018-11-06 14:19:11 +00:00
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
if redirect_uri == "urn:ietf:wg:oauth:2.0:oob" do
|
|
|
|
render(conn, "results.html", %{
|
|
|
|
auth: auth
|
|
|
|
})
|
2018-12-18 14:13:52 +00:00
|
|
|
else
|
2019-04-05 12:12:02 +00:00
|
|
|
connector = if String.contains?(redirect_uri, "?"), do: "&", else: "?"
|
|
|
|
url = "#{redirect_uri}#{connector}"
|
|
|
|
url_params = %{:code => auth.token}
|
2019-02-17 10:49:14 +00:00
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
url_params =
|
|
|
|
if auth_params["state"] do
|
|
|
|
Map.put(url_params, :state, auth_params["state"])
|
|
|
|
else
|
|
|
|
url_params
|
|
|
|
end
|
2019-02-17 10:49:14 +00:00
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
url = "#{url}#{Plug.Conn.Query.encode(url_params)}"
|
|
|
|
|
|
|
|
redirect(conn, external: url)
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
defp handle_create_authorization_error(conn, {scopes_issue, _}, auth_params)
|
|
|
|
when scopes_issue in [:unsupported_scopes, :missing_scopes] do
|
|
|
|
# Per https://github.com/tootsuite/mastodon/blob/
|
|
|
|
# 51e154f5e87968d6bb115e053689767ab33e80cd/app/controllers/api/base_controller.rb#L39
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "This action is outside the authorized scopes")
|
|
|
|
|> put_status(:unauthorized)
|
|
|
|
|> authorize(auth_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp handle_create_authorization_error(conn, {:auth_active, false}, auth_params) do
|
|
|
|
# Per https://github.com/tootsuite/mastodon/blob/
|
|
|
|
# 51e154f5e87968d6bb115e053689767ab33e80cd/app/controllers/api/base_controller.rb#L76
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Your login is missing a confirmed e-mail address")
|
|
|
|
|> put_status(:forbidden)
|
|
|
|
|> authorize(auth_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp handle_create_authorization_error(conn, error, _auth_params) do
|
|
|
|
Authenticator.handle_error(conn, error)
|
|
|
|
end
|
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
def token_exchange(conn, %{"grant_type" => "authorization_code"} = params) do
|
2018-06-01 16:01:56 +00:00
|
|
|
with %App{} = app <- get_app_from_request(conn, params),
|
2017-11-06 19:51:31 +00:00
|
|
|
fixed_token = fix_padding(params["code"]),
|
2018-04-21 07:43:53 +00:00
|
|
|
%Authorization{} = auth <-
|
|
|
|
Repo.get_by(Authorization, token: fixed_token, app_id: app.id),
|
2019-04-02 10:01:26 +00:00
|
|
|
%User{} = user <- User.get_by_id(auth.user_id),
|
2018-08-28 23:07:17 +00:00
|
|
|
{:ok, token} <- Token.exchange_token(app, auth),
|
|
|
|
{:ok, inserted_at} <- DateTime.from_naive(token.inserted_at, "Etc/UTC") do
|
2017-09-06 17:06:25 +00:00
|
|
|
response = %{
|
|
|
|
token_type: "Bearer",
|
|
|
|
access_token: token.token,
|
|
|
|
refresh_token: token.refresh_token,
|
2018-08-28 23:07:17 +00:00
|
|
|
created_at: DateTime.to_unix(inserted_at),
|
2017-09-06 17:06:25 +00:00
|
|
|
expires_in: 60 * 10,
|
2019-03-16 01:12:50 +00:00
|
|
|
scope: Enum.join(token.scopes, " "),
|
|
|
|
me: user.ap_id
|
2017-09-06 17:06:25 +00:00
|
|
|
}
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
json(conn, response)
|
2017-11-06 19:51:31 +00:00
|
|
|
else
|
2018-06-06 01:14:50 +00:00
|
|
|
_error ->
|
|
|
|
put_status(conn, 400)
|
|
|
|
|> json(%{error: "Invalid credentials"})
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|
|
|
|
end
|
2017-11-06 19:51:31 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def token_exchange(
|
|
|
|
conn,
|
2019-03-03 19:20:36 +00:00
|
|
|
%{"grant_type" => "password"} = params
|
2018-03-30 13:01:53 +00:00
|
|
|
) do
|
2019-03-18 07:26:41 +00:00
|
|
|
with {_, {:ok, %User{} = user}} <- {:get_user, Authenticator.get_user(conn, params)},
|
2019-03-03 19:20:36 +00:00
|
|
|
%App{} = app <- get_app_from_request(conn, params),
|
2018-12-18 14:13:52 +00:00
|
|
|
{:auth_active, true} <- {:auth_active, User.auth_active?(user)},
|
2019-04-05 21:22:42 +00:00
|
|
|
{:user_active, true} <- {:user_active, !user.info.deactivated},
|
2019-02-14 14:03:19 +00:00
|
|
|
scopes <- oauth_scopes(params, app.scopes),
|
2019-02-15 16:54:37 +00:00
|
|
|
[] <- scopes -- app.scopes,
|
|
|
|
true <- Enum.any?(scopes),
|
2019-02-13 21:29:29 +00:00
|
|
|
{:ok, auth} <- Authorization.create_authorization(app, user, scopes),
|
2018-03-23 20:50:34 +00:00
|
|
|
{:ok, token} <- Token.exchange_token(app, auth) do
|
|
|
|
response = %{
|
|
|
|
token_type: "Bearer",
|
|
|
|
access_token: token.token,
|
|
|
|
refresh_token: token.refresh_token,
|
|
|
|
expires_in: 60 * 10,
|
2019-03-16 01:12:50 +00:00
|
|
|
scope: Enum.join(token.scopes, " "),
|
|
|
|
me: user.ap_id
|
2018-03-23 20:50:34 +00:00
|
|
|
}
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-23 20:50:34 +00:00
|
|
|
json(conn, response)
|
|
|
|
else
|
2018-12-18 14:13:52 +00:00
|
|
|
{:auth_active, false} ->
|
2019-03-26 12:24:29 +00:00
|
|
|
# Per https://github.com/tootsuite/mastodon/blob/
|
|
|
|
# 51e154f5e87968d6bb115e053689767ab33e80cd/app/controllers/api/base_controller.rb#L76
|
2018-12-18 14:13:52 +00:00
|
|
|
conn
|
|
|
|
|> put_status(:forbidden)
|
2019-03-26 12:09:06 +00:00
|
|
|
|> json(%{error: "Your login is missing a confirmed e-mail address"})
|
2018-12-18 14:13:52 +00:00
|
|
|
|
2019-04-05 21:22:42 +00:00
|
|
|
{:user_active, false} ->
|
|
|
|
conn
|
|
|
|
|> put_status(:forbidden)
|
|
|
|
|> json(%{error: "Your account is currently disabled"})
|
|
|
|
|
2018-06-06 01:14:50 +00:00
|
|
|
_error ->
|
|
|
|
put_status(conn, 400)
|
|
|
|
|> json(%{error: "Invalid credentials"})
|
2018-03-23 20:50:34 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-06-14 01:45:10 +00:00
|
|
|
def token_exchange(
|
|
|
|
conn,
|
2018-12-09 09:12:48 +00:00
|
|
|
%{"grant_type" => "password", "name" => name, "password" => _password} = params
|
2018-06-14 01:45:10 +00:00
|
|
|
) do
|
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.delete("name")
|
|
|
|
|> Map.put("username", name)
|
|
|
|
|
|
|
|
token_exchange(conn, params)
|
|
|
|
end
|
|
|
|
|
2018-08-28 23:25:40 +00:00
|
|
|
def token_revoke(conn, %{"token" => token} = params) do
|
|
|
|
with %App{} = app <- get_app_from_request(conn, params),
|
|
|
|
%Token{} = token <- Repo.get_by(Token, token: token, app_id: app.id),
|
|
|
|
{:ok, %Token{}} <- Repo.delete(token) do
|
|
|
|
json(conn, %{})
|
|
|
|
else
|
|
|
|
_error ->
|
|
|
|
# RFC 7009: invalid tokens [in the request] do not cause an error response
|
|
|
|
json(conn, %{})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
@doc "Prepares OAuth request to provider for Ueberauth"
|
2019-03-27 12:39:35 +00:00
|
|
|
def prepare_request(conn, %{"provider" => provider} = params) do
|
|
|
|
scope =
|
|
|
|
oauth_scopes(params, [])
|
|
|
|
|> Enum.join(" ")
|
|
|
|
|
|
|
|
state =
|
|
|
|
params
|
|
|
|
|> Map.delete("scopes")
|
|
|
|
|> Map.put("scope", scope)
|
|
|
|
|> Poison.encode!()
|
|
|
|
|
|
|
|
params =
|
|
|
|
params
|
|
|
|
|> Map.drop(~w(scope scopes client_id redirect_uri))
|
|
|
|
|> Map.put("state", state)
|
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
# Handing the request to Ueberauth
|
2019-03-27 12:39:35 +00:00
|
|
|
redirect(conn, to: o_auth_path(conn, :request, provider, params))
|
|
|
|
end
|
|
|
|
|
2019-03-20 07:35:31 +00:00
|
|
|
def request(conn, params) do
|
|
|
|
message =
|
|
|
|
if params["provider"] do
|
|
|
|
"Unsupported OAuth provider: #{params["provider"]}."
|
|
|
|
else
|
|
|
|
"Bad OAuth request."
|
|
|
|
end
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, message)
|
|
|
|
|> redirect(to: "/")
|
|
|
|
end
|
|
|
|
|
2019-03-20 17:25:48 +00:00
|
|
|
def callback(%{assigns: %{ueberauth_failure: failure}} = conn, params) do
|
|
|
|
params = callback_params(params)
|
2019-03-20 07:35:31 +00:00
|
|
|
messages = for e <- Map.get(failure, :errors, []), do: e.message
|
|
|
|
message = Enum.join(messages, "; ")
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Failed to authenticate: #{message}.")
|
2019-03-20 17:25:48 +00:00
|
|
|
|> redirect(external: redirect_uri(conn, params["redirect_uri"]))
|
2019-03-20 07:35:31 +00:00
|
|
|
end
|
|
|
|
|
2019-03-20 17:25:48 +00:00
|
|
|
def callback(conn, params) do
|
|
|
|
params = callback_params(params)
|
|
|
|
|
2019-03-20 07:35:31 +00:00
|
|
|
with {:ok, registration} <- Authenticator.get_registration(conn, params) do
|
|
|
|
user = Repo.preload(registration, :user).user
|
2019-04-05 06:19:17 +00:00
|
|
|
auth_params = Map.take(params, ~w(client_id redirect_uri scope scopes state))
|
2019-03-20 07:35:31 +00:00
|
|
|
|
|
|
|
if user do
|
|
|
|
create_authorization(
|
|
|
|
conn,
|
|
|
|
%{"authorization" => auth_params},
|
|
|
|
user: user
|
|
|
|
)
|
|
|
|
else
|
|
|
|
registration_params =
|
|
|
|
Map.merge(auth_params, %{
|
|
|
|
"nickname" => Registration.nickname(registration),
|
|
|
|
"email" => Registration.email(registration)
|
|
|
|
})
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_session(:registration_id, registration.id)
|
2019-04-05 12:12:02 +00:00
|
|
|
|> registration_details(registration_params)
|
2019-03-20 07:35:31 +00:00
|
|
|
end
|
|
|
|
else
|
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Failed to set up user account.")
|
2019-03-20 17:25:48 +00:00
|
|
|
|> redirect(external: redirect_uri(conn, params["redirect_uri"]))
|
2019-03-20 07:35:31 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-03-20 17:25:48 +00:00
|
|
|
defp callback_params(%{"state" => state} = params) do
|
2019-03-27 12:39:35 +00:00
|
|
|
Map.merge(params, Poison.decode!(state))
|
2019-03-20 17:25:48 +00:00
|
|
|
end
|
|
|
|
|
2019-03-20 07:35:31 +00:00
|
|
|
def registration_details(conn, params) do
|
|
|
|
render(conn, "register.html", %{
|
|
|
|
client_id: params["client_id"],
|
|
|
|
redirect_uri: params["redirect_uri"],
|
2019-04-04 19:41:03 +00:00
|
|
|
state: params["state"],
|
2019-03-20 07:35:31 +00:00
|
|
|
scopes: oauth_scopes(params, []),
|
|
|
|
nickname: params["nickname"],
|
|
|
|
email: params["email"]
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
def register(conn, %{"op" => "connect"} = params) do
|
2019-04-05 12:12:02 +00:00
|
|
|
authorization_params = Map.put(params, "name", params["auth_name"])
|
|
|
|
create_authorization_params = %{"authorization" => authorization_params}
|
2019-03-20 07:35:31 +00:00
|
|
|
|
|
|
|
with registration_id when not is_nil(registration_id) <- get_session_registration_id(conn),
|
|
|
|
%Registration{} = registration <- Repo.get(Registration, registration_id),
|
2019-04-05 12:12:02 +00:00
|
|
|
{_, {:ok, auth}} <-
|
|
|
|
{:create_authorization, do_create_authorization(conn, create_authorization_params)},
|
2019-03-20 07:35:31 +00:00
|
|
|
%User{} = user <- Repo.preload(auth, :user).user,
|
|
|
|
{:ok, _updated_registration} <- Registration.bind_to_user(registration, user) do
|
|
|
|
conn
|
|
|
|
|> put_session_registration_id(nil)
|
2019-04-05 12:12:02 +00:00
|
|
|
|> after_create_authorization(auth, authorization_params)
|
2019-03-20 07:35:31 +00:00
|
|
|
else
|
2019-04-05 12:12:02 +00:00
|
|
|
{:create_authorization, error} ->
|
|
|
|
{:register, handle_create_authorization_error(conn, error, create_authorization_params)}
|
2019-04-04 19:41:03 +00:00
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
_ ->
|
|
|
|
{:register, :generic_error}
|
2019-03-20 07:35:31 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-05 12:12:02 +00:00
|
|
|
def register(conn, %{"op" => "register"} = params) do
|
2019-03-20 07:35:31 +00:00
|
|
|
with registration_id when not is_nil(registration_id) <- get_session_registration_id(conn),
|
|
|
|
%Registration{} = registration <- Repo.get(Registration, registration_id),
|
|
|
|
{:ok, user} <- Authenticator.create_from_registration(conn, params, registration) do
|
|
|
|
conn
|
|
|
|
|> put_session_registration_id(nil)
|
|
|
|
|> create_authorization(
|
|
|
|
%{
|
|
|
|
"authorization" => %{
|
|
|
|
"client_id" => params["client_id"],
|
|
|
|
"redirect_uri" => params["redirect_uri"],
|
|
|
|
"scopes" => oauth_scopes(params, nil)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
user: user
|
|
|
|
)
|
|
|
|
else
|
|
|
|
{:error, changeset} ->
|
|
|
|
message =
|
|
|
|
Enum.map(changeset.errors, fn {field, {error, _}} ->
|
|
|
|
"#{field} #{error}"
|
|
|
|
end)
|
|
|
|
|> Enum.join("; ")
|
|
|
|
|
|
|
|
message =
|
|
|
|
String.replace(
|
|
|
|
message,
|
|
|
|
"ap_id has already been taken",
|
|
|
|
"nickname has already been taken"
|
|
|
|
)
|
|
|
|
|
|
|
|
conn
|
2019-04-05 12:12:02 +00:00
|
|
|
|> put_status(:forbidden)
|
2019-03-20 07:35:31 +00:00
|
|
|
|> put_flash(:error, "Error: #{message}.")
|
2019-04-05 12:12:02 +00:00
|
|
|
|> registration_details(params)
|
2019-03-20 07:35:31 +00:00
|
|
|
|
|
|
|
_ ->
|
2019-04-05 12:12:02 +00:00
|
|
|
{:register, :generic_error}
|
2019-03-20 07:35:31 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp do_create_authorization(
|
|
|
|
conn,
|
|
|
|
%{
|
|
|
|
"authorization" =>
|
|
|
|
%{
|
|
|
|
"client_id" => client_id,
|
|
|
|
"redirect_uri" => redirect_uri
|
|
|
|
} = auth_params
|
|
|
|
} = params,
|
|
|
|
user \\ nil
|
|
|
|
) do
|
|
|
|
with {_, {:ok, %User{} = user}} <-
|
|
|
|
{:get_user, (user && {:ok, user}) || Authenticator.get_user(conn, params)},
|
|
|
|
%App{} = app <- Repo.get_by(App, client_id: client_id),
|
|
|
|
true <- redirect_uri in String.split(app.redirect_uris),
|
|
|
|
scopes <- oauth_scopes(auth_params, []),
|
|
|
|
{:unsupported_scopes, []} <- {:unsupported_scopes, scopes -- app.scopes},
|
|
|
|
# Note: `scope` param is intentionally not optional in this context
|
|
|
|
{:missing_scopes, false} <- {:missing_scopes, scopes == []},
|
|
|
|
{:auth_active, true} <- {:auth_active, User.auth_active?(user)} do
|
|
|
|
Authorization.create_authorization(app, user, scopes)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-11 05:11:27 +00:00
|
|
|
# XXX - for whatever reason our token arrives urlencoded, but Plug.Conn should be
|
|
|
|
# decoding it. Investigate sometime.
|
2017-11-06 19:51:31 +00:00
|
|
|
defp fix_padding(token) do
|
|
|
|
token
|
2018-11-11 05:11:27 +00:00
|
|
|
|> URI.decode()
|
2017-11-06 19:51:31 +00:00
|
|
|
|> Base.url_decode64!(padding: false)
|
2019-02-14 01:05:25 +00:00
|
|
|
|> Base.url_encode64(padding: false)
|
2017-11-06 19:51:31 +00:00
|
|
|
end
|
2018-06-01 16:01:56 +00:00
|
|
|
|
|
|
|
defp get_app_from_request(conn, params) do
|
|
|
|
# Per RFC 6749, HTTP Basic is preferred to body params
|
|
|
|
{client_id, client_secret} =
|
|
|
|
with ["Basic " <> encoded] <- get_req_header(conn, "authorization"),
|
|
|
|
{:ok, decoded} <- Base.decode64(encoded),
|
|
|
|
[id, secret] <-
|
|
|
|
String.split(decoded, ":")
|
|
|
|
|> Enum.map(fn s -> URI.decode_www_form(s) end) do
|
|
|
|
{id, secret}
|
|
|
|
else
|
|
|
|
_ -> {params["client_id"], params["client_secret"]}
|
|
|
|
end
|
|
|
|
|
|
|
|
if client_id && client_secret do
|
|
|
|
Repo.get_by(
|
|
|
|
App,
|
|
|
|
client_id: client_id,
|
|
|
|
client_secret: client_secret
|
|
|
|
)
|
|
|
|
else
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
2019-03-15 14:08:03 +00:00
|
|
|
|
|
|
|
# Special case: Local MastodonFE
|
|
|
|
defp redirect_uri(conn, "."), do: mastodon_api_url(conn, :login)
|
|
|
|
|
|
|
|
defp redirect_uri(_conn, redirect_uri), do: redirect_uri
|
2019-03-20 07:35:31 +00:00
|
|
|
|
|
|
|
defp get_session_registration_id(conn), do: get_session(conn, :registration_id)
|
|
|
|
|
|
|
|
defp put_session_registration_id(conn, registration_id),
|
|
|
|
do: put_session(conn, :registration_id, registration_id)
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|