forked from AkkomaGang/akkoma
[#468] Defined OAuth restrictions for all applicable routes.
Improved missing "scopes" param handling. Allowed "any of" / "all of" mode specification in OAuthScopesPlug. Fixed auth UI / behavior when user selects no permissions at /oauth/authorize.
This commit is contained in:
parent
027adbc9e5
commit
2a4a4f3342
7 changed files with 142 additions and 76 deletions
|
@ -7,22 +7,35 @@ defmodule Pleroma.Plugs.OAuthScopesPlug do
|
||||||
|
|
||||||
@behaviour Plug
|
@behaviour Plug
|
||||||
|
|
||||||
def init(%{required_scopes: _} = options), do: options
|
def init(%{scopes: _} = options), do: options
|
||||||
|
|
||||||
def call(%Plug.Conn{assigns: assigns} = conn, %{required_scopes: required_scopes}) do
|
def call(%Plug.Conn{assigns: assigns} = conn, %{scopes: scopes} = options) do
|
||||||
|
op = options[:op] || :|
|
||||||
token = assigns[:token]
|
token = assigns[:token]
|
||||||
granted_scopes = token && token.scopes
|
|
||||||
|
|
||||||
if is_nil(token) || required_scopes -- granted_scopes == [] do
|
cond do
|
||||||
conn
|
is_nil(token) ->
|
||||||
else
|
conn
|
||||||
missing_scopes = required_scopes -- granted_scopes
|
|
||||||
error_message = "Insufficient permissions: #{Enum.join(missing_scopes, ", ")}."
|
|
||||||
|
|
||||||
conn
|
op == :| && scopes -- token.scopes != scopes ->
|
||||||
|> put_resp_content_type("application/json")
|
conn
|
||||||
|> send_resp(403, Jason.encode!(%{error: error_message}))
|
|
||||||
|> halt()
|
op == :& && scopes -- token.scopes == [] ->
|
||||||
|
conn
|
||||||
|
|
||||||
|
options[:fallback] == :proceed_unauthenticated ->
|
||||||
|
conn
|
||||||
|
|> assign(:user, nil)
|
||||||
|
|> assign(:token, nil)
|
||||||
|
|
||||||
|
true ->
|
||||||
|
missing_scopes = scopes -- token.scopes
|
||||||
|
error_message = "Insufficient permissions: #{Enum.join(missing_scopes, " #{op} ")}."
|
||||||
|
|
||||||
|
conn
|
||||||
|
|> put_resp_content_type("application/json")
|
||||||
|
|> send_resp(403, Jason.encode!(%{error: error_message}))
|
||||||
|
|> halt()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -6,7 +6,7 @@ defmodule Pleroma.Web.ControllerHelper do
|
||||||
use Pleroma.Web, :controller
|
use Pleroma.Web, :controller
|
||||||
|
|
||||||
def oauth_scopes(params, default) do
|
def oauth_scopes(params, default) do
|
||||||
Pleroma.Web.OAuth.parse_scopes(params["scopes"] || params["scope"], default)
|
Pleroma.Web.OAuth.parse_scopes(params["scope"] || params["scopes"], default)
|
||||||
end
|
end
|
||||||
|
|
||||||
def json_response(conn, status, json) do
|
def json_response(conn, status, json) do
|
||||||
|
|
|
@ -33,7 +33,7 @@ defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
|
||||||
action_fallback(:errors)
|
action_fallback(:errors)
|
||||||
|
|
||||||
def create_app(conn, params) do
|
def create_app(conn, params) do
|
||||||
scopes = oauth_scopes(params, [])
|
scopes = oauth_scopes(params, ["read"])
|
||||||
|
|
||||||
app_attrs =
|
app_attrs =
|
||||||
params
|
params
|
||||||
|
|
|
@ -3,16 +3,13 @@
|
||||||
# SPDX-License-Identifier: AGPL-3.0-only
|
# SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
|
||||||
defmodule Pleroma.Web.OAuth do
|
defmodule Pleroma.Web.OAuth do
|
||||||
def parse_scopes(scopes, default) when is_list(scopes) do
|
def parse_scopes(scopes, _default) when is_list(scopes) do
|
||||||
scopes = Enum.filter(scopes, &(&1 not in [nil, ""]))
|
Enum.filter(scopes, &(&1 not in [nil, ""]))
|
||||||
|
|
||||||
if Enum.any?(scopes),
|
|
||||||
do: scopes,
|
|
||||||
else: default
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def parse_scopes(scopes, default) when is_binary(scopes) do
|
def parse_scopes(scopes, default) when is_binary(scopes) do
|
||||||
scopes
|
scopes
|
||||||
|
|> String.trim()
|
||||||
|> String.split(~r/[\s,]+/)
|
|> String.split(~r/[\s,]+/)
|
||||||
|> parse_scopes(default)
|
|> parse_scopes(default)
|
||||||
end
|
end
|
||||||
|
|
|
@ -17,10 +17,20 @@ defmodule Pleroma.Web.OAuth.OAuthController do
|
||||||
action_fallback(Pleroma.Web.OAuth.FallbackController)
|
action_fallback(Pleroma.Web.OAuth.FallbackController)
|
||||||
|
|
||||||
def authorize(conn, params) do
|
def authorize(conn, params) do
|
||||||
|
params_scopes = oauth_scopes(params, nil)
|
||||||
|
|
||||||
|
scopes =
|
||||||
|
if params_scopes do
|
||||||
|
params_scopes
|
||||||
|
else
|
||||||
|
app = Repo.get_by(App, client_id: params["client_id"])
|
||||||
|
app && app.scopes
|
||||||
|
end
|
||||||
|
|
||||||
render(conn, "show.html", %{
|
render(conn, "show.html", %{
|
||||||
response_type: params["response_type"],
|
response_type: params["response_type"],
|
||||||
client_id: params["client_id"],
|
client_id: params["client_id"],
|
||||||
scopes: oauth_scopes(params, []),
|
scopes: scopes || [],
|
||||||
redirect_uri: params["redirect_uri"],
|
redirect_uri: params["redirect_uri"],
|
||||||
state: params["state"]
|
state: params["state"]
|
||||||
})
|
})
|
||||||
|
@ -33,14 +43,14 @@ def create_authorization(conn, %{
|
||||||
"password" => password,
|
"password" => password,
|
||||||
"client_id" => client_id,
|
"client_id" => client_id,
|
||||||
"redirect_uri" => redirect_uri
|
"redirect_uri" => redirect_uri
|
||||||
} = params
|
} = auth_params
|
||||||
}) do
|
}) do
|
||||||
with %User{} = user <- User.get_by_nickname_or_email(name),
|
with %User{} = user <- User.get_by_nickname_or_email(name),
|
||||||
true <- Pbkdf2.checkpw(password, user.password_hash),
|
true <- Pbkdf2.checkpw(password, user.password_hash),
|
||||||
{:auth_active, true} <- {:auth_active, User.auth_active?(user)},
|
{:auth_active, true} <- {:auth_active, User.auth_active?(user)},
|
||||||
%App{} = app <- Repo.get_by(App, client_id: client_id),
|
%App{} = app <- Repo.get_by(App, client_id: client_id),
|
||||||
true <- redirect_uri in String.split(app.redirect_uris),
|
true <- redirect_uri in String.split(app.redirect_uris),
|
||||||
scopes <- oauth_scopes(params, app.scopes),
|
scopes <- oauth_scopes(auth_params, []),
|
||||||
[] <- scopes -- app.scopes,
|
[] <- scopes -- app.scopes,
|
||||||
true <- Enum.any?(scopes),
|
true <- Enum.any?(scopes),
|
||||||
{:ok, auth} <- Authorization.create_authorization(app, user, scopes) do
|
{:ok, auth} <- Authorization.create_authorization(app, user, scopes) do
|
||||||
|
@ -64,8 +74,8 @@ def create_authorization(conn, %{
|
||||||
url_params = %{:code => auth.token}
|
url_params = %{:code => auth.token}
|
||||||
|
|
||||||
url_params =
|
url_params =
|
||||||
if params["state"] do
|
if auth_params["state"] do
|
||||||
Map.put(url_params, :state, params["state"])
|
Map.put(url_params, :state, auth_params["state"])
|
||||||
else
|
else
|
||||||
url_params
|
url_params
|
||||||
end
|
end
|
||||||
|
@ -75,14 +85,20 @@ def create_authorization(conn, %{
|
||||||
redirect(conn, external: url)
|
redirect(conn, external: url)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
{:auth_active, false} ->
|
res ->
|
||||||
conn
|
msg =
|
||||||
|> put_flash(:error, "Account confirmation pending")
|
if res == {:auth_active, false},
|
||||||
|> put_status(:forbidden)
|
do: "Account confirmation pending",
|
||||||
|> authorize(params)
|
else: "Invalid Username/Password/Permissions"
|
||||||
|
|
||||||
error ->
|
app = Repo.get_by(App, client_id: client_id)
|
||||||
error
|
available_scopes = (app && app.scopes) || oauth_scopes(auth_params, [])
|
||||||
|
scope_param = Enum.join(available_scopes, " ")
|
||||||
|
|
||||||
|
conn
|
||||||
|
|> put_flash(:error, msg)
|
||||||
|
|> put_status(:unauthorized)
|
||||||
|
|> authorize(Map.merge(auth_params, %{"scope" => scope_param}))
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -119,6 +135,8 @@ def token_exchange(
|
||||||
true <- Pbkdf2.checkpw(password, user.password_hash),
|
true <- Pbkdf2.checkpw(password, user.password_hash),
|
||||||
{:auth_active, true} <- {:auth_active, User.auth_active?(user)},
|
{:auth_active, true} <- {:auth_active, User.auth_active?(user)},
|
||||||
scopes <- oauth_scopes(params, app.scopes),
|
scopes <- oauth_scopes(params, app.scopes),
|
||||||
|
[] <- scopes -- app.scopes,
|
||||||
|
true <- Enum.any?(scopes),
|
||||||
{:ok, auth} <- Authorization.create_authorization(app, user, scopes),
|
{:ok, auth} <- Authorization.create_authorization(app, user, scopes),
|
||||||
{:ok, token} <- Token.exchange_token(app, auth) do
|
{:ok, token} <- Token.exchange_token(app, auth) do
|
||||||
response = %{
|
response = %{
|
||||||
|
|
|
@ -74,16 +74,23 @@ defmodule Pleroma.Web.Router do
|
||||||
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
pipeline :oauth_read_or_unauthenticated do
|
||||||
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{
|
||||||
|
scopes: ["read"],
|
||||||
|
fallback: :proceed_unauthenticated
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
pipeline :oauth_read do
|
pipeline :oauth_read do
|
||||||
plug(Pleroma.Plugs.OAuthScopesPlug, %{required_scopes: ["read"]})
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["read"]})
|
||||||
end
|
end
|
||||||
|
|
||||||
pipeline :oauth_write do
|
pipeline :oauth_write do
|
||||||
plug(Pleroma.Plugs.OAuthScopesPlug, %{required_scopes: ["write"]})
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["write"]})
|
||||||
end
|
end
|
||||||
|
|
||||||
pipeline :oauth_follow do
|
pipeline :oauth_follow do
|
||||||
plug(Pleroma.Plugs.OAuthScopesPlug, %{required_scopes: ["follow"]})
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["follow"]})
|
||||||
end
|
end
|
||||||
|
|
||||||
pipeline :well_known do
|
pipeline :well_known do
|
||||||
|
@ -113,6 +120,7 @@ defmodule Pleroma.Web.Router do
|
||||||
|
|
||||||
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
||||||
pipe_through(:pleroma_api)
|
pipe_through(:pleroma_api)
|
||||||
|
|
||||||
get("/password_reset/:token", UtilController, :show_password_reset)
|
get("/password_reset/:token", UtilController, :show_password_reset)
|
||||||
post("/password_reset", UtilController, :password_reset)
|
post("/password_reset", UtilController, :password_reset)
|
||||||
get("/emoji", UtilController, :emoji)
|
get("/emoji", UtilController, :emoji)
|
||||||
|
@ -125,7 +133,8 @@ defmodule Pleroma.Web.Router do
|
||||||
end
|
end
|
||||||
|
|
||||||
scope "/api/pleroma/admin", Pleroma.Web.AdminAPI do
|
scope "/api/pleroma/admin", Pleroma.Web.AdminAPI do
|
||||||
pipe_through(:admin_api)
|
pipe_through([:admin_api, :oauth_write])
|
||||||
|
|
||||||
delete("/user", AdminAPIController, :user_delete)
|
delete("/user", AdminAPIController, :user_delete)
|
||||||
post("/user", AdminAPIController, :user_create)
|
post("/user", AdminAPIController, :user_create)
|
||||||
put("/users/tag", AdminAPIController, :tag_users)
|
put("/users/tag", AdminAPIController, :tag_users)
|
||||||
|
@ -147,9 +156,14 @@ defmodule Pleroma.Web.Router do
|
||||||
|
|
||||||
scope "/", Pleroma.Web.TwitterAPI do
|
scope "/", Pleroma.Web.TwitterAPI do
|
||||||
pipe_through(:pleroma_html)
|
pipe_through(:pleroma_html)
|
||||||
get("/ostatus_subscribe", UtilController, :remote_follow)
|
|
||||||
post("/ostatus_subscribe", UtilController, :do_remote_follow)
|
|
||||||
post("/main/ostatus", UtilController, :remote_subscribe)
|
post("/main/ostatus", UtilController, :remote_subscribe)
|
||||||
|
get("/ostatus_subscribe", UtilController, :remote_follow)
|
||||||
|
|
||||||
|
scope [] do
|
||||||
|
pipe_through(:oauth_follow)
|
||||||
|
post("/ostatus_subscribe", UtilController, :do_remote_follow)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
||||||
|
@ -180,11 +194,11 @@ defmodule Pleroma.Web.Router do
|
||||||
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
||||||
pipe_through(:authenticated_api)
|
pipe_through(:authenticated_api)
|
||||||
|
|
||||||
get("/accounts/verify_credentials", MastodonAPIController, :verify_credentials)
|
|
||||||
|
|
||||||
scope [] do
|
scope [] do
|
||||||
pipe_through(:oauth_read)
|
pipe_through(:oauth_read)
|
||||||
|
|
||||||
|
get("/accounts/verify_credentials", MastodonAPIController, :verify_credentials)
|
||||||
|
|
||||||
get("/accounts/relationships", MastodonAPIController, :relationships)
|
get("/accounts/relationships", MastodonAPIController, :relationships)
|
||||||
get("/accounts/search", MastodonAPIController, :account_search)
|
get("/accounts/search", MastodonAPIController, :account_search)
|
||||||
|
|
||||||
|
@ -284,33 +298,40 @@ defmodule Pleroma.Web.Router do
|
||||||
|
|
||||||
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
||||||
pipe_through(:api)
|
pipe_through(:api)
|
||||||
|
|
||||||
get("/instance", MastodonAPIController, :masto_instance)
|
get("/instance", MastodonAPIController, :masto_instance)
|
||||||
get("/instance/peers", MastodonAPIController, :peers)
|
get("/instance/peers", MastodonAPIController, :peers)
|
||||||
post("/apps", MastodonAPIController, :create_app)
|
post("/apps", MastodonAPIController, :create_app)
|
||||||
get("/custom_emojis", MastodonAPIController, :custom_emojis)
|
get("/custom_emojis", MastodonAPIController, :custom_emojis)
|
||||||
|
|
||||||
get("/timelines/public", MastodonAPIController, :public_timeline)
|
|
||||||
get("/timelines/tag/:tag", MastodonAPIController, :hashtag_timeline)
|
|
||||||
get("/timelines/list/:list_id", MastodonAPIController, :list_timeline)
|
|
||||||
|
|
||||||
get("/statuses/:id", MastodonAPIController, :get_status)
|
|
||||||
get("/statuses/:id/context", MastodonAPIController, :get_context)
|
|
||||||
get("/statuses/:id/card", MastodonAPIController, :status_card)
|
get("/statuses/:id/card", MastodonAPIController, :status_card)
|
||||||
|
|
||||||
get("/statuses/:id/favourited_by", MastodonAPIController, :favourited_by)
|
get("/statuses/:id/favourited_by", MastodonAPIController, :favourited_by)
|
||||||
get("/statuses/:id/reblogged_by", MastodonAPIController, :reblogged_by)
|
get("/statuses/:id/reblogged_by", MastodonAPIController, :reblogged_by)
|
||||||
|
|
||||||
get("/accounts/:id/statuses", MastodonAPIController, :user_statuses)
|
|
||||||
get("/accounts/:id/followers", MastodonAPIController, :followers)
|
|
||||||
get("/accounts/:id/following", MastodonAPIController, :following)
|
|
||||||
get("/accounts/:id", MastodonAPIController, :user)
|
|
||||||
|
|
||||||
get("/trends", MastodonAPIController, :empty_array)
|
get("/trends", MastodonAPIController, :empty_array)
|
||||||
|
|
||||||
get("/search", MastodonAPIController, :search)
|
scope [] do
|
||||||
|
pipe_through(:oauth_read_or_unauthenticated)
|
||||||
|
|
||||||
|
get("/timelines/public", MastodonAPIController, :public_timeline)
|
||||||
|
get("/timelines/tag/:tag", MastodonAPIController, :hashtag_timeline)
|
||||||
|
get("/timelines/list/:list_id", MastodonAPIController, :list_timeline)
|
||||||
|
|
||||||
|
get("/statuses/:id", MastodonAPIController, :get_status)
|
||||||
|
get("/statuses/:id/context", MastodonAPIController, :get_context)
|
||||||
|
|
||||||
|
get("/accounts/:id/statuses", MastodonAPIController, :user_statuses)
|
||||||
|
get("/accounts/:id/followers", MastodonAPIController, :followers)
|
||||||
|
get("/accounts/:id/following", MastodonAPIController, :following)
|
||||||
|
get("/accounts/:id", MastodonAPIController, :user)
|
||||||
|
|
||||||
|
get("/search", MastodonAPIController, :search)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
scope "/api/v2", Pleroma.Web.MastodonAPI do
|
scope "/api/v2", Pleroma.Web.MastodonAPI do
|
||||||
pipe_through(:api)
|
pipe_through([:api, :oauth_read_or_unauthenticated])
|
||||||
get("/search", MastodonAPIController, :search2)
|
get("/search", MastodonAPIController, :search2)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -327,19 +348,11 @@ defmodule Pleroma.Web.Router do
|
||||||
scope "/api", Pleroma.Web do
|
scope "/api", Pleroma.Web do
|
||||||
pipe_through(:api)
|
pipe_through(:api)
|
||||||
|
|
||||||
get("/statuses/user_timeline", TwitterAPI.Controller, :user_timeline)
|
|
||||||
get("/qvitter/statuses/user_timeline", TwitterAPI.Controller, :user_timeline)
|
|
||||||
get("/users/show", TwitterAPI.Controller, :show_user)
|
|
||||||
|
|
||||||
get("/statuses/followers", TwitterAPI.Controller, :followers)
|
|
||||||
get("/statuses/friends", TwitterAPI.Controller, :friends)
|
|
||||||
get("/statuses/blocks", TwitterAPI.Controller, :blocks)
|
|
||||||
get("/statuses/show/:id", TwitterAPI.Controller, :fetch_status)
|
|
||||||
get("/statusnet/conversation/:id", TwitterAPI.Controller, :fetch_conversation)
|
|
||||||
|
|
||||||
post("/account/register", TwitterAPI.Controller, :register)
|
post("/account/register", TwitterAPI.Controller, :register)
|
||||||
post("/account/password_reset", TwitterAPI.Controller, :password_reset)
|
post("/account/password_reset", TwitterAPI.Controller, :password_reset)
|
||||||
|
|
||||||
|
post("/account/resend_confirmation_email", TwitterAPI.Controller, :resend_confirmation_email)
|
||||||
|
|
||||||
get(
|
get(
|
||||||
"/account/confirm_email/:user_id/:token",
|
"/account/confirm_email/:user_id/:token",
|
||||||
TwitterAPI.Controller,
|
TwitterAPI.Controller,
|
||||||
|
@ -347,14 +360,26 @@ defmodule Pleroma.Web.Router do
|
||||||
as: :confirm_email
|
as: :confirm_email
|
||||||
)
|
)
|
||||||
|
|
||||||
post("/account/resend_confirmation_email", TwitterAPI.Controller, :resend_confirmation_email)
|
scope [] do
|
||||||
|
pipe_through(:oauth_read_or_unauthenticated)
|
||||||
|
|
||||||
get("/search", TwitterAPI.Controller, :search)
|
get("/statuses/user_timeline", TwitterAPI.Controller, :user_timeline)
|
||||||
get("/statusnet/tags/timeline/:tag", TwitterAPI.Controller, :public_and_external_timeline)
|
get("/qvitter/statuses/user_timeline", TwitterAPI.Controller, :user_timeline)
|
||||||
|
get("/users/show", TwitterAPI.Controller, :show_user)
|
||||||
|
|
||||||
|
get("/statuses/followers", TwitterAPI.Controller, :followers)
|
||||||
|
get("/statuses/friends", TwitterAPI.Controller, :friends)
|
||||||
|
get("/statuses/blocks", TwitterAPI.Controller, :blocks)
|
||||||
|
get("/statuses/show/:id", TwitterAPI.Controller, :fetch_status)
|
||||||
|
get("/statusnet/conversation/:id", TwitterAPI.Controller, :fetch_conversation)
|
||||||
|
|
||||||
|
get("/search", TwitterAPI.Controller, :search)
|
||||||
|
get("/statusnet/tags/timeline/:tag", TwitterAPI.Controller, :public_and_external_timeline)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
scope "/api", Pleroma.Web do
|
scope "/api", Pleroma.Web do
|
||||||
pipe_through(:api)
|
pipe_through([:api, :oauth_read_or_unauthenticated])
|
||||||
|
|
||||||
get("/statuses/public_timeline", TwitterAPI.Controller, :public_timeline)
|
get("/statuses/public_timeline", TwitterAPI.Controller, :public_timeline)
|
||||||
|
|
||||||
|
@ -368,19 +393,19 @@ defmodule Pleroma.Web.Router do
|
||||||
end
|
end
|
||||||
|
|
||||||
scope "/api", Pleroma.Web, as: :twitter_api_search do
|
scope "/api", Pleroma.Web, as: :twitter_api_search do
|
||||||
pipe_through(:api)
|
pipe_through([:api, :oauth_read_or_unauthenticated])
|
||||||
get("/pleroma/search_user", TwitterAPI.Controller, :search_user)
|
get("/pleroma/search_user", TwitterAPI.Controller, :search_user)
|
||||||
end
|
end
|
||||||
|
|
||||||
scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
|
scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
|
||||||
pipe_through(:authenticated_api)
|
pipe_through(:authenticated_api)
|
||||||
|
|
||||||
get("/account/verify_credentials", TwitterAPI.Controller, :verify_credentials)
|
|
||||||
post("/account/verify_credentials", TwitterAPI.Controller, :verify_credentials)
|
|
||||||
|
|
||||||
scope [] do
|
scope [] do
|
||||||
pipe_through(:oauth_read)
|
pipe_through(:oauth_read)
|
||||||
|
|
||||||
|
get("/account/verify_credentials", TwitterAPI.Controller, :verify_credentials)
|
||||||
|
post("/account/verify_credentials", TwitterAPI.Controller, :verify_credentials)
|
||||||
|
|
||||||
get("/statuses/home_timeline", TwitterAPI.Controller, :friends_timeline)
|
get("/statuses/home_timeline", TwitterAPI.Controller, :friends_timeline)
|
||||||
get("/statuses/friends_timeline", TwitterAPI.Controller, :friends_timeline)
|
get("/statuses/friends_timeline", TwitterAPI.Controller, :friends_timeline)
|
||||||
get("/statuses/mentions", TwitterAPI.Controller, :mentions_timeline)
|
get("/statuses/mentions", TwitterAPI.Controller, :mentions_timeline)
|
||||||
|
@ -506,9 +531,16 @@ defmodule Pleroma.Web.Router do
|
||||||
scope "/", Pleroma.Web.ActivityPub do
|
scope "/", Pleroma.Web.ActivityPub do
|
||||||
pipe_through([:activitypub_client])
|
pipe_through([:activitypub_client])
|
||||||
|
|
||||||
get("/api/ap/whoami", ActivityPubController, :whoami)
|
scope [] do
|
||||||
get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
|
pipe_through(:oauth_read)
|
||||||
post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
|
get("/api/ap/whoami", ActivityPubController, :whoami)
|
||||||
|
get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
|
||||||
|
end
|
||||||
|
|
||||||
|
scope [] do
|
||||||
|
pipe_through(:oauth_write)
|
||||||
|
post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
scope "/relay", Pleroma.Web.ActivityPub do
|
scope "/relay", Pleroma.Web.ActivityPub do
|
||||||
|
@ -518,6 +550,7 @@ defmodule Pleroma.Web.Router do
|
||||||
|
|
||||||
scope "/", Pleroma.Web.ActivityPub do
|
scope "/", Pleroma.Web.ActivityPub do
|
||||||
pipe_through(:activitypub)
|
pipe_through(:activitypub)
|
||||||
|
|
||||||
post("/users/:nickname/inbox", ActivityPubController, :inbox)
|
post("/users/:nickname/inbox", ActivityPubController, :inbox)
|
||||||
post("/inbox", ActivityPubController, :inbox)
|
post("/inbox", ActivityPubController, :inbox)
|
||||||
end
|
end
|
||||||
|
@ -538,8 +571,12 @@ defmodule Pleroma.Web.Router do
|
||||||
pipe_through(:mastodon_html)
|
pipe_through(:mastodon_html)
|
||||||
|
|
||||||
get("/web/login", MastodonAPIController, :login)
|
get("/web/login", MastodonAPIController, :login)
|
||||||
get("/web/*path", MastodonAPIController, :index)
|
|
||||||
delete("/auth/sign_out", MastodonAPIController, :logout)
|
delete("/auth/sign_out", MastodonAPIController, :logout)
|
||||||
|
|
||||||
|
scope [] do
|
||||||
|
pipe_through(:oauth_read)
|
||||||
|
get("/web/*path", MastodonAPIController, :index)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
pipeline :remote_media do
|
pipeline :remote_media do
|
||||||
|
@ -547,6 +584,7 @@ defmodule Pleroma.Web.Router do
|
||||||
|
|
||||||
scope "/proxy/", Pleroma.Web.MediaProxy do
|
scope "/proxy/", Pleroma.Web.MediaProxy do
|
||||||
pipe_through(:remote_media)
|
pipe_through(:remote_media)
|
||||||
|
|
||||||
get("/:sig/:url", MediaProxyController, :remote)
|
get("/:sig/:url", MediaProxyController, :remote)
|
||||||
get("/:sig/:url/:filename", MediaProxyController, :remote)
|
get("/:sig/:url/:filename", MediaProxyController, :remote)
|
||||||
end
|
end
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
<%= label f, :scope, "Permissions" %>
|
<%= label f, :scope, "Permissions" %>
|
||||||
<br>
|
<br>
|
||||||
<%= for scope <- @scopes do %>
|
<%= for scope <- @scopes do %>
|
||||||
<%= checkbox f, :"scopes_#{scope}", hidden_input: false, value: scope, checked_value: scope, name: "authorization[scopes][]" %>
|
<%= checkbox f, :"scopes_#{scope}", value: scope, checked_value: scope, unchecked_value: "", name: "authorization[scopes][]" %>
|
||||||
<%= label f, :"scopes_#{scope}", String.capitalize(scope) %>
|
<%= label f, :"scopes_#{scope}", String.capitalize(scope) %>
|
||||||
<br>
|
<br>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
Loading…
Reference in a new issue