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-03-17 16:09:58 +00:00
|
|
|
defmodule Pleroma.Web.Router do
|
|
|
|
use Pleroma.Web, :router
|
|
|
|
|
2019-03-11 17:37:26 +00:00
|
|
|
pipeline :browser do
|
|
|
|
plug(:accepts, ["html"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
end
|
|
|
|
|
2019-04-01 11:46:50 +00:00
|
|
|
pipeline :oauth do
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
|
|
|
end
|
|
|
|
|
2017-03-17 16:09:58 +00:00
|
|
|
pipeline :api do
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(:accepts, ["json"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
2018-09-05 20:31:57 +00:00
|
|
|
plug(Pleroma.Plugs.LegacyAuthenticationPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
2018-09-05 19:57:56 +00:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
2019-06-26 11:42:49 +00:00
|
|
|
plug(Pleroma.Plugs.IdempotencyPlug)
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
|
2017-03-20 20:30:44 +00:00
|
|
|
pipeline :authenticated_api do
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(:accepts, ["json"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
2018-09-05 20:31:57 +00:00
|
|
|
plug(Pleroma.Plugs.LegacyAuthenticationPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
2018-09-05 19:57:56 +00:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
|
2019-06-26 11:42:49 +00:00
|
|
|
plug(Pleroma.Plugs.IdempotencyPlug)
|
2017-03-21 20:09:20 +00:00
|
|
|
end
|
|
|
|
|
2018-10-02 16:38:16 +00:00
|
|
|
pipeline :admin_api do
|
|
|
|
plug(:accepts, ["json"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.LegacyAuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
2018-12-18 20:08:52 +00:00
|
|
|
plug(Pleroma.Plugs.AdminSecretAuthenticationPlug)
|
2018-10-02 16:38:16 +00:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
|
|
|
plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
|
|
|
|
plug(Pleroma.Plugs.UserIsAdminPlug)
|
2019-06-26 11:42:49 +00:00
|
|
|
plug(Pleroma.Plugs.IdempotencyPlug)
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2017-11-12 13:23:05 +00:00
|
|
|
pipeline :mastodon_html do
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(:accepts, ["html"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
2018-09-05 20:31:57 +00:00
|
|
|
plug(Pleroma.Plugs.LegacyAuthenticationPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
2018-09-05 19:57:56 +00:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
2017-11-12 13:23:05 +00:00
|
|
|
end
|
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
pipeline :pleroma_html do
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(:accepts, ["html"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
2018-01-18 16:42:44 +00:00
|
|
|
end
|
|
|
|
|
2019-05-13 15:07:11 +00:00
|
|
|
pipeline :oauth_read_or_public do
|
2019-02-15 16:54:37 +00:00
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{
|
|
|
|
scopes: ["read"],
|
|
|
|
fallback: :proceed_unauthenticated
|
|
|
|
})
|
2019-05-13 15:07:11 +00:00
|
|
|
|
|
|
|
plug(Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug)
|
2019-02-15 16:54:37 +00:00
|
|
|
end
|
|
|
|
|
2019-02-09 14:09:08 +00:00
|
|
|
pipeline :oauth_read do
|
2019-02-15 16:54:37 +00:00
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["read"]})
|
2019-02-09 14:09:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :oauth_write do
|
2019-02-15 16:54:37 +00:00
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["write"]})
|
2019-02-09 14:09:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :oauth_follow do
|
2019-02-15 16:54:37 +00:00
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["follow"]})
|
2019-02-09 14:09:08 +00:00
|
|
|
end
|
|
|
|
|
2019-02-20 14:27:41 +00:00
|
|
|
pipeline :oauth_push do
|
|
|
|
plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["push"]})
|
|
|
|
end
|
|
|
|
|
2017-04-17 11:44:41 +00:00
|
|
|
pipeline :well_known do
|
2018-06-15 20:01:17 +00:00
|
|
|
plug(:accepts, ["json", "jrd+json", "xml", "xrd+xml"])
|
2017-04-17 11:44:41 +00:00
|
|
|
end
|
|
|
|
|
2017-08-24 12:07:05 +00:00
|
|
|
pipeline :config do
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(:accepts, ["json", "xml"])
|
2017-08-24 12:07:05 +00:00
|
|
|
end
|
|
|
|
|
2017-10-19 19:51:56 +00:00
|
|
|
pipeline :pleroma_api do
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(:accepts, ["html", "json"])
|
2017-10-19 15:37:24 +00:00
|
|
|
end
|
|
|
|
|
2018-12-11 11:59:25 +00:00
|
|
|
pipeline :mailbox_preview do
|
|
|
|
plug(:accepts, ["html"])
|
|
|
|
|
|
|
|
plug(:put_secure_browser_headers, %{
|
|
|
|
"content-security-policy" =>
|
|
|
|
"default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' 'unsafe-eval'"
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2019-08-22 19:39:06 +00:00
|
|
|
pipeline :http_signature do
|
|
|
|
plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
|
2019-09-12 19:40:53 +00:00
|
|
|
plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
|
2019-08-22 19:39:06 +00:00
|
|
|
end
|
|
|
|
|
2017-10-19 15:37:24 +00:00
|
|
|
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:pleroma_api)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-06-24 19:01:56 +00:00
|
|
|
get("/password_reset/:token", PasswordController, :reset, as: :reset_password)
|
|
|
|
post("/password_reset", PasswordController, :do_reset, as: :reset_password)
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/emoji", UtilController, :emoji)
|
2018-12-14 22:31:19 +00:00
|
|
|
get("/captcha", UtilController, :captcha)
|
2019-04-22 07:19:53 +00:00
|
|
|
get("/healthcheck", UtilController, :healthcheck)
|
2017-10-19 15:37:24 +00:00
|
|
|
end
|
|
|
|
|
2019-01-21 21:44:14 +00:00
|
|
|
scope "/api/pleroma", Pleroma.Web do
|
|
|
|
pipe_through(:pleroma_api)
|
|
|
|
post("/uploader_callback/:upload_path", UploaderController, :callback)
|
|
|
|
end
|
|
|
|
|
2018-10-02 16:38:16 +00:00
|
|
|
scope "/api/pleroma/admin", Pleroma.Web.AdminAPI do
|
2019-02-15 16:54:37 +00:00
|
|
|
pipe_through([:admin_api, :oauth_write])
|
|
|
|
|
2019-05-11 08:32:04 +00:00
|
|
|
post("/users/follow", AdminAPIController, :user_follow)
|
|
|
|
post("/users/unfollow", AdminAPIController, :user_unfollow)
|
2018-12-16 15:41:56 +00:00
|
|
|
|
2019-05-11 08:32:04 +00:00
|
|
|
delete("/users", AdminAPIController, :user_delete)
|
2019-05-17 06:35:31 +00:00
|
|
|
post("/users", AdminAPIController, :users_create)
|
2019-05-11 08:32:04 +00:00
|
|
|
patch("/users/:nickname/toggle_activation", AdminAPIController, :user_toggle_activation)
|
2018-12-06 17:06:50 +00:00
|
|
|
put("/users/tag", AdminAPIController, :tag_users)
|
2018-12-07 08:04:39 +00:00
|
|
|
delete("/users/tag", AdminAPIController, :untag_users)
|
2018-10-02 16:38:16 +00:00
|
|
|
|
2019-05-11 08:32:04 +00:00
|
|
|
get("/users/:nickname/permission_group", AdminAPIController, :right_get)
|
|
|
|
get("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_get)
|
|
|
|
post("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_add)
|
|
|
|
|
|
|
|
delete(
|
|
|
|
"/users/:nickname/permission_group/:permission_group",
|
|
|
|
AdminAPIController,
|
|
|
|
:right_delete
|
|
|
|
)
|
|
|
|
|
|
|
|
put("/users/:nickname/activation_status", AdminAPIController, :set_activation_status)
|
2019-02-19 15:40:57 +00:00
|
|
|
|
2018-10-02 16:38:16 +00:00
|
|
|
post("/relay", AdminAPIController, :relay_follow)
|
|
|
|
delete("/relay", AdminAPIController, :relay_unfollow)
|
|
|
|
|
2019-09-13 05:07:29 +00:00
|
|
|
post("/users/invite_token", AdminAPIController, :create_invite_token)
|
2019-05-11 08:32:04 +00:00
|
|
|
get("/users/invites", AdminAPIController, :invites)
|
|
|
|
post("/users/revoke_invite", AdminAPIController, :revoke_invite)
|
|
|
|
post("/users/email_invite", AdminAPIController, :email_invite)
|
2018-12-13 15:23:05 +00:00
|
|
|
|
2019-05-11 08:32:04 +00:00
|
|
|
get("/users/:nickname/password_reset", AdminAPIController, :get_password_reset)
|
|
|
|
|
|
|
|
get("/users", AdminAPIController, :list_users)
|
|
|
|
get("/users/:nickname", AdminAPIController, :user_show)
|
2019-07-13 21:37:19 +00:00
|
|
|
get("/users/:nickname/statuses", AdminAPIController, :list_user_statuses)
|
2019-05-16 19:09:18 +00:00
|
|
|
|
|
|
|
get("/reports", AdminAPIController, :list_reports)
|
|
|
|
get("/reports/:id", AdminAPIController, :report_show)
|
|
|
|
put("/reports/:id", AdminAPIController, :report_update_state)
|
|
|
|
post("/reports/:id/respond", AdminAPIController, :report_respond)
|
|
|
|
|
|
|
|
put("/statuses/:id", AdminAPIController, :status_update)
|
|
|
|
delete("/statuses/:id", AdminAPIController, :status_delete)
|
2019-06-14 15:45:05 +00:00
|
|
|
|
|
|
|
get("/config", AdminAPIController, :config_show)
|
|
|
|
post("/config", AdminAPIController, :config_update)
|
2019-07-30 16:36:05 +00:00
|
|
|
get("/config/migrate_to_db", AdminAPIController, :migrate_to_db)
|
|
|
|
get("/config/migrate_from_db", AdminAPIController, :migrate_from_db)
|
2019-08-25 19:39:37 +00:00
|
|
|
|
|
|
|
get("/moderation_log", AdminAPIController, :list_log)
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2019-08-10 21:39:21 +00:00
|
|
|
scope "/api/pleroma/emoji", Pleroma.Web.EmojiAPI do
|
|
|
|
scope [] do
|
|
|
|
pipe_through([:admin_api, :oauth_write])
|
|
|
|
|
|
|
|
post("/reload", EmojiAPIController, :reload)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/packs" do
|
|
|
|
# Modifying packs
|
|
|
|
pipe_through([:admin_api, :oauth_write])
|
|
|
|
|
2019-08-12 15:03:59 +00:00
|
|
|
delete("/delete/:name", EmojiAPIController, :delete)
|
2019-08-10 21:39:21 +00:00
|
|
|
post("/download_from", EmojiAPIController, :download_from)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/packs" do
|
|
|
|
# Pack info / downloading
|
|
|
|
get("/list", EmojiAPIController, :list_packs)
|
|
|
|
get("/download_shared/:name", EmojiAPIController, :download_shared)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
scope "/", Pleroma.Web.TwitterAPI do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:pleroma_html)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
post("/main/ostatus", UtilController, :remote_subscribe)
|
2019-02-15 16:54:37 +00:00
|
|
|
get("/ostatus_subscribe", UtilController, :remote_follow)
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_follow)
|
|
|
|
post("/ostatus_subscribe", UtilController, :do_remote_follow)
|
|
|
|
end
|
2018-01-18 16:42:44 +00:00
|
|
|
end
|
|
|
|
|
2017-12-12 16:35:23 +00:00
|
|
|
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:authenticated_api)
|
2019-02-09 14:32:33 +00:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_write)
|
|
|
|
|
2019-09-13 06:09:35 +00:00
|
|
|
post("/change_email", UtilController, :change_email)
|
2019-02-09 14:32:33 +00:00
|
|
|
post("/change_password", UtilController, :change_password)
|
|
|
|
post("/delete_account", UtilController, :delete_account)
|
2019-03-28 11:52:09 +00:00
|
|
|
put("/notification_settings", UtilController, :update_notificaton_settings)
|
2019-03-04 12:55:11 +00:00
|
|
|
post("/disable_account", UtilController, :disable_account)
|
2019-02-09 14:32:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_follow)
|
|
|
|
|
|
|
|
post("/blocks_import", UtilController, :blocks_import)
|
|
|
|
post("/follow_import", UtilController, :follow_import)
|
|
|
|
end
|
2017-12-12 16:35:23 +00:00
|
|
|
end
|
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
scope "/oauth", Pleroma.Web.OAuth do
|
2019-04-01 11:46:50 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth)
|
|
|
|
get("/authorize", OAuthController, :authorize)
|
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
post("/authorize", OAuthController, :create_authorization)
|
|
|
|
post("/token", OAuthController, :token_exchange)
|
2018-08-28 23:25:40 +00:00
|
|
|
post("/revoke", OAuthController, :token_revoke)
|
2019-03-20 07:35:31 +00:00
|
|
|
get("/registration_details", OAuthController, :registration_details)
|
2019-03-11 17:37:26 +00:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:browser)
|
|
|
|
|
2019-03-27 12:39:35 +00:00
|
|
|
get("/prepare_request", OAuthController, :prepare_request)
|
2019-03-11 17:37:26 +00:00
|
|
|
get("/:provider", OAuthController, :request)
|
|
|
|
get("/:provider/callback", OAuthController, :callback)
|
2019-03-20 07:35:31 +00:00
|
|
|
post("/register", OAuthController, :register)
|
2019-03-11 17:37:26 +00:00
|
|
|
end
|
2017-09-06 17:06:25 +00:00
|
|
|
end
|
|
|
|
|
2019-08-02 17:53:08 +00:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
|
|
|
scope [] do
|
2019-08-14 13:55:43 +00:00
|
|
|
pipe_through(:oauth_read)
|
2019-08-02 17:53:08 +00:00
|
|
|
get("/conversations/:id/statuses", PleromaAPIController, :conversation_statuses)
|
2019-08-12 11:58:04 +00:00
|
|
|
get("/conversations/:id", PleromaAPIController, :conversation)
|
2019-08-14 13:55:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_write)
|
2019-08-05 13:09:19 +00:00
|
|
|
patch("/conversations/:id", PleromaAPIController, :update_conversation)
|
2019-09-04 08:33:08 +00:00
|
|
|
post("/notifications/read", PleromaAPIController, :read_notification)
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-06 17:06:25 +00:00
|
|
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:authenticated_api)
|
2017-09-06 17:06:25 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_read)
|
2018-05-26 16:03:32 +00:00
|
|
|
|
2019-02-15 16:54:37 +00:00
|
|
|
get("/accounts/verify_credentials", MastodonAPIController, :verify_credentials)
|
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/accounts/relationships", MastodonAPIController, :relationships)
|
2017-10-25 18:02:42 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/accounts/:id/lists", MastodonAPIController, :account_lists)
|
2019-04-01 23:53:25 +00:00
|
|
|
get("/accounts/:id/identity_proofs", MastodonAPIController, :empty_array)
|
2017-11-03 07:51:17 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/follow_requests", MastodonAPIController, :follow_requests)
|
|
|
|
get("/blocks", MastodonAPIController, :blocks)
|
2019-02-20 13:48:59 +00:00
|
|
|
get("/mutes", MastodonAPIController, :mutes)
|
2017-09-13 13:55:10 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/timelines/home", MastodonAPIController, :home_timeline)
|
|
|
|
get("/timelines/direct", MastodonAPIController, :dm_timeline)
|
2017-09-09 11:15:01 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/favourites", MastodonAPIController, :favourites)
|
|
|
|
get("/bookmarks", MastodonAPIController, :bookmarks)
|
2018-05-11 02:17:33 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
post("/notifications/clear", MastodonAPIController, :clear_notifications)
|
|
|
|
post("/notifications/dismiss", MastodonAPIController, :dismiss_notification)
|
|
|
|
get("/notifications", MastodonAPIController, :notifications)
|
|
|
|
get("/notifications/:id", MastodonAPIController, :get_notification)
|
2019-04-12 02:28:46 +00:00
|
|
|
delete("/notifications/destroy_multiple", MastodonAPIController, :destroy_multiple)
|
2017-09-17 11:09:49 +00:00
|
|
|
|
2019-03-28 09:39:10 +00:00
|
|
|
get("/scheduled_statuses", MastodonAPIController, :scheduled_statuses)
|
|
|
|
get("/scheduled_statuses/:id", MastodonAPIController, :show_scheduled_status)
|
|
|
|
|
2019-08-26 12:37:54 +00:00
|
|
|
get("/lists", ListController, :index)
|
|
|
|
get("/lists/:id", ListController, :show)
|
|
|
|
get("/lists/:id/accounts", ListController, :list_accounts)
|
2017-09-09 15:48:57 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/domain_blocks", MastodonAPIController, :domain_blocks)
|
2017-09-09 17:19:13 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/filters", MastodonAPIController, :get_filters)
|
2017-09-14 06:08:32 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/suggestions", MastodonAPIController, :suggestions)
|
2018-04-29 13:02:46 +00:00
|
|
|
|
2019-03-17 16:06:28 +00:00
|
|
|
get("/conversations", MastodonAPIController, :conversations)
|
2019-04-10 15:48:31 +00:00
|
|
|
post("/conversations/:id/read", MastodonAPIController, :conversation_read)
|
2019-03-17 16:06:28 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
get("/endorsements", MastodonAPIController, :empty_array)
|
|
|
|
end
|
2018-06-03 19:21:23 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_write)
|
2018-07-13 15:21:38 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
patch("/accounts/update_credentials", MastodonAPIController, :update_credentials)
|
2018-08-14 02:27:28 +00:00
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
post("/statuses", MastodonAPIController, :post_status)
|
|
|
|
delete("/statuses/:id", MastodonAPIController, :delete_status)
|
2018-09-18 09:56:46 +00:00
|
|
|
|
2019-02-17 11:07:35 +00:00
|
|
|
post("/statuses/:id/reblog", MastodonAPIController, :reblog_status)
|
|
|
|
post("/statuses/:id/unreblog", MastodonAPIController, :unreblog_status)
|
|
|
|
post("/statuses/:id/favourite", MastodonAPIController, :fav_status)
|
|
|
|
post("/statuses/:id/unfavourite", MastodonAPIController, :unfav_status)
|
|
|
|
post("/statuses/:id/pin", MastodonAPIController, :pin_status)
|
|
|
|
post("/statuses/:id/unpin", MastodonAPIController, :unpin_status)
|
|
|
|
post("/statuses/:id/bookmark", MastodonAPIController, :bookmark_status)
|
|
|
|
post("/statuses/:id/unbookmark", MastodonAPIController, :unbookmark_status)
|
|
|
|
post("/statuses/:id/mute", MastodonAPIController, :mute_conversation)
|
|
|
|
post("/statuses/:id/unmute", MastodonAPIController, :unmute_conversation)
|
2018-09-20 14:25:07 +00:00
|
|
|
|
2019-03-28 09:39:10 +00:00
|
|
|
put("/scheduled_statuses/:id", MastodonAPIController, :update_scheduled_status)
|
|
|
|
delete("/scheduled_statuses/:id", MastodonAPIController, :delete_scheduled_status)
|
|
|
|
|
2019-06-01 13:07:01 +00:00
|
|
|
post("/polls/:id/votes", MastodonAPIController, :poll_vote)
|
|
|
|
|
2019-02-09 14:32:33 +00:00
|
|
|
post("/media", MastodonAPIController, :upload)
|
|
|
|
put("/media/:id", MastodonAPIController, :update_media)
|
|
|
|
|
2019-08-26 12:37:54 +00:00
|
|
|
delete("/lists/:id", ListController, :delete)
|
|
|
|
post("/lists", ListController, :create)
|
|
|
|
put("/lists/:id", ListController, :update)
|
2019-02-09 14:32:33 +00:00
|
|
|
|
2019-08-26 12:37:54 +00:00
|
|
|
post("/lists/:id/accounts", ListController, :add_to_list)
|
|
|
|
delete("/lists/:id/accounts", ListController, :remove_from_list)
|
2019-02-09 14:32:33 +00:00
|
|
|
|
|
|
|
post("/filters", MastodonAPIController, :create_filter)
|
|
|
|
get("/filters/:id", MastodonAPIController, :get_filter)
|
|
|
|
put("/filters/:id", MastodonAPIController, :update_filter)
|
|
|
|
delete("/filters/:id", MastodonAPIController, :delete_filter)
|
2019-02-19 16:10:55 +00:00
|
|
|
|
2019-07-12 16:25:58 +00:00
|
|
|
patch("/pleroma/accounts/update_avatar", MastodonAPIController, :update_avatar)
|
|
|
|
patch("/pleroma/accounts/update_banner", MastodonAPIController, :update_banner)
|
|
|
|
patch("/pleroma/accounts/update_background", MastodonAPIController, :update_background)
|
|
|
|
|
2019-05-20 11:39:23 +00:00
|
|
|
get("/pleroma/mascot", MastodonAPIController, :get_mascot)
|
|
|
|
put("/pleroma/mascot", MastodonAPIController, :set_mascot)
|
|
|
|
|
2019-02-20 16:51:25 +00:00
|
|
|
post("/reports", MastodonAPIController, :reports)
|
2019-02-09 14:32:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_follow)
|
|
|
|
|
|
|
|
post("/follows", MastodonAPIController, :follow)
|
|
|
|
post("/accounts/:id/follow", MastodonAPIController, :follow)
|
|
|
|
|
|
|
|
post("/accounts/:id/unfollow", MastodonAPIController, :unfollow)
|
|
|
|
post("/accounts/:id/block", MastodonAPIController, :block)
|
|
|
|
post("/accounts/:id/unblock", MastodonAPIController, :unblock)
|
2019-02-20 13:48:59 +00:00
|
|
|
post("/accounts/:id/mute", MastodonAPIController, :mute)
|
|
|
|
post("/accounts/:id/unmute", MastodonAPIController, :unmute)
|
2019-02-09 14:32:33 +00:00
|
|
|
|
|
|
|
post("/follow_requests/:id/authorize", MastodonAPIController, :authorize_follow_request)
|
|
|
|
post("/follow_requests/:id/reject", MastodonAPIController, :reject_follow_request)
|
|
|
|
|
|
|
|
post("/domain_blocks", MastodonAPIController, :block_domain)
|
|
|
|
delete("/domain_blocks", MastodonAPIController, :unblock_domain)
|
2019-04-05 15:51:45 +00:00
|
|
|
|
|
|
|
post("/pleroma/accounts/:id/subscribe", MastodonAPIController, :subscribe)
|
|
|
|
post("/pleroma/accounts/:id/unsubscribe", MastodonAPIController, :unsubscribe)
|
2019-02-20 14:27:41 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_push)
|
2019-02-09 14:32:33 +00:00
|
|
|
|
2019-03-06 13:20:12 +00:00
|
|
|
post("/push/subscription", SubscriptionController, :create)
|
|
|
|
get("/push/subscription", SubscriptionController, :get)
|
|
|
|
put("/push/subscription", SubscriptionController, :update)
|
|
|
|
delete("/push/subscription", SubscriptionController, :delete)
|
2019-02-09 14:32:33 +00:00
|
|
|
end
|
2017-08-24 12:15:16 +00:00
|
|
|
end
|
|
|
|
|
2018-04-07 14:26:56 +00:00
|
|
|
scope "/api/web", Pleroma.Web.MastodonAPI do
|
2019-02-09 14:32:33 +00:00
|
|
|
pipe_through([:authenticated_api, :oauth_write])
|
2018-04-07 14:26:56 +00:00
|
|
|
|
|
|
|
put("/settings", MastodonAPIController, :put_settings)
|
|
|
|
end
|
|
|
|
|
2017-09-13 15:36:02 +00:00
|
|
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:api)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-05-13 18:35:45 +00:00
|
|
|
post("/accounts", MastodonAPIController, :account_register)
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/instance", MastodonAPIController, :masto_instance)
|
|
|
|
get("/instance/peers", MastodonAPIController, :peers)
|
|
|
|
post("/apps", MastodonAPIController, :create_app)
|
2019-03-26 18:42:03 +00:00
|
|
|
get("/apps/verify_credentials", MastodonAPIController, :verify_app_credentials)
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/custom_emojis", MastodonAPIController, :custom_emojis)
|
|
|
|
|
2019-01-13 23:06:55 +00:00
|
|
|
get("/statuses/:id/card", MastodonAPIController, :status_card)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/statuses/:id/favourited_by", MastodonAPIController, :favourited_by)
|
|
|
|
get("/statuses/:id/reblogged_by", MastodonAPIController, :reblogged_by)
|
|
|
|
|
2018-06-04 15:44:08 +00:00
|
|
|
get("/trends", MastodonAPIController, :empty_array)
|
|
|
|
|
2019-06-14 11:39:57 +00:00
|
|
|
get("/accounts/search", SearchController, :account_search)
|
2019-04-18 17:44:25 +00:00
|
|
|
|
2019-07-28 20:30:10 +00:00
|
|
|
post(
|
|
|
|
"/pleroma/accounts/confirmation_resend",
|
|
|
|
MastodonAPIController,
|
|
|
|
:account_confirmation_resend
|
|
|
|
)
|
|
|
|
|
2019-02-15 16:54:37 +00:00
|
|
|
scope [] do
|
2019-05-13 15:07:11 +00:00
|
|
|
pipe_through(:oauth_read_or_public)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
|
|
|
get("/timelines/public", MastodonAPIController, :public_timeline)
|
|
|
|
get("/timelines/tag/:tag", MastodonAPIController, :hashtag_timeline)
|
|
|
|
get("/timelines/list/:list_id", MastodonAPIController, :list_timeline)
|
|
|
|
|
2019-09-03 09:23:03 +00:00
|
|
|
get("/statuses", MastodonAPIController, :get_statuses)
|
2019-02-15 16:54:37 +00:00
|
|
|
get("/statuses/:id", MastodonAPIController, :get_status)
|
|
|
|
get("/statuses/:id/context", MastodonAPIController, :get_context)
|
|
|
|
|
2019-05-21 17:40:35 +00:00
|
|
|
get("/polls/:id", MastodonAPIController, :get_poll)
|
|
|
|
|
2019-02-15 16:54:37 +00:00
|
|
|
get("/accounts/:id/statuses", MastodonAPIController, :user_statuses)
|
|
|
|
get("/accounts/:id/followers", MastodonAPIController, :followers)
|
|
|
|
get("/accounts/:id/following", MastodonAPIController, :following)
|
|
|
|
get("/accounts/:id", MastodonAPIController, :user)
|
|
|
|
|
2019-06-14 11:39:57 +00:00
|
|
|
get("/search", SearchController, :search)
|
2019-04-23 02:47:43 +00:00
|
|
|
|
|
|
|
get("/pleroma/accounts/:id/favourites", MastodonAPIController, :user_favourites)
|
2019-02-15 16:54:37 +00:00
|
|
|
end
|
2017-09-13 15:36:02 +00:00
|
|
|
end
|
|
|
|
|
2018-06-13 16:21:59 +00:00
|
|
|
scope "/api/v2", Pleroma.Web.MastodonAPI do
|
2019-05-13 15:07:11 +00:00
|
|
|
pipe_through([:api, :oauth_read_or_public])
|
2019-06-14 11:39:57 +00:00
|
|
|
get("/search", SearchController, :search2)
|
2018-06-13 16:21:59 +00:00
|
|
|
end
|
|
|
|
|
2017-03-21 20:09:20 +00:00
|
|
|
scope "/api", Pleroma.Web do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:config)
|
2017-04-10 13:00:57 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/help/test", TwitterAPI.UtilController, :help_test)
|
|
|
|
post("/help/test", TwitterAPI.UtilController, :help_test)
|
|
|
|
get("/statusnet/config", TwitterAPI.UtilController, :config)
|
|
|
|
get("/statusnet/version", TwitterAPI.UtilController, :version)
|
2019-01-23 11:40:57 +00:00
|
|
|
get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
|
2017-08-24 12:07:05 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/api", Pleroma.Web do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:api)
|
2017-04-20 10:53:53 +00:00
|
|
|
|
2018-12-20 10:41:30 +00:00
|
|
|
get(
|
|
|
|
"/account/confirm_email/:user_id/:token",
|
|
|
|
TwitterAPI.Controller,
|
|
|
|
:confirm_email,
|
|
|
|
as: :confirm_email
|
|
|
|
)
|
2018-11-14 19:33:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:authenticated_api)
|
2017-03-20 20:30:44 +00:00
|
|
|
|
2019-02-19 16:10:55 +00:00
|
|
|
get("/oauth_tokens", TwitterAPI.Controller, :oauth_tokens)
|
|
|
|
delete("/oauth_tokens/:id", TwitterAPI.Controller, :revoke_token)
|
2017-04-20 10:53:53 +00:00
|
|
|
|
2019-02-09 14:09:08 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_read)
|
|
|
|
|
|
|
|
post("/qvitter/statuses/notifications/read", TwitterAPI.Controller, :notifications_read)
|
|
|
|
end
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
2017-04-17 11:44:41 +00:00
|
|
|
|
2019-07-17 17:34:57 +00:00
|
|
|
pipeline :ap_service_actor do
|
2019-02-20 20:45:40 +00:00
|
|
|
plug(:accepts, ["activity+json", "json"])
|
2018-08-06 08:13:05 +00:00
|
|
|
end
|
|
|
|
|
2017-04-18 16:41:51 +00:00
|
|
|
pipeline :ostatus do
|
2019-02-20 20:45:40 +00:00
|
|
|
plug(:accepts, ["html", "xml", "atom", "activity+json", "json"])
|
2017-04-18 16:41:51 +00:00
|
|
|
end
|
|
|
|
|
2018-12-10 12:25:33 +00:00
|
|
|
pipeline :oembed do
|
|
|
|
plug(:accepts, ["json", "xml"])
|
|
|
|
end
|
|
|
|
|
2017-04-20 08:16:06 +00:00
|
|
|
scope "/", Pleroma.Web do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:ostatus)
|
2019-09-12 19:40:53 +00:00
|
|
|
pipe_through(:http_signature)
|
2017-04-18 16:41:51 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/objects/:uuid", OStatus.OStatusController, :object)
|
|
|
|
get("/activities/:uuid", OStatus.OStatusController, :activity)
|
|
|
|
get("/notice/:id", OStatus.OStatusController, :notice)
|
2019-02-19 16:39:42 +00:00
|
|
|
get("/notice/:id/embed_player", OStatus.OStatusController, :notice_player)
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/users/:nickname/feed", OStatus.OStatusController, :feed)
|
|
|
|
get("/users/:nickname", OStatus.OStatusController, :feed_redirect)
|
2018-03-05 08:26:24 +00:00
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
post("/users/:nickname/salmon", OStatus.OStatusController, :salmon_incoming)
|
|
|
|
post("/push/hub/:nickname", Websub.WebsubController, :websub_subscription_request)
|
|
|
|
get("/push/subscriptions/:id", Websub.WebsubController, :websub_subscription_confirmation)
|
|
|
|
post("/push/subscriptions/:id", Websub.WebsubController, :websub_incoming)
|
2019-04-20 12:42:19 +00:00
|
|
|
|
|
|
|
get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
|
2017-04-18 16:41:51 +00:00
|
|
|
end
|
|
|
|
|
2017-12-11 09:37:22 +00:00
|
|
|
pipeline :activitypub do
|
2019-02-20 20:45:40 +00:00
|
|
|
plug(:accepts, ["activity+json", "json"])
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
|
2019-07-18 15:38:45 +00:00
|
|
|
plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
|
2017-12-11 09:37:22 +00:00
|
|
|
end
|
|
|
|
|
2018-03-21 17:23:27 +00:00
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
# XXX: not really ostatus
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:ostatus)
|
2018-03-21 17:23:27 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/users/:nickname/outbox", ActivityPubController, :outbox)
|
2019-01-11 22:34:32 +00:00
|
|
|
get("/objects/:uuid/likes", ActivityPubController, :object_likes)
|
2018-03-21 17:23:27 +00:00
|
|
|
end
|
|
|
|
|
2018-12-29 17:01:15 +00:00
|
|
|
pipeline :activitypub_client do
|
2019-02-20 20:45:40 +00:00
|
|
|
plug(:accepts, ["activity+json", "json"])
|
2018-12-29 17:01:15 +00:00
|
|
|
plug(:fetch_session)
|
|
|
|
plug(Pleroma.Plugs.OAuthPlug)
|
|
|
|
plug(Pleroma.Plugs.BasicAuthDecoderPlug)
|
|
|
|
plug(Pleroma.Plugs.UserFetcherPlug)
|
|
|
|
plug(Pleroma.Plugs.SessionAuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.LegacyAuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.AuthenticationPlug)
|
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
|
|
|
plug(Pleroma.Plugs.SetUserSessionIdPlug)
|
|
|
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
pipe_through([:activitypub_client])
|
|
|
|
|
2019-02-15 16:54:37 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_read)
|
|
|
|
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
|
2019-07-12 17:54:20 +00:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth_read_or_public)
|
|
|
|
get("/users/:nickname/followers", ActivityPubController, :followers)
|
|
|
|
get("/users/:nickname/following", ActivityPubController, :following)
|
|
|
|
end
|
2018-12-29 17:01:15 +00:00
|
|
|
end
|
|
|
|
|
2019-07-21 03:52:06 +00:00
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
pipe_through(:activitypub)
|
|
|
|
post("/inbox", ActivityPubController, :inbox)
|
|
|
|
post("/users/:nickname/inbox", ActivityPubController, :inbox)
|
|
|
|
end
|
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
scope "/relay", Pleroma.Web.ActivityPub do
|
2019-07-17 17:34:57 +00:00
|
|
|
pipe_through(:ap_service_actor)
|
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
get("/", ActivityPubController, :relay)
|
2019-08-22 19:39:06 +00:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:http_signature)
|
|
|
|
post("/inbox", ActivityPubController, :inbox)
|
|
|
|
end
|
2019-08-22 03:57:55 +00:00
|
|
|
|
|
|
|
get("/following", ActivityPubController, :following, assigns: %{relay: true})
|
|
|
|
get("/followers", ActivityPubController, :followers, assigns: %{relay: true})
|
2019-07-17 17:34:57 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/internal/fetch", Pleroma.Web.ActivityPub do
|
|
|
|
pipe_through(:ap_service_actor)
|
|
|
|
|
|
|
|
get("/", ActivityPubController, :internal_fetch)
|
|
|
|
post("/inbox", ActivityPubController, :inbox)
|
2018-11-05 14:19:03 +00:00
|
|
|
end
|
2018-08-06 06:11:51 +00:00
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
scope "/.well-known", Pleroma.Web do
|
|
|
|
pipe_through(:well_known)
|
2017-04-17 11:44:41 +00:00
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
get("/host-meta", WebFinger.WebFingerController, :host_meta)
|
|
|
|
get("/webfinger", WebFinger.WebFingerController, :webfinger)
|
|
|
|
get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
|
|
|
|
end
|
2018-05-02 19:31:42 +00:00
|
|
|
|
2018-11-05 14:19:03 +00:00
|
|
|
scope "/nodeinfo", Pleroma.Web do
|
|
|
|
get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
|
2017-04-17 11:44:41 +00:00
|
|
|
end
|
2017-04-19 13:25:18 +00:00
|
|
|
|
2017-11-19 12:23:16 +00:00
|
|
|
scope "/", Pleroma.Web.MastodonAPI do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:mastodon_html)
|
2017-11-12 13:23:05 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/web/login", MastodonAPIController, :login)
|
|
|
|
delete("/auth/sign_out", MastodonAPIController, :logout)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-07-16 21:44:50 +00:00
|
|
|
post("/auth/password", MastodonAPIController, :password_reset)
|
|
|
|
|
2019-02-15 16:54:37 +00:00
|
|
|
scope [] do
|
2019-07-29 16:17:22 +00:00
|
|
|
pipe_through(:oauth_read)
|
2019-02-15 16:54:37 +00:00
|
|
|
get("/web/*path", MastodonAPIController, :index)
|
|
|
|
end
|
2017-11-12 13:23:05 +00:00
|
|
|
end
|
|
|
|
|
2017-11-22 18:06:07 +00:00
|
|
|
pipeline :remote_media do
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-11-22 18:06:07 +00:00
|
|
|
scope "/proxy/", Pleroma.Web.MediaProxy do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:remote_media)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
get("/:sig/:url", MediaProxyController, :remote)
|
2018-11-13 14:58:02 +00:00
|
|
|
get("/:sig/:url/:filename", MediaProxyController, :remote)
|
2017-11-22 18:06:07 +00:00
|
|
|
end
|
|
|
|
|
2019-06-06 20:59:51 +00:00
|
|
|
if Pleroma.Config.get(:env) == :dev do
|
2018-12-11 11:59:25 +00:00
|
|
|
scope "/dev" do
|
|
|
|
pipe_through([:mailbox_preview])
|
|
|
|
|
|
|
|
forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
|
|
|
|
end
|
2017-11-22 18:06:07 +00:00
|
|
|
end
|
|
|
|
|
2019-05-17 16:21:11 +00:00
|
|
|
scope "/", Pleroma.Web.MongooseIM do
|
|
|
|
get("/user_exists", MongooseIMController, :user_exists)
|
|
|
|
get("/check_password", MongooseIMController, :check_password)
|
|
|
|
end
|
|
|
|
|
2017-04-19 13:25:18 +00:00
|
|
|
scope "/", Fallback do
|
2018-06-17 11:30:07 +00:00
|
|
|
get("/registration/:token", RedirectController, :registration_page)
|
2019-01-15 15:34:47 +00:00
|
|
|
get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
|
2019-05-21 01:40:29 +00:00
|
|
|
get("/api*path", RedirectController, :api_not_implemented)
|
2019-01-15 15:34:47 +00:00
|
|
|
get("/*path", RedirectController, :redirector)
|
2018-09-17 10:21:01 +00:00
|
|
|
|
|
|
|
options("/*path", RedirectController, :empty)
|
2017-04-19 13:25:18 +00:00
|
|
|
end
|
|
|
|
end
|