2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-03-17 17:09:58 +01:00
|
|
|
defmodule Pleroma.Web.Router do
|
|
|
|
use Pleroma.Web, :router
|
|
|
|
|
2020-10-05 22:48:00 +02:00
|
|
|
pipeline :accepts_html do
|
|
|
|
plug(:accepts, ["html"])
|
|
|
|
end
|
|
|
|
|
2020-10-11 21:34:28 +02:00
|
|
|
pipeline :accepts_html_xml do
|
|
|
|
plug(:accepts, ["html", "xml", "rss", "atom"])
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :accepts_html_json do
|
|
|
|
plug(:accepts, ["html", "activity+json", "json"])
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :accepts_html_xml_json do
|
|
|
|
plug(:accepts, ["html", "xml", "rss", "atom", "activity+json", "json"])
|
|
|
|
end
|
|
|
|
|
2020-10-05 22:48:00 +02:00
|
|
|
pipeline :accepts_xml_rss_atom do
|
|
|
|
plug(:accepts, ["xml", "rss", "atom"])
|
|
|
|
end
|
|
|
|
|
2019-03-11 18:37:26 +01:00
|
|
|
pipeline :browser do
|
|
|
|
plug(:accepts, ["html"])
|
|
|
|
plug(:fetch_session)
|
|
|
|
end
|
|
|
|
|
2019-04-01 13:46:50 +02:00
|
|
|
pipeline :oauth do
|
|
|
|
plug(:fetch_session)
|
2020-06-24 08:59:21 +02:00
|
|
|
plug(Pleroma.Web.Plugs.OAuthPlug)
|
2020-06-24 08:02:27 +02:00
|
|
|
plug(Pleroma.Web.Plugs.UserEnabledPlug)
|
2020-12-06 11:59:10 +01:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
|
2019-04-01 13:46:50 +02:00
|
|
|
end
|
|
|
|
|
2021-02-11 13:02:50 +01:00
|
|
|
# Note: expects _user_ authentication (user-unbound app-bound tokens don't qualify)
|
|
|
|
pipeline :expect_user_authentication do
|
2020-06-24 09:44:50 +02:00
|
|
|
plug(Pleroma.Web.Plugs.ExpectAuthenticatedCheckPlug)
|
2020-04-21 15:29:19 +02:00
|
|
|
end
|
|
|
|
|
2021-02-11 13:02:50 +01:00
|
|
|
# Note: expects public instance or _user_ authentication (user-unbound tokens don't qualify)
|
|
|
|
pipeline :expect_public_instance_or_user_authentication do
|
2020-06-24 09:43:19 +02:00
|
|
|
plug(Pleroma.Web.Plugs.ExpectPublicOrAuthenticatedCheckPlug)
|
2020-04-21 15:29:19 +02:00
|
|
|
end
|
|
|
|
|
2020-04-20 14:38:00 +02:00
|
|
|
pipeline :authenticate do
|
2020-06-24 08:59:21 +02:00
|
|
|
plug(Pleroma.Web.Plugs.OAuthPlug)
|
2020-06-24 10:13:19 +02:00
|
|
|
plug(Pleroma.Web.Plugs.BasicAuthDecoderPlug)
|
2020-06-24 08:00:44 +02:00
|
|
|
plug(Pleroma.Web.Plugs.UserFetcherPlug)
|
2020-06-24 10:16:09 +02:00
|
|
|
plug(Pleroma.Web.Plugs.AuthenticationPlug)
|
2020-04-20 14:38:00 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :after_auth do
|
2020-06-24 08:02:27 +02:00
|
|
|
plug(Pleroma.Web.Plugs.UserEnabledPlug)
|
2020-06-24 08:07:39 +02:00
|
|
|
plug(Pleroma.Web.Plugs.SetUserSessionIdPlug)
|
2020-12-06 11:59:10 +01:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
|
2021-01-22 21:37:49 +01:00
|
|
|
plug(Pleroma.Web.Plugs.UserTrackingPlug)
|
2017-03-17 17:09:58 +01:00
|
|
|
end
|
|
|
|
|
2020-04-20 14:38:00 +02:00
|
|
|
pipeline :base_api do
|
2018-03-30 15:01:53 +02:00
|
|
|
plug(:accepts, ["json"])
|
|
|
|
plug(:fetch_session)
|
2020-04-20 14:38:00 +02:00
|
|
|
plug(:authenticate)
|
|
|
|
plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
|
|
|
|
end
|
|
|
|
|
2021-02-11 13:02:50 +01:00
|
|
|
pipeline :no_auth_or_privacy_expectations_api do
|
2020-04-20 14:38:00 +02:00
|
|
|
plug(:base_api)
|
|
|
|
plug(:after_auth)
|
2020-06-24 09:09:39 +02:00
|
|
|
plug(Pleroma.Web.Plugs.IdempotencyPlug)
|
2020-04-20 14:38:00 +02:00
|
|
|
end
|
|
|
|
|
2021-02-11 13:02:50 +01:00
|
|
|
# Pipeline for app-related endpoints (no user auth checks — app-bound tokens must be supported)
|
|
|
|
pipeline :app_api do
|
|
|
|
plug(:no_auth_or_privacy_expectations_api)
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :api do
|
|
|
|
plug(:expect_public_instance_or_user_authentication)
|
|
|
|
plug(:no_auth_or_privacy_expectations_api)
|
|
|
|
end
|
|
|
|
|
2020-04-20 14:38:00 +02:00
|
|
|
pipeline :authenticated_api do
|
2021-02-11 13:02:50 +01:00
|
|
|
plug(:expect_user_authentication)
|
|
|
|
plug(:no_auth_or_privacy_expectations_api)
|
2020-06-24 09:55:56 +02:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureAuthenticatedPlug)
|
2017-03-21 21:09:20 +01:00
|
|
|
end
|
|
|
|
|
2018-10-02 18:38:16 +02:00
|
|
|
pipeline :admin_api do
|
2021-02-11 13:02:50 +01:00
|
|
|
plug(:expect_user_authentication)
|
2020-04-20 14:38:00 +02:00
|
|
|
plug(:base_api)
|
2020-06-24 10:18:42 +02:00
|
|
|
plug(Pleroma.Web.Plugs.AdminSecretAuthenticationPlug)
|
2020-04-20 14:38:00 +02:00
|
|
|
plug(:after_auth)
|
2020-06-24 09:55:56 +02:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureAuthenticatedPlug)
|
2020-06-24 07:59:35 +02:00
|
|
|
plug(Pleroma.Web.Plugs.UserIsAdminPlug)
|
2020-06-24 09:09:39 +02:00
|
|
|
plug(Pleroma.Web.Plugs.IdempotencyPlug)
|
2018-10-02 18:38:16 +02:00
|
|
|
end
|
|
|
|
|
2017-11-12 14:23:05 +01:00
|
|
|
pipeline :mastodon_html do
|
2020-04-20 14:38:00 +02:00
|
|
|
plug(:browser)
|
|
|
|
plug(:authenticate)
|
|
|
|
plug(:after_auth)
|
2017-11-12 14:23:05 +01:00
|
|
|
end
|
|
|
|
|
2018-01-18 17:42:44 +01:00
|
|
|
pipeline :pleroma_html do
|
2020-04-20 14:38:00 +02:00
|
|
|
plug(:browser)
|
|
|
|
plug(:authenticate)
|
2020-12-06 11:59:10 +01:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
|
2018-01-18 17:42:44 +01:00
|
|
|
end
|
|
|
|
|
2017-04-17 13:44:41 +02:00
|
|
|
pipeline :well_known do
|
2018-06-15 22:01:17 +02:00
|
|
|
plug(:accepts, ["json", "jrd+json", "xml", "xrd+xml"])
|
2017-04-17 13:44:41 +02:00
|
|
|
end
|
|
|
|
|
2017-08-24 14:07:05 +02:00
|
|
|
pipeline :config do
|
2018-03-30 15:01:53 +02:00
|
|
|
plug(:accepts, ["json", "xml"])
|
2020-04-01 21:00:59 +02:00
|
|
|
plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
|
2017-08-24 14:07:05 +02:00
|
|
|
end
|
|
|
|
|
2017-10-19 21:51:56 +02:00
|
|
|
pipeline :pleroma_api do
|
2018-03-30 15:01:53 +02:00
|
|
|
plug(:accepts, ["html", "json"])
|
2020-04-01 21:00:59 +02:00
|
|
|
plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
|
2017-10-19 17:37:24 +02:00
|
|
|
end
|
|
|
|
|
2018-12-11 12:59:25 +01: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 21:39:06 +02:00
|
|
|
pipeline :http_signature do
|
|
|
|
plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
|
2019-09-12 21:40:53 +02:00
|
|
|
plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
|
2019-08-22 21:39:06 +02:00
|
|
|
end
|
|
|
|
|
2021-02-18 22:59:06 +01:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.TwitterAPI do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:pleroma_api)
|
2019-02-15 17:54:37 +01:00
|
|
|
|
2019-06-24 21:01:56 +02:00
|
|
|
get("/password_reset/:token", PasswordController, :reset, as: :reset_password)
|
|
|
|
post("/password_reset", PasswordController, :do_reset, as: :reset_password)
|
2018-03-30 15:01:53 +02:00
|
|
|
get("/emoji", UtilController, :emoji)
|
2018-12-14 23:31:19 +01:00
|
|
|
get("/captcha", UtilController, :captcha)
|
2019-04-22 09:19:53 +02:00
|
|
|
get("/healthcheck", UtilController, :healthcheck)
|
2017-10-19 17:37:24 +02:00
|
|
|
end
|
|
|
|
|
2021-02-18 22:59:06 +01:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web do
|
2019-01-21 22:44:14 +01:00
|
|
|
pipe_through(:pleroma_api)
|
|
|
|
post("/uploader_callback/:upload_path", UploaderController, :callback)
|
|
|
|
end
|
|
|
|
|
2021-02-18 22:59:06 +01:00
|
|
|
scope "/api/v1/pleroma/admin", Pleroma.Web.AdminAPI do
|
2019-10-06 16:12:17 +02:00
|
|
|
pipe_through(:admin_api)
|
2019-02-15 17:54:37 +01:00
|
|
|
|
2020-05-07 10:14:54 +02:00
|
|
|
put("/users/disable_mfa", AdminAPIController, :disable_mfa)
|
2018-12-06 18:06:50 +01:00
|
|
|
put("/users/tag", AdminAPIController, :tag_users)
|
2018-12-07 09:04:39 +01:00
|
|
|
delete("/users/tag", AdminAPIController, :untag_users)
|
2018-10-02 18:38:16 +02:00
|
|
|
|
2019-05-11 10:32:04 +02:00
|
|
|
get("/users/:nickname/permission_group", AdminAPIController, :right_get)
|
|
|
|
get("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_get)
|
2019-10-11 14:58:45 +02:00
|
|
|
|
2019-05-11 10:32:04 +02:00
|
|
|
post("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_add)
|
|
|
|
|
|
|
|
delete(
|
|
|
|
"/users/:nickname/permission_group/:permission_group",
|
|
|
|
AdminAPIController,
|
|
|
|
:right_delete
|
|
|
|
)
|
|
|
|
|
2019-10-11 14:58:45 +02:00
|
|
|
post("/users/permission_group/:permission_group", AdminAPIController, :right_add_multiple)
|
|
|
|
|
|
|
|
delete(
|
|
|
|
"/users/permission_group/:permission_group",
|
|
|
|
AdminAPIController,
|
|
|
|
:right_delete_multiple
|
|
|
|
)
|
2019-02-19 16:40:57 +01:00
|
|
|
|
2020-09-21 14:01:03 +02:00
|
|
|
post("/users/follow", UserController, :follow)
|
|
|
|
post("/users/unfollow", UserController, :unfollow)
|
|
|
|
delete("/users", UserController, :delete)
|
|
|
|
post("/users", UserController, :create)
|
|
|
|
patch("/users/:nickname/toggle_activation", UserController, :toggle_activation)
|
|
|
|
patch("/users/activate", UserController, :activate)
|
|
|
|
patch("/users/deactivate", UserController, :deactivate)
|
|
|
|
patch("/users/approve", UserController, :approve)
|
|
|
|
|
2020-05-22 15:52:26 +02:00
|
|
|
get("/relay", RelayController, :index)
|
|
|
|
post("/relay", RelayController, :follow)
|
|
|
|
delete("/relay", RelayController, :unfollow)
|
2018-10-02 18:38:16 +02:00
|
|
|
|
2020-05-26 13:21:33 +02:00
|
|
|
post("/users/invite_token", InviteController, :create)
|
|
|
|
get("/users/invites", InviteController, :index)
|
|
|
|
post("/users/revoke_invite", InviteController, :revoke)
|
|
|
|
post("/users/email_invite", InviteController, :email)
|
2018-12-13 16:23:05 +01:00
|
|
|
|
2019-05-11 10:32:04 +02:00
|
|
|
get("/users/:nickname/password_reset", AdminAPIController, :get_password_reset)
|
2019-11-01 16:45:47 +01:00
|
|
|
patch("/users/force_password_reset", AdminAPIController, :force_password_reset)
|
2020-01-31 19:07:46 +01:00
|
|
|
get("/users/:nickname/credentials", AdminAPIController, :show_user_credentials)
|
|
|
|
patch("/users/:nickname/credentials", AdminAPIController, :update_user_credentials)
|
2019-05-11 10:32:04 +02:00
|
|
|
|
2021-03-02 17:49:17 +01:00
|
|
|
get("/users", UserController, :index)
|
2020-09-21 14:01:03 +02:00
|
|
|
get("/users/:nickname", UserController, :show)
|
2019-07-13 23:37:19 +02:00
|
|
|
get("/users/:nickname/statuses", AdminAPIController, :list_user_statuses)
|
2020-09-01 03:23:33 +02:00
|
|
|
get("/users/:nickname/chats", AdminAPIController, :list_user_chats)
|
2019-05-16 21:09:18 +02:00
|
|
|
|
2019-11-14 15:44:07 +01:00
|
|
|
get("/instances/:instance/statuses", AdminAPIController, :list_instance_statuses)
|
|
|
|
|
2020-08-30 14:15:14 +02:00
|
|
|
get("/instance_document/:name", InstanceDocumentController, :show)
|
|
|
|
patch("/instance_document/:name", InstanceDocumentController, :update)
|
|
|
|
delete("/instance_document/:name", InstanceDocumentController, :delete)
|
|
|
|
|
2019-11-19 12:14:02 +01:00
|
|
|
patch("/users/confirm_email", AdminAPIController, :confirm_email)
|
|
|
|
patch("/users/resend_confirmation_email", AdminAPIController, :resend_confirmation_email)
|
|
|
|
|
2020-05-21 17:43:56 +02:00
|
|
|
get("/reports", ReportController, :index)
|
|
|
|
get("/reports/:id", ReportController, :show)
|
|
|
|
patch("/reports", ReportController, :update)
|
|
|
|
post("/reports/:id/notes", ReportController, :notes_create)
|
|
|
|
delete("/reports/:report_id/notes/:id", ReportController, :notes_delete)
|
2019-05-16 21:09:18 +02:00
|
|
|
|
2020-05-20 16:00:41 +02:00
|
|
|
get("/statuses/:id", StatusController, :show)
|
|
|
|
put("/statuses/:id", StatusController, :update)
|
|
|
|
delete("/statuses/:id", StatusController, :delete)
|
|
|
|
get("/statuses", StatusController, :index)
|
2019-06-14 17:45:05 +02:00
|
|
|
|
2020-05-28 20:23:15 +02:00
|
|
|
get("/config", ConfigController, :show)
|
|
|
|
post("/config", ConfigController, :update)
|
|
|
|
get("/config/descriptions", ConfigController, :descriptions)
|
2020-04-13 13:07:23 +02:00
|
|
|
get("/need_reboot", AdminAPIController, :need_reboot)
|
2020-01-25 16:42:04 +01:00
|
|
|
get("/restart", AdminAPIController, :restart)
|
2019-08-25 21:39:37 +02:00
|
|
|
|
|
|
|
get("/moderation_log", AdminAPIController, :list_log)
|
2019-09-12 19:38:57 +02:00
|
|
|
|
|
|
|
post("/reload_emoji", AdminAPIController, :reload_emoji)
|
2020-01-09 20:18:55 +01:00
|
|
|
get("/stats", AdminAPIController, :stats)
|
2020-02-28 09:16:40 +01:00
|
|
|
|
2020-05-25 20:02:22 +02:00
|
|
|
get("/oauth_app", OAuthAppController, :index)
|
|
|
|
post("/oauth_app", OAuthAppController, :create)
|
|
|
|
patch("/oauth_app/:id", OAuthAppController, :update)
|
|
|
|
delete("/oauth_app/:id", OAuthAppController, :delete)
|
2020-06-12 13:49:54 +02:00
|
|
|
|
|
|
|
get("/media_proxy_caches", MediaProxyCacheController, :index)
|
|
|
|
post("/media_proxy_caches/delete", MediaProxyCacheController, :delete)
|
|
|
|
post("/media_proxy_caches/purge", MediaProxyCacheController, :purge)
|
2020-09-01 02:56:05 +02:00
|
|
|
|
2020-09-02 02:49:46 +02:00
|
|
|
get("/chats/:id", ChatController, :show)
|
2020-09-02 02:39:34 +02:00
|
|
|
get("/chats/:id/messages", ChatController, :messages)
|
2020-09-01 02:56:05 +02:00
|
|
|
delete("/chats/:id/messages/:message_id", ChatController, :delete_message)
|
2020-10-30 16:34:02 +01:00
|
|
|
|
2020-10-27 16:20:04 +01:00
|
|
|
get("/frontends", FrontendController, :index)
|
2020-11-11 17:39:57 +01:00
|
|
|
post("/frontends/install", FrontendController, :install)
|
2020-11-02 11:43:45 +01:00
|
|
|
|
2020-10-30 16:34:02 +01:00
|
|
|
post("/backups", AdminAPIController, :create_backup)
|
2018-10-02 18:38:16 +02:00
|
|
|
end
|
|
|
|
|
2021-02-18 22:59:06 +01:00
|
|
|
scope "/api/v1/pleroma/emoji", Pleroma.Web.PleromaAPI do
|
2020-09-20 08:51:36 +02:00
|
|
|
scope "/pack" do
|
|
|
|
pipe_through(:admin_api)
|
|
|
|
|
|
|
|
post("/", EmojiPackController, :create)
|
|
|
|
patch("/", EmojiPackController, :update)
|
|
|
|
delete("/", EmojiPackController, :delete)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/pack" do
|
|
|
|
pipe_through(:api)
|
|
|
|
|
|
|
|
get("/", EmojiPackController, :show)
|
|
|
|
end
|
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
# Modifying packs
|
2019-08-10 23:39:21 +02:00
|
|
|
scope "/packs" do
|
2019-10-06 16:12:17 +02:00
|
|
|
pipe_through(:admin_api)
|
2019-08-10 23:39:21 +02:00
|
|
|
|
2020-05-18 17:38:22 +02:00
|
|
|
get("/import", EmojiPackController, :import_from_filesystem)
|
|
|
|
get("/remote", EmojiPackController, :remote)
|
|
|
|
post("/download", EmojiPackController, :download)
|
2019-09-10 20:16:30 +02:00
|
|
|
|
2020-09-24 08:42:30 +02:00
|
|
|
post("/files", EmojiFileController, :create)
|
|
|
|
patch("/files", EmojiFileController, :update)
|
|
|
|
delete("/files", EmojiFileController, :delete)
|
2019-08-10 23:39:21 +02:00
|
|
|
end
|
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
# Pack info / downloading
|
2019-08-10 23:39:21 +02:00
|
|
|
scope "/packs" do
|
2020-05-14 17:21:51 +02:00
|
|
|
pipe_through(:api)
|
2020-09-20 08:51:36 +02:00
|
|
|
|
2020-05-18 17:38:22 +02:00
|
|
|
get("/", EmojiPackController, :index)
|
2020-06-27 12:43:25 +02:00
|
|
|
get("/archive", EmojiPackController, :archive)
|
2019-08-10 23:39:21 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-18 17:42:44 +01:00
|
|
|
scope "/", Pleroma.Web.TwitterAPI do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:pleroma_html)
|
2019-02-15 17:54:37 +01:00
|
|
|
|
2018-03-30 15:01:53 +02:00
|
|
|
post("/main/ostatus", UtilController, :remote_subscribe)
|
2019-12-20 14:34:14 +01:00
|
|
|
get("/ostatus_subscribe", RemoteFollowController, :follow)
|
|
|
|
post("/ostatus_subscribe", RemoteFollowController, :do_follow)
|
2018-01-18 17:42:44 +01:00
|
|
|
end
|
|
|
|
|
2017-12-12 17:35:23 +01:00
|
|
|
scope "/api/pleroma", Pleroma.Web.TwitterAPI do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:authenticated_api)
|
2019-02-09 15:32:33 +01:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
post("/change_email", UtilController, :change_email)
|
|
|
|
post("/change_password", UtilController, :change_password)
|
|
|
|
post("/delete_account", UtilController, :delete_account)
|
|
|
|
put("/notification_settings", UtilController, :update_notificaton_settings)
|
|
|
|
post("/disable_account", UtilController, :disable_account)
|
2017-12-12 17:35:23 +01:00
|
|
|
end
|
|
|
|
|
2020-05-07 10:14:54 +02:00
|
|
|
scope "/api/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
2020-09-06 20:42:51 +02:00
|
|
|
post("/mutes_import", UserImportController, :mutes)
|
|
|
|
post("/blocks_import", UserImportController, :blocks)
|
|
|
|
post("/follow_import", UserImportController, :follow)
|
|
|
|
|
2020-05-07 10:14:54 +02:00
|
|
|
get("/accounts/mfa", TwoFactorAuthenticationController, :settings)
|
|
|
|
get("/accounts/mfa/backup_codes", TwoFactorAuthenticationController, :backup_codes)
|
|
|
|
get("/accounts/mfa/setup/:method", TwoFactorAuthenticationController, :setup)
|
|
|
|
post("/accounts/mfa/confirm/:method", TwoFactorAuthenticationController, :confirm)
|
|
|
|
delete("/accounts/mfa/:method", TwoFactorAuthenticationController, :disable)
|
|
|
|
end
|
|
|
|
|
2017-09-06 19:06:25 +02:00
|
|
|
scope "/oauth", Pleroma.Web.OAuth do
|
2021-01-28 17:49:43 +01:00
|
|
|
# Note: use /api/v1/accounts/verify_credentials for userinfo of signed-in user
|
|
|
|
|
2020-11-25 19:47:23 +01:00
|
|
|
get("/registration_details", OAuthController, :registration_details)
|
|
|
|
|
|
|
|
post("/mfa/verify", MFAController, :verify, as: :mfa_verify)
|
|
|
|
get("/mfa", MFAController, :show)
|
|
|
|
|
2019-04-01 13:46:50 +02:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth)
|
2020-11-21 17:47:25 +01:00
|
|
|
|
2019-04-01 13:46:50 +02:00
|
|
|
get("/authorize", OAuthController, :authorize)
|
2020-11-21 17:47:25 +01:00
|
|
|
post("/authorize", OAuthController, :create_authorization)
|
2019-04-01 13:46:50 +02:00
|
|
|
end
|
|
|
|
|
2020-11-21 17:47:25 +01:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:fetch_session)
|
|
|
|
|
2020-11-25 19:47:23 +01:00
|
|
|
post("/token", OAuthController, :token_exchange)
|
2020-11-21 17:47:25 +01:00
|
|
|
post("/revoke", OAuthController, :token_revoke)
|
2020-11-25 19:47:23 +01:00
|
|
|
post("/mfa/challenge", MFAController, :challenge)
|
2020-11-21 17:47:25 +01:00
|
|
|
end
|
|
|
|
|
2019-03-11 18:37:26 +01:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:browser)
|
|
|
|
|
2019-03-27 13:39:35 +01:00
|
|
|
get("/prepare_request", OAuthController, :prepare_request)
|
2019-03-11 18:37:26 +01:00
|
|
|
get("/:provider", OAuthController, :request)
|
|
|
|
get("/:provider/callback", OAuthController, :callback)
|
2019-03-20 08:35:31 +01:00
|
|
|
post("/register", OAuthController, :register)
|
2019-03-11 18:37:26 +01:00
|
|
|
end
|
2017-09-06 19:06:25 +02:00
|
|
|
end
|
|
|
|
|
2019-09-12 18:48:25 +02:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
pipe_through(:api)
|
|
|
|
|
2020-05-19 21:50:49 +02:00
|
|
|
get("/statuses/:id/reactions/:emoji", EmojiReactionController, :index)
|
|
|
|
get("/statuses/:id/reactions", EmojiReactionController, :index)
|
2019-09-12 18:48:25 +02:00
|
|
|
end
|
|
|
|
|
2021-01-25 20:15:33 +01:00
|
|
|
scope "/api/v0/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
get("/reports", ReportController, :index)
|
|
|
|
get("/reports/:id", ReportController, :show)
|
|
|
|
end
|
|
|
|
|
2019-08-02 19:53:08 +02:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
scope [] do
|
2019-09-30 09:28:12 +02:00
|
|
|
pipe_through(:authenticated_api)
|
2019-10-06 16:12:17 +02:00
|
|
|
|
2020-04-27 17:48:34 +02:00
|
|
|
post("/chats/by-account-id/:id", ChatController, :create)
|
2020-04-09 15:13:55 +02:00
|
|
|
get("/chats", ChatController, :index)
|
2020-05-10 13:26:14 +02:00
|
|
|
get("/chats/:id", ChatController, :show)
|
2020-04-09 16:59:49 +02:00
|
|
|
get("/chats/:id/messages", ChatController, :messages)
|
2020-04-09 17:18:31 +02:00
|
|
|
post("/chats/:id/messages", ChatController, :post_chat_message)
|
2020-05-12 13:13:03 +02:00
|
|
|
delete("/chats/:id/messages/:message_id", ChatController, :delete_message)
|
2020-05-04 13:10:36 +02:00
|
|
|
post("/chats/:id/read", ChatController, :mark_as_read)
|
2020-06-03 19:21:23 +02:00
|
|
|
post("/chats/:id/messages/:message_id/read", ChatController, :mark_message_as_read)
|
2019-08-14 15:55:43 +02:00
|
|
|
|
2020-05-20 13:00:11 +02:00
|
|
|
get("/conversations/:id/statuses", ConversationController, :statuses)
|
|
|
|
get("/conversations/:id", ConversationController, :show)
|
|
|
|
post("/conversations/read", ConversationController, :mark_as_read)
|
|
|
|
patch("/conversations/:id", ConversationController, :update)
|
2019-10-06 16:12:17 +02:00
|
|
|
|
2020-05-19 21:50:49 +02:00
|
|
|
put("/statuses/:id/reactions/:emoji", EmojiReactionController, :create)
|
|
|
|
delete("/statuses/:id/reactions/:emoji", EmojiReactionController, :delete)
|
2020-05-20 13:14:11 +02:00
|
|
|
post("/notifications/read", NotificationController, :mark_as_read)
|
2019-09-30 09:28:12 +02:00
|
|
|
|
2019-09-30 14:32:43 +02:00
|
|
|
get("/mascot", MascotController, :show)
|
|
|
|
put("/mascot", MascotController, :update)
|
|
|
|
|
2020-05-19 13:53:18 +02:00
|
|
|
post("/scrobble", ScrobbleController, :create)
|
2020-09-20 18:43:27 +02:00
|
|
|
|
|
|
|
get("/backups", BackupController, :index)
|
|
|
|
post("/backups", BackupController, :create)
|
2019-08-02 19:53:08 +02:00
|
|
|
end
|
2019-09-28 04:12:12 +02:00
|
|
|
|
|
|
|
scope [] do
|
2019-09-30 09:28:12 +02:00
|
|
|
pipe_through(:api)
|
|
|
|
get("/accounts/:id/favourites", AccountController, :favourites)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
|
|
|
post("/accounts/:id/subscribe", AccountController, :subscribe)
|
|
|
|
post("/accounts/:id/unsubscribe", AccountController, :unsubscribe)
|
2019-09-28 04:12:12 +02:00
|
|
|
end
|
2019-09-30 09:28:12 +02:00
|
|
|
|
|
|
|
post("/accounts/confirmation_resend", AccountController, :confirmation_resend)
|
2019-09-28 04:12:12 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
|
2019-10-06 16:12:17 +02:00
|
|
|
pipe_through(:api)
|
2020-05-19 13:53:18 +02:00
|
|
|
get("/accounts/:id/scrobbles", ScrobbleController, :index)
|
2020-10-16 00:32:20 +02:00
|
|
|
get("/federation_status", InstancesController, :show)
|
2019-08-02 19:53:08 +02:00
|
|
|
end
|
|
|
|
|
2021-02-17 13:58:33 +01:00
|
|
|
scope "/api/v2/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
get("/chats", ChatController, :index2)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-06 19:06:25 +02:00
|
|
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:authenticated_api)
|
2017-09-06 19:06:25 +02:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/accounts/verify_credentials", AccountController, :verify_credentials)
|
2020-04-21 15:29:19 +02:00
|
|
|
patch("/accounts/update_credentials", AccountController, :update_credentials)
|
2019-02-15 17:54:37 +01:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/accounts/relationships", AccountController, :relationships)
|
|
|
|
get("/accounts/:id/lists", AccountController, :lists)
|
2020-04-06 09:20:44 +02:00
|
|
|
get("/accounts/:id/identity_proofs", AccountController, :identity_proofs)
|
2020-04-21 15:29:19 +02:00
|
|
|
get("/endorsements", AccountController, :endorsements)
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/blocks", AccountController, :blocks)
|
|
|
|
get("/mutes", AccountController, :mutes)
|
2017-09-13 15:55:10 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
post("/follows", AccountController, :follow_by_uri)
|
|
|
|
post("/accounts/:id/follow", AccountController, :follow)
|
|
|
|
post("/accounts/:id/unfollow", AccountController, :unfollow)
|
|
|
|
post("/accounts/:id/block", AccountController, :block)
|
|
|
|
post("/accounts/:id/unblock", AccountController, :unblock)
|
|
|
|
post("/accounts/:id/mute", AccountController, :mute)
|
|
|
|
post("/accounts/:id/unmute", AccountController, :unmute)
|
2017-09-09 13:15:01 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
get("/conversations", ConversationController, :index)
|
|
|
|
post("/conversations/:id/read", ConversationController, :mark_as_read)
|
2021-02-15 18:48:13 +01:00
|
|
|
delete("/conversations/:id", ConversationController, :delete)
|
2017-09-17 13:09:49 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
get("/domain_blocks", DomainBlockController, :index)
|
|
|
|
post("/domain_blocks", DomainBlockController, :create)
|
|
|
|
delete("/domain_blocks", DomainBlockController, :delete)
|
|
|
|
|
|
|
|
get("/filters", FilterController, :index)
|
|
|
|
|
|
|
|
post("/filters", FilterController, :create)
|
|
|
|
get("/filters/:id", FilterController, :show)
|
|
|
|
put("/filters/:id", FilterController, :update)
|
|
|
|
delete("/filters/:id", FilterController, :delete)
|
|
|
|
|
|
|
|
get("/follow_requests", FollowRequestController, :index)
|
|
|
|
post("/follow_requests/:id/authorize", FollowRequestController, :authorize)
|
|
|
|
post("/follow_requests/:id/reject", FollowRequestController, :reject)
|
2019-03-28 10:39:10 +01:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/lists", ListController, :index)
|
|
|
|
get("/lists/:id", ListController, :show)
|
|
|
|
get("/lists/:id/accounts", ListController, :list_accounts)
|
2017-09-09 17:48:57 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
delete("/lists/:id", ListController, :delete)
|
|
|
|
post("/lists", ListController, :create)
|
|
|
|
put("/lists/:id", ListController, :update)
|
|
|
|
post("/lists/:id/accounts", ListController, :add_to_list)
|
|
|
|
delete("/lists/:id/accounts", ListController, :remove_from_list)
|
2017-09-09 19:19:13 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
get("/markers", MarkerController, :index)
|
|
|
|
post("/markers", MarkerController, :upsert)
|
2017-09-14 08:08:32 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
post("/media", MediaController, :create)
|
2020-04-29 17:38:14 +02:00
|
|
|
get("/media/:id", MediaController, :show)
|
2020-04-21 15:29:19 +02:00
|
|
|
put("/media/:id", MediaController, :update)
|
2018-04-29 15:02:46 +02:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/notifications", NotificationController, :index)
|
|
|
|
get("/notifications/:id", NotificationController, :show)
|
2019-03-17 17:06:28 +01:00
|
|
|
|
2020-04-09 15:08:43 +02:00
|
|
|
post("/notifications/:id/dismiss", NotificationController, :dismiss)
|
2019-10-06 16:12:17 +02:00
|
|
|
post("/notifications/clear", NotificationController, :clear)
|
|
|
|
delete("/notifications/destroy_multiple", NotificationController, :destroy_multiple)
|
2020-04-09 15:08:43 +02:00
|
|
|
# Deprecated: was removed in Mastodon v3, use `/notifications/:id/dismiss` instead
|
2020-04-28 19:27:54 +02:00
|
|
|
post("/notifications/dismiss", NotificationController, :dismiss_via_body)
|
2018-06-03 21:21:23 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
post("/polls/:id/votes", PollController, :vote)
|
2017-09-14 08:08:32 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
post("/reports", ReportController, :create)
|
2018-04-29 15:02:46 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
get("/scheduled_statuses", ScheduledActivityController, :index)
|
|
|
|
get("/scheduled_statuses/:id", ScheduledActivityController, :show)
|
2019-03-17 17:06:28 +01:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
put("/scheduled_statuses/:id", ScheduledActivityController, :update)
|
|
|
|
delete("/scheduled_statuses/:id", ScheduledActivityController, :delete)
|
2018-06-03 21:21:23 +02:00
|
|
|
|
2020-04-24 21:25:27 +02:00
|
|
|
# Unlike `GET /api/v1/accounts/:id/favourites`, demands authentication
|
2020-04-21 15:29:19 +02:00
|
|
|
get("/favourites", StatusController, :favourites)
|
|
|
|
get("/bookmarks", StatusController, :bookmarks)
|
2018-07-13 17:21:38 +02:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
post("/statuses", StatusController, :create)
|
|
|
|
delete("/statuses/:id", StatusController, :delete)
|
|
|
|
post("/statuses/:id/reblog", StatusController, :reblog)
|
|
|
|
post("/statuses/:id/unreblog", StatusController, :unreblog)
|
|
|
|
post("/statuses/:id/favourite", StatusController, :favourite)
|
|
|
|
post("/statuses/:id/unfavourite", StatusController, :unfavourite)
|
|
|
|
post("/statuses/:id/pin", StatusController, :pin)
|
|
|
|
post("/statuses/:id/unpin", StatusController, :unpin)
|
|
|
|
post("/statuses/:id/bookmark", StatusController, :bookmark)
|
|
|
|
post("/statuses/:id/unbookmark", StatusController, :unbookmark)
|
|
|
|
post("/statuses/:id/mute", StatusController, :mute_conversation)
|
|
|
|
post("/statuses/:id/unmute", StatusController, :unmute_conversation)
|
2019-09-09 16:49:02 +02:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
post("/push/subscription", SubscriptionController, :create)
|
2020-05-05 14:43:00 +02:00
|
|
|
get("/push/subscription", SubscriptionController, :show)
|
2019-10-06 16:12:17 +02:00
|
|
|
put("/push/subscription", SubscriptionController, :update)
|
|
|
|
delete("/push/subscription", SubscriptionController, :delete)
|
2019-10-17 14:26:59 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
get("/suggestions", SuggestionController, :index)
|
|
|
|
|
|
|
|
get("/timelines/home", TimelineController, :home)
|
|
|
|
get("/timelines/direct", TimelineController, :direct)
|
2020-04-22 17:50:25 +02:00
|
|
|
get("/timelines/list/:list_id", TimelineController, :list)
|
2017-08-24 14:15:16 +02:00
|
|
|
end
|
|
|
|
|
2019-10-02 15:05:14 +02:00
|
|
|
scope "/api/web", Pleroma.Web do
|
2019-10-06 16:12:17 +02:00
|
|
|
pipe_through(:authenticated_api)
|
2018-04-07 16:26:56 +02:00
|
|
|
|
2020-06-22 23:45:29 +02:00
|
|
|
# Backend-obscure settings blob for MastoFE, don't parse/reuse elsewhere
|
2019-10-02 15:05:14 +02:00
|
|
|
put("/settings", MastoFEController, :put_settings)
|
2018-04-07 16:26:56 +02:00
|
|
|
end
|
|
|
|
|
2021-02-11 13:02:50 +01:00
|
|
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
|
|
|
pipe_through(:app_api)
|
|
|
|
|
|
|
|
post("/apps", AppController, :create)
|
|
|
|
get("/apps/verify_credentials", AppController, :verify_credentials)
|
|
|
|
end
|
|
|
|
|
2017-09-13 17:36:02 +02:00
|
|
|
scope "/api/v1", Pleroma.Web.MastodonAPI do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:api)
|
2019-02-15 17:54:37 +01:00
|
|
|
|
2019-10-02 14:16:34 +02:00
|
|
|
get("/accounts/search", SearchController, :account_search)
|
2020-04-22 17:50:25 +02:00
|
|
|
get("/search", SearchController, :search)
|
|
|
|
|
|
|
|
get("/accounts/:id/statuses", AccountController, :statuses)
|
|
|
|
get("/accounts/:id/followers", AccountController, :followers)
|
|
|
|
get("/accounts/:id/following", AccountController, :following)
|
|
|
|
get("/accounts/:id", AccountController, :show)
|
|
|
|
|
|
|
|
post("/accounts", AccountController, :create)
|
2019-05-13 20:35:45 +02:00
|
|
|
|
2019-10-02 09:13:52 +02:00
|
|
|
get("/instance", InstanceController, :show)
|
|
|
|
get("/instance/peers", InstanceController, :peers)
|
|
|
|
|
2020-04-22 17:50:25 +02:00
|
|
|
get("/statuses", StatusController, :index)
|
|
|
|
get("/statuses/:id", StatusController, :show)
|
|
|
|
get("/statuses/:id/context", StatusController, :context)
|
2019-09-09 16:49:02 +02:00
|
|
|
get("/statuses/:id/card", StatusController, :card)
|
|
|
|
get("/statuses/:id/favourited_by", StatusController, :favourited_by)
|
|
|
|
get("/statuses/:id/reblogged_by", StatusController, :reblogged_by)
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2019-10-02 14:16:34 +02:00
|
|
|
get("/custom_emojis", CustomEmojiController, :index)
|
2018-06-04 17:44:08 +02:00
|
|
|
|
2019-10-02 14:16:34 +02:00
|
|
|
get("/trends", MastodonAPIController, :empty_array)
|
2019-04-18 19:44:25 +02:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/timelines/public", TimelineController, :public)
|
|
|
|
get("/timelines/tag/:tag", TimelineController, :hashtag)
|
2019-02-15 17:54:37 +01:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/polls/:id", PollController, :show)
|
2017-09-13 17:36:02 +02:00
|
|
|
end
|
|
|
|
|
2018-06-13 18:21:59 +02:00
|
|
|
scope "/api/v2", Pleroma.Web.MastodonAPI do
|
2019-10-06 16:12:17 +02:00
|
|
|
pipe_through(:api)
|
2019-06-14 13:39:57 +02:00
|
|
|
get("/search", SearchController, :search2)
|
2020-04-29 17:38:14 +02:00
|
|
|
|
|
|
|
post("/media", MediaController, :create2)
|
2018-06-13 18:21:59 +02:00
|
|
|
end
|
|
|
|
|
2017-03-21 21:09:20 +01:00
|
|
|
scope "/api", Pleroma.Web do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:config)
|
2017-04-10 15:00:57 +02:00
|
|
|
|
2019-01-23 12:40:57 +01:00
|
|
|
get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
|
2017-08-24 14:07:05 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/api", Pleroma.Web do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:api)
|
2017-04-20 12:53:53 +02:00
|
|
|
|
2018-12-20 11:41:30 +01:00
|
|
|
get(
|
|
|
|
"/account/confirm_email/:user_id/:token",
|
|
|
|
TwitterAPI.Controller,
|
|
|
|
:confirm_email,
|
|
|
|
as: :confirm_email
|
|
|
|
)
|
2018-11-14 20:33:23 +01:00
|
|
|
end
|
|
|
|
|
2020-04-01 21:00:59 +02:00
|
|
|
scope "/api" do
|
2020-04-20 14:38:00 +02:00
|
|
|
pipe_through(:base_api)
|
2020-04-01 21:00:59 +02:00
|
|
|
|
|
|
|
get("/openapi", OpenApiSpex.Plug.RenderSpec, [])
|
|
|
|
end
|
|
|
|
|
2018-11-14 20:33:23 +01:00
|
|
|
scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:authenticated_api)
|
2017-03-20 21:30:44 +01:00
|
|
|
|
2019-02-19 17:10:55 +01:00
|
|
|
get("/oauth_tokens", TwitterAPI.Controller, :oauth_tokens)
|
|
|
|
delete("/oauth_tokens/:id", TwitterAPI.Controller, :revoke_token)
|
2017-04-20 12:53:53 +02:00
|
|
|
|
2020-04-21 15:29:19 +02:00
|
|
|
post(
|
|
|
|
"/qvitter/statuses/notifications/read",
|
|
|
|
TwitterAPI.Controller,
|
|
|
|
:mark_notifications_as_read
|
|
|
|
)
|
2018-08-06 10:13:05 +02:00
|
|
|
end
|
|
|
|
|
2017-04-20 10:16:06 +02:00
|
|
|
scope "/", Pleroma.Web do
|
2020-10-05 22:48:00 +02:00
|
|
|
# Note: html format is supported only if static FE is enabled
|
2020-10-11 21:34:28 +02:00
|
|
|
# Note: http signature is only considered for json requests (no auth for non-json requests)
|
2020-10-17 12:12:39 +02:00
|
|
|
pipe_through([:accepts_html_json, :http_signature, Pleroma.Web.Plugs.StaticFEPlug])
|
2017-04-18 18:41:51 +02:00
|
|
|
|
2018-03-30 15:01:53 +02:00
|
|
|
get("/objects/:uuid", OStatus.OStatusController, :object)
|
|
|
|
get("/activities/:uuid", OStatus.OStatusController, :activity)
|
|
|
|
get("/notice/:id", OStatus.OStatusController, :notice)
|
2019-10-07 14:20:41 +02:00
|
|
|
|
2020-05-22 17:06:12 +02:00
|
|
|
# Mastodon compatibility routes
|
2020-05-22 16:15:29 +02:00
|
|
|
get("/users/:nickname/statuses/:id", OStatus.OStatusController, :object)
|
2020-05-22 17:06:12 +02:00
|
|
|
get("/users/:nickname/statuses/:id/activity", OStatus.OStatusController, :activity)
|
2020-10-05 22:48:00 +02:00
|
|
|
end
|
2020-05-22 16:15:29 +02:00
|
|
|
|
2020-10-05 22:48:00 +02:00
|
|
|
scope "/", Pleroma.Web do
|
|
|
|
# Note: html format is supported only if static FE is enabled
|
2020-10-11 21:34:28 +02:00
|
|
|
# Note: http signature is only considered for json requests (no auth for non-json requests)
|
2020-10-17 12:12:39 +02:00
|
|
|
pipe_through([:accepts_html_xml_json, :http_signature, Pleroma.Web.Plugs.StaticFEPlug])
|
2020-10-05 22:48:00 +02:00
|
|
|
|
2020-10-11 21:34:28 +02:00
|
|
|
# Note: returns user _profile_ for json requests, redirects to user _feed_ for non-json ones
|
2019-12-06 07:32:29 +01:00
|
|
|
get("/users/:nickname", Feed.UserController, :feed_redirect, as: :user_feed)
|
2020-10-02 21:18:02 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", Pleroma.Web do
|
2020-10-05 22:48:00 +02:00
|
|
|
# Note: html format is supported only if static FE is enabled
|
2020-10-17 12:12:39 +02:00
|
|
|
pipe_through([:accepts_html_xml, Pleroma.Web.Plugs.StaticFEPlug])
|
2020-10-11 21:34:28 +02:00
|
|
|
|
2020-10-05 22:48:00 +02:00
|
|
|
get("/users/:nickname/feed", Feed.UserController, :feed, as: :user_feed)
|
|
|
|
end
|
2019-12-06 07:32:29 +01:00
|
|
|
|
2020-10-05 22:48:00 +02:00
|
|
|
scope "/", Pleroma.Web do
|
|
|
|
pipe_through(:accepts_html)
|
|
|
|
get("/notice/:id/embed_player", OStatus.OStatusController, :notice_player)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", Pleroma.Web do
|
|
|
|
pipe_through(:accepts_xml_rss_atom)
|
2019-12-06 07:32:29 +01:00
|
|
|
get("/tags/:tag", Feed.TagController, :feed, as: :tag_feed)
|
2019-12-10 15:46:02 +01:00
|
|
|
end
|
2018-03-05 09:26:24 +01:00
|
|
|
|
2019-12-10 15:46:02 +01:00
|
|
|
scope "/", Pleroma.Web do
|
|
|
|
pipe_through(:browser)
|
2019-04-20 14:42:19 +02:00
|
|
|
get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
|
2017-04-18 18:41:51 +02:00
|
|
|
end
|
|
|
|
|
2020-04-20 14:38:00 +02:00
|
|
|
pipeline :ap_service_actor do
|
|
|
|
plug(:accepts, ["activity+json", "json"])
|
|
|
|
end
|
|
|
|
|
|
|
|
# Server to Server (S2S) AP interactions
|
|
|
|
pipeline :activitypub do
|
|
|
|
plug(:ap_service_actor)
|
|
|
|
plug(:http_signature)
|
|
|
|
end
|
|
|
|
|
2020-03-03 20:22:02 +01:00
|
|
|
# Client to Server (C2S) AP interactions
|
2018-12-29 18:01:15 +01:00
|
|
|
pipeline :activitypub_client do
|
2020-04-20 14:38:00 +02:00
|
|
|
plug(:ap_service_actor)
|
2018-12-29 18:01:15 +01:00
|
|
|
plug(:fetch_session)
|
2020-04-20 14:38:00 +02:00
|
|
|
plug(:authenticate)
|
|
|
|
plug(:after_auth)
|
2018-12-29 18:01:15 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
pipe_through([:activitypub_client])
|
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/api/ap/whoami", ActivityPubController, :whoami)
|
|
|
|
get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
|
2019-02-15 17:54:37 +01:00
|
|
|
|
2020-05-08 03:08:11 +02:00
|
|
|
get("/users/:nickname/outbox", ActivityPubController, :outbox)
|
2019-10-06 16:12:17 +02:00
|
|
|
post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
|
|
|
|
post("/api/ap/upload_media", ActivityPubController, :upload_media)
|
2019-07-12 19:54:20 +02:00
|
|
|
|
2020-05-02 17:28:04 +02:00
|
|
|
# The following two are S2S as well, see `ActivityPub.fetch_follow_information_for_user/1`:
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/users/:nickname/followers", ActivityPubController, :followers)
|
|
|
|
get("/users/:nickname/following", ActivityPubController, :following)
|
2021-02-03 14:09:28 +01:00
|
|
|
get("/users/:nickname/collections/featured", ActivityPubController, :pinned)
|
2018-12-29 18:01:15 +01:00
|
|
|
end
|
|
|
|
|
2019-07-21 05:52:06 +02:00
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
pipe_through(:activitypub)
|
|
|
|
post("/inbox", ActivityPubController, :inbox)
|
|
|
|
post("/users/:nickname/inbox", ActivityPubController, :inbox)
|
|
|
|
end
|
|
|
|
|
2018-11-05 15:19:03 +01:00
|
|
|
scope "/relay", Pleroma.Web.ActivityPub do
|
2019-07-17 19:34:57 +02:00
|
|
|
pipe_through(:ap_service_actor)
|
|
|
|
|
2018-11-05 15:19:03 +01:00
|
|
|
get("/", ActivityPubController, :relay)
|
2019-08-22 21:39:06 +02:00
|
|
|
|
|
|
|
scope [] do
|
|
|
|
pipe_through(:http_signature)
|
|
|
|
post("/inbox", ActivityPubController, :inbox)
|
|
|
|
end
|
2019-08-22 05:57:55 +02:00
|
|
|
|
2020-03-09 18:51:44 +01:00
|
|
|
get("/following", ActivityPubController, :relay_following)
|
|
|
|
get("/followers", ActivityPubController, :relay_followers)
|
2019-07-17 19:34:57 +02: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 15:19:03 +01:00
|
|
|
end
|
2018-08-06 08:11:51 +02:00
|
|
|
|
2018-11-05 15:19:03 +01:00
|
|
|
scope "/.well-known", Pleroma.Web do
|
|
|
|
pipe_through(:well_known)
|
2017-04-17 13:44:41 +02:00
|
|
|
|
2018-11-05 15:19:03 +01:00
|
|
|
get("/host-meta", WebFinger.WebFingerController, :host_meta)
|
|
|
|
get("/webfinger", WebFinger.WebFingerController, :webfinger)
|
|
|
|
get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
|
|
|
|
end
|
2018-05-02 21:31:42 +02:00
|
|
|
|
2018-11-05 15:19:03 +01:00
|
|
|
scope "/nodeinfo", Pleroma.Web do
|
|
|
|
get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
|
2017-04-17 13:44:41 +02:00
|
|
|
end
|
2017-04-19 15:25:18 +02:00
|
|
|
|
2019-10-11 14:48:01 +02:00
|
|
|
scope "/", Pleroma.Web do
|
|
|
|
pipe_through(:api)
|
|
|
|
|
|
|
|
get("/web/manifest.json", MastoFEController, :manifest)
|
|
|
|
end
|
|
|
|
|
2019-10-02 15:05:14 +02:00
|
|
|
scope "/", Pleroma.Web do
|
2018-03-30 15:01:53 +02:00
|
|
|
pipe_through(:mastodon_html)
|
2017-11-12 14:23:05 +01:00
|
|
|
|
2019-10-02 15:05:14 +02:00
|
|
|
get("/web/login", MastodonAPI.AuthController, :login)
|
|
|
|
delete("/auth/sign_out", MastodonAPI.AuthController, :logout)
|
2019-02-15 17:54:37 +01:00
|
|
|
|
2019-10-02 15:05:14 +02:00
|
|
|
post("/auth/password", MastodonAPI.AuthController, :password_reset)
|
2019-07-16 23:44:50 +02:00
|
|
|
|
2019-10-06 16:12:17 +02:00
|
|
|
get("/web/*path", MastoFEController, :index)
|
2020-03-20 18:19:34 +01:00
|
|
|
|
|
|
|
get("/embed/:id", EmbedController, :show)
|
2017-11-12 14:23:05 +01:00
|
|
|
end
|
|
|
|
|
2017-11-22 19:06:07 +01:00
|
|
|
scope "/proxy/", Pleroma.Web.MediaProxy do
|
2020-05-08 22:06:47 +02:00
|
|
|
get("/preview/:sig/:url", MediaProxyController, :preview)
|
|
|
|
get("/preview/:sig/:url/:filename", MediaProxyController, :preview)
|
2018-03-30 15:01:53 +02:00
|
|
|
get("/:sig/:url", MediaProxyController, :remote)
|
2018-11-13 15:58:02 +01:00
|
|
|
get("/:sig/:url/:filename", MediaProxyController, :remote)
|
2017-11-22 19:06:07 +01:00
|
|
|
end
|
|
|
|
|
2019-06-06 22:59:51 +02:00
|
|
|
if Pleroma.Config.get(:env) == :dev do
|
2018-12-11 12:59:25 +01:00
|
|
|
scope "/dev" do
|
|
|
|
pipe_through([:mailbox_preview])
|
|
|
|
|
|
|
|
forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
|
|
|
|
end
|
2017-11-22 19:06:07 +01:00
|
|
|
end
|
|
|
|
|
2020-04-15 20:19:16 +02:00
|
|
|
# Test-only routes needed to test action dispatching and plug chain execution
|
|
|
|
if Pleroma.Config.get(:env) == :test do
|
2020-04-24 15:52:38 +02:00
|
|
|
@test_actions [
|
|
|
|
:do_oauth_check,
|
|
|
|
:fallback_oauth_check,
|
|
|
|
:skip_oauth_check,
|
|
|
|
:fallback_oauth_skip_publicity_check,
|
|
|
|
:skip_oauth_skip_publicity_check,
|
|
|
|
:missing_oauth_check_definition
|
|
|
|
]
|
|
|
|
|
|
|
|
scope "/test/api", Pleroma.Tests do
|
|
|
|
pipe_through(:api)
|
|
|
|
|
|
|
|
for action <- @test_actions do
|
|
|
|
get("/#{action}", AuthTestController, action)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-15 20:19:16 +02:00
|
|
|
scope "/test/authenticated_api", Pleroma.Tests do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
2020-04-24 15:52:38 +02:00
|
|
|
for action <- @test_actions do
|
|
|
|
get("/#{action}", AuthTestController, action)
|
2020-04-15 20:19:16 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-17 18:21:11 +02:00
|
|
|
scope "/", Pleroma.Web.MongooseIM do
|
|
|
|
get("/user_exists", MongooseIMController, :user_exists)
|
|
|
|
get("/check_password", MongooseIMController, :check_password)
|
|
|
|
end
|
|
|
|
|
2020-06-23 20:10:32 +02:00
|
|
|
scope "/", Pleroma.Web.Fallback do
|
2018-06-17 13:30:07 +02:00
|
|
|
get("/registration/:token", RedirectController, :registration_page)
|
2019-01-15 16:34:47 +01:00
|
|
|
get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
|
2021-02-18 22:59:06 +01:00
|
|
|
match(:*, "/api/pleroma*path", LegacyPleromaApiRerouterPlug, [])
|
2019-05-21 03:40:29 +02:00
|
|
|
get("/api*path", RedirectController, :api_not_implemented)
|
2020-05-12 17:08:00 +02:00
|
|
|
get("/*path", RedirectController, :redirector_with_preload)
|
2018-09-17 12:21:01 +02:00
|
|
|
|
|
|
|
options("/*path", RedirectController, :empty)
|
2017-04-19 15:25:18 +02:00
|
|
|
end
|
|
|
|
end
|