2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2020-03-02 05:08:45 +00:00
|
|
|
# Copyright © 2017-2020 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)
|
2019-11-15 13:13:21 +00:00
|
|
|
plug(Pleroma.Plugs.UserEnabledPlug)
|
2019-04-01 11:46:50 +00:00
|
|
|
end
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
pipeline :expect_authentication do
|
|
|
|
plug(Pleroma.Plugs.ExpectAuthenticatedCheckPlug)
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :expect_public_instance_or_authentication do
|
|
|
|
plug(Pleroma.Plugs.ExpectPublicOrAuthenticatedCheckPlug)
|
|
|
|
end
|
|
|
|
|
2020-04-20 12:38:00 +00:00
|
|
|
pipeline :authenticate do
|
2018-03-30 13:01:53 +00:00
|
|
|
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)
|
2020-04-20 12:38:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :after_auth do
|
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-03-17 16:09:58 +00:00
|
|
|
end
|
|
|
|
|
2020-04-20 12:38:00 +00:00
|
|
|
pipeline :base_api do
|
2018-03-30 13:01:53 +00:00
|
|
|
plug(:accepts, ["json"])
|
|
|
|
plug(:fetch_session)
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:authenticate)
|
|
|
|
plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :api do
|
2020-04-21 13:29:19 +00:00
|
|
|
plug(:expect_public_instance_or_authentication)
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:base_api)
|
|
|
|
plug(:after_auth)
|
|
|
|
plug(Pleroma.Plugs.IdempotencyPlug)
|
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :authenticated_api do
|
2020-04-21 13:29:19 +00:00
|
|
|
plug(:expect_authentication)
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:base_api)
|
|
|
|
plug(:after_auth)
|
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
|
2020-04-21 13:29:19 +00:00
|
|
|
plug(:expect_authentication)
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:base_api)
|
2018-12-18 20:08:52 +00:00
|
|
|
plug(Pleroma.Plugs.AdminSecretAuthenticationPlug)
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:after_auth)
|
2018-10-02 16:38:16 +00:00
|
|
|
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
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:browser)
|
|
|
|
plug(:authenticate)
|
|
|
|
plug(:after_auth)
|
2017-11-12 13:23:05 +00:00
|
|
|
end
|
|
|
|
|
2018-01-18 16:42:44 +00:00
|
|
|
pipeline :pleroma_html do
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:browser)
|
|
|
|
plug(:authenticate)
|
2018-09-05 17:13:53 +00:00
|
|
|
plug(Pleroma.Plugs.EnsureUserKeyPlug)
|
2018-01-18 16:42:44 +00:00
|
|
|
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"])
|
2020-04-01 19:00:59 +00:00
|
|
|
plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
|
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"])
|
2020-04-01 19:00:59 +00:00
|
|
|
plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
|
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-10-06 14:12:17 +00:00
|
|
|
pipe_through(:admin_api)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
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)
|
2019-10-09 14:03:54 +00:00
|
|
|
patch("/users/activate", AdminAPIController, :user_activate)
|
|
|
|
patch("/users/deactivate", AdminAPIController, :user_deactivate)
|
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)
|
2019-10-11 12:58:45 +00:00
|
|
|
|
2019-05-11 08:32:04 +00:00
|
|
|
post("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_add)
|
|
|
|
|
|
|
|
delete(
|
|
|
|
"/users/:nickname/permission_group/:permission_group",
|
|
|
|
AdminAPIController,
|
|
|
|
:right_delete
|
|
|
|
)
|
|
|
|
|
2019-10-11 12:58:45 +00:00
|
|
|
post("/users/permission_group/:permission_group", AdminAPIController, :right_add_multiple)
|
|
|
|
|
|
|
|
delete(
|
|
|
|
"/users/permission_group/:permission_group",
|
|
|
|
AdminAPIController,
|
|
|
|
:right_delete_multiple
|
|
|
|
)
|
2019-02-19 15:40:57 +00:00
|
|
|
|
2019-10-11 16:12:29 +00:00
|
|
|
get("/relay", AdminAPIController, :relay_list)
|
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)
|
2019-11-01 15:45:47 +00:00
|
|
|
patch("/users/force_password_reset", AdminAPIController, :force_password_reset)
|
2020-01-31 18:07:46 +00:00
|
|
|
get("/users/:nickname/credentials", AdminAPIController, :show_user_credentials)
|
|
|
|
patch("/users/:nickname/credentials", AdminAPIController, :update_user_credentials)
|
2019-05-11 08:32:04 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-11-14 14:44:07 +00:00
|
|
|
get("/instances/:instance/statuses", AdminAPIController, :list_instance_statuses)
|
|
|
|
|
2019-11-19 11:14:02 +00:00
|
|
|
patch("/users/confirm_email", AdminAPIController, :confirm_email)
|
|
|
|
patch("/users/resend_confirmation_email", AdminAPIController, :resend_confirmation_email)
|
|
|
|
|
2019-05-16 19:09:18 +00:00
|
|
|
get("/reports", AdminAPIController, :list_reports)
|
|
|
|
get("/reports/:id", AdminAPIController, :report_show)
|
2019-10-04 16:00:58 +00:00
|
|
|
patch("/reports", AdminAPIController, :reports_update)
|
2019-12-03 14:54:07 +00:00
|
|
|
post("/reports/:id/notes", AdminAPIController, :report_notes_create)
|
2019-12-08 08:27:23 +00:00
|
|
|
delete("/reports/:report_id/notes/:id", AdminAPIController, :report_notes_delete)
|
2019-05-16 19:09:18 +00:00
|
|
|
|
|
|
|
put("/statuses/:id", AdminAPIController, :status_update)
|
|
|
|
delete("/statuses/:id", AdminAPIController, :status_delete)
|
2020-02-10 11:32:38 +00:00
|
|
|
get("/statuses", AdminAPIController, :list_statuses)
|
2019-06-14 15:45:05 +00:00
|
|
|
|
|
|
|
get("/config", AdminAPIController, :config_show)
|
|
|
|
post("/config", AdminAPIController, :config_update)
|
2019-09-29 08:17:38 +00:00
|
|
|
get("/config/descriptions", AdminAPIController, :config_descriptions)
|
2020-04-13 11:07:23 +00:00
|
|
|
get("/need_reboot", AdminAPIController, :need_reboot)
|
2020-01-25 15:42:04 +00:00
|
|
|
get("/restart", AdminAPIController, :restart)
|
2019-08-25 19:39:37 +00:00
|
|
|
|
|
|
|
get("/moderation_log", AdminAPIController, :list_log)
|
2019-09-12 17:38:57 +00:00
|
|
|
|
|
|
|
post("/reload_emoji", AdminAPIController, :reload_emoji)
|
2020-01-09 19:18:55 +00:00
|
|
|
get("/stats", AdminAPIController, :stats)
|
2020-02-28 08:16:40 +00:00
|
|
|
|
|
|
|
get("/oauth_app", AdminAPIController, :oauth_app_list)
|
|
|
|
post("/oauth_app", AdminAPIController, :oauth_app_create)
|
|
|
|
patch("/oauth_app/:id", AdminAPIController, :oauth_app_update)
|
|
|
|
delete("/oauth_app/:id", AdminAPIController, :oauth_app_delete)
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2019-09-11 19:43:00 +00:00
|
|
|
scope "/api/pleroma/emoji", Pleroma.Web.PleromaAPI do
|
2020-04-21 13:29:19 +00:00
|
|
|
# Modifying packs
|
2019-08-10 21:39:21 +00:00
|
|
|
scope "/packs" do
|
2019-10-06 14:12:17 +00:00
|
|
|
pipe_through(:admin_api)
|
2019-08-10 21:39:21 +00:00
|
|
|
|
2020-03-28 18:15:14 +00:00
|
|
|
get("/import", EmojiAPIController, :import_from_filesystem)
|
|
|
|
get("/remote", EmojiAPIController, :remote)
|
|
|
|
post("/download", EmojiAPIController, :download)
|
|
|
|
|
|
|
|
post("/:name", EmojiAPIController, :create)
|
|
|
|
patch("/:name", EmojiAPIController, :update)
|
2019-09-11 18:50:55 +00:00
|
|
|
delete("/:name", EmojiAPIController, :delete)
|
2020-04-21 13:29:19 +00:00
|
|
|
|
2020-03-28 18:15:14 +00:00
|
|
|
post("/:name/files", EmojiAPIController, :add_file)
|
|
|
|
patch("/:name/files", EmojiAPIController, :update_file)
|
|
|
|
delete("/:name/files", EmojiAPIController, :delete_file)
|
2019-08-10 21:39:21 +00:00
|
|
|
end
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
# Pack info / downloading
|
2019-08-10 21:39:21 +00:00
|
|
|
scope "/packs" do
|
2020-03-28 18:15:14 +00:00
|
|
|
get("/", EmojiAPIController, :list)
|
2020-03-28 10:34:32 +00:00
|
|
|
get("/:name", EmojiAPIController, :show)
|
2020-03-28 18:15:14 +00:00
|
|
|
get("/:name/archive", EmojiAPIController, :archive)
|
2019-08-10 21:39:21 +00:00
|
|
|
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-12-20 13:34:14 +00:00
|
|
|
get("/ostatus_subscribe", RemoteFollowController, :follow)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-12-20 13:34:14 +00:00
|
|
|
post("/ostatus_subscribe", RemoteFollowController, :do_follow)
|
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
|
|
|
|
2019-10-06 14:12:17 +00: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)
|
2019-02-09 14:32:33 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
post("/blocks_import", UtilController, :blocks_import)
|
|
|
|
post("/follow_import", UtilController, :follow_import)
|
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-09-12 16:48:25 +00:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
pipe_through(:api)
|
|
|
|
|
2020-02-19 16:16:45 +00:00
|
|
|
get("/statuses/:id/reactions/:emoji", PleromaAPIController, :emoji_reactions_by)
|
2020-02-07 13:52:13 +00:00
|
|
|
get("/statuses/:id/reactions", PleromaAPIController, :emoji_reactions_by)
|
2019-09-12 16:48:25 +00:00
|
|
|
end
|
|
|
|
|
2019-08-02 17:53:08 +00:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
scope [] do
|
2019-09-30 07:28:12 +00:00
|
|
|
pipe_through(:authenticated_api)
|
2019-10-06 14:12:17 +00:00
|
|
|
|
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)
|
2020-04-21 13:29:19 +00:00
|
|
|
post("/conversations/read", PleromaAPIController, :mark_conversations_as_read)
|
2019-08-14 13:55:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope [] do
|
2019-09-30 07:28:12 +00:00
|
|
|
pipe_through(:authenticated_api)
|
2019-10-06 14:12:17 +00:00
|
|
|
|
2019-08-05 13:09:19 +00:00
|
|
|
patch("/conversations/:id", PleromaAPIController, :update_conversation)
|
2020-02-07 13:52:13 +00:00
|
|
|
put("/statuses/:id/reactions/:emoji", PleromaAPIController, :react_with_emoji)
|
|
|
|
delete("/statuses/:id/reactions/:emoji", PleromaAPIController, :unreact_with_emoji)
|
2020-04-21 13:29:19 +00:00
|
|
|
post("/notifications/read", PleromaAPIController, :mark_notifications_as_read)
|
2019-09-30 07:28:12 +00:00
|
|
|
|
|
|
|
patch("/accounts/update_avatar", AccountController, :update_avatar)
|
|
|
|
patch("/accounts/update_banner", AccountController, :update_banner)
|
|
|
|
patch("/accounts/update_background", AccountController, :update_background)
|
2019-09-30 12:32:43 +00:00
|
|
|
|
|
|
|
get("/mascot", MascotController, :show)
|
|
|
|
put("/mascot", MascotController, :update)
|
|
|
|
|
2019-09-30 07:28:12 +00:00
|
|
|
post("/scrobble", ScrobbleController, :new_scrobble)
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|
2019-09-28 02:12:12 +00:00
|
|
|
|
2020-04-24 19:25:27 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:api)
|
|
|
|
get("/accounts/:id/favourites", AccountController, :favourites)
|
|
|
|
end
|
|
|
|
|
2019-09-30 07:28:12 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
|
|
|
post("/accounts/:id/subscribe", AccountController, :subscribe)
|
|
|
|
post("/accounts/:id/unsubscribe", AccountController, :unsubscribe)
|
2019-09-28 02:12:12 +00:00
|
|
|
end
|
2019-09-30 07:28:12 +00:00
|
|
|
|
|
|
|
post("/accounts/confirmation_resend", AccountController, :confirmation_resend)
|
2019-09-28 02:12:12 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
|
2019-10-06 14:12:17 +00:00
|
|
|
pipe_through(:api)
|
2019-09-29 00:25:42 +00:00
|
|
|
get("/accounts/:id/scrobbles", ScrobbleController, :user_scrobbles)
|
2019-08-02 17:53:08 +00:00
|
|
|
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-10-06 14:12:17 +00:00
|
|
|
get("/accounts/verify_credentials", AccountController, :verify_credentials)
|
2020-04-21 13:29:19 +00:00
|
|
|
patch("/accounts/update_credentials", AccountController, :update_credentials)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/accounts/relationships", AccountController, :relationships)
|
|
|
|
get("/accounts/:id/lists", AccountController, :lists)
|
2020-04-06 07:20:44 +00:00
|
|
|
get("/accounts/:id/identity_proofs", AccountController, :identity_proofs)
|
2020-04-21 13:29:19 +00:00
|
|
|
get("/endorsements", AccountController, :endorsements)
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/blocks", AccountController, :blocks)
|
|
|
|
get("/mutes", AccountController, :mutes)
|
2017-09-13 13:55:10 +00:00
|
|
|
|
2020-04-21 13:29:19 +00: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 11:15:01 +00:00
|
|
|
|
2020-04-22 15:50:25 +00:00
|
|
|
get("/apps/verify_credentials", AppController, :verify_credentials)
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
get("/conversations", ConversationController, :index)
|
|
|
|
post("/conversations/:id/read", ConversationController, :mark_as_read)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
get("/lists", ListController, :index)
|
|
|
|
get("/lists/:id", ListController, :show)
|
|
|
|
get("/lists/:id/accounts", ListController, :list_accounts)
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
|
|
|
get("/markers", MarkerController, :index)
|
|
|
|
post("/markers", MarkerController, :upsert)
|
|
|
|
|
|
|
|
post("/media", MediaController, :create)
|
|
|
|
put("/media/:id", MediaController, :update)
|
2018-05-11 02:17:33 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/notifications", NotificationController, :index)
|
|
|
|
get("/notifications/:id", NotificationController, :show)
|
2020-04-21 13:29:19 +00:00
|
|
|
|
2020-04-09 13:08:43 +00:00
|
|
|
post("/notifications/:id/dismiss", NotificationController, :dismiss)
|
2019-10-06 14:12:17 +00:00
|
|
|
post("/notifications/clear", NotificationController, :clear)
|
|
|
|
delete("/notifications/destroy_multiple", NotificationController, :destroy_multiple)
|
2020-04-09 13:08:43 +00:00
|
|
|
# Deprecated: was removed in Mastodon v3, use `/notifications/:id/dismiss` instead
|
|
|
|
post("/notifications/dismiss", NotificationController, :dismiss)
|
2017-09-17 11:09:49 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
post("/polls/:id/votes", PollController, :vote)
|
2017-09-14 06:08:32 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
post("/reports", ReportController, :create)
|
2018-04-29 13:02:46 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
get("/scheduled_statuses", ScheduledActivityController, :index)
|
|
|
|
get("/scheduled_statuses/:id", ScheduledActivityController, :show)
|
2019-03-17 16:06:28 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
put("/scheduled_statuses/:id", ScheduledActivityController, :update)
|
|
|
|
delete("/scheduled_statuses/:id", ScheduledActivityController, :delete)
|
2018-06-03 19:21:23 +00:00
|
|
|
|
2020-04-24 19:25:27 +00:00
|
|
|
# Unlike `GET /api/v1/accounts/:id/favourites`, demands authentication
|
2020-04-21 13:29:19 +00:00
|
|
|
get("/favourites", StatusController, :favourites)
|
|
|
|
get("/bookmarks", StatusController, :bookmarks)
|
2018-07-13 15:21:38 +00:00
|
|
|
|
2019-10-06 14:12:17 +00: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 14:49:02 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
post("/push/subscription", SubscriptionController, :create)
|
|
|
|
get("/push/subscription", SubscriptionController, :get)
|
|
|
|
put("/push/subscription", SubscriptionController, :update)
|
|
|
|
delete("/push/subscription", SubscriptionController, :delete)
|
2019-10-17 12:26:59 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
get("/suggestions", SuggestionController, :index)
|
|
|
|
|
|
|
|
get("/timelines/home", TimelineController, :home)
|
|
|
|
get("/timelines/direct", TimelineController, :direct)
|
2020-04-22 15:50:25 +00:00
|
|
|
get("/timelines/list/:list_id", TimelineController, :list)
|
2017-08-24 12:15:16 +00:00
|
|
|
end
|
|
|
|
|
2019-10-02 13:05:14 +00:00
|
|
|
scope "/api/web", Pleroma.Web do
|
2019-10-06 14:12:17 +00:00
|
|
|
pipe_through(:authenticated_api)
|
2018-04-07 14:26:56 +00:00
|
|
|
|
2019-10-02 13:05:14 +00:00
|
|
|
put("/settings", MastoFEController, :put_settings)
|
2018-04-07 14:26:56 +00:00
|
|
|
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-10-02 12:16:34 +00:00
|
|
|
get("/accounts/search", SearchController, :account_search)
|
2020-04-22 15:50:25 +00: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 18:35:45 +00:00
|
|
|
|
2019-10-02 07:13:52 +00:00
|
|
|
get("/instance", InstanceController, :show)
|
|
|
|
get("/instance/peers", InstanceController, :peers)
|
|
|
|
|
2019-10-01 08:21:46 +00:00
|
|
|
post("/apps", AppController, :create)
|
2019-10-02 07:13:52 +00:00
|
|
|
|
2020-04-22 15:50:25 +00:00
|
|
|
get("/statuses", StatusController, :index)
|
|
|
|
get("/statuses/:id", StatusController, :show)
|
|
|
|
get("/statuses/:id/context", StatusController, :context)
|
2019-09-09 14:49:02 +00: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 13:01:53 +00:00
|
|
|
|
2019-10-02 12:16:34 +00:00
|
|
|
get("/custom_emojis", CustomEmojiController, :index)
|
2018-06-04 15:44:08 +00:00
|
|
|
|
2019-10-02 12:16:34 +00:00
|
|
|
get("/trends", MastodonAPIController, :empty_array)
|
2019-04-18 17:44:25 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/timelines/public", TimelineController, :public)
|
|
|
|
get("/timelines/tag/:tag", TimelineController, :hashtag)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/polls/:id", PollController, :show)
|
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-10-06 14:12:17 +00:00
|
|
|
pipe_through(:api)
|
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
|
|
|
|
|
2020-04-01 19:00:59 +00:00
|
|
|
scope "/api" do
|
2020-04-20 12:38:00 +00:00
|
|
|
pipe_through(:base_api)
|
2020-04-01 19:00:59 +00:00
|
|
|
|
|
|
|
get("/openapi", OpenApiSpex.Plug.RenderSpec, [])
|
|
|
|
end
|
|
|
|
|
2018-11-14 19:33:23 +00:00
|
|
|
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
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
post(
|
|
|
|
"/qvitter/statuses/notifications/read",
|
|
|
|
TwitterAPI.Controller,
|
|
|
|
:mark_notifications_as_read
|
|
|
|
)
|
2017-03-17 16:09:58 +00:00
|
|
|
end
|
2017-04-17 11:44:41 +00:00
|
|
|
|
2017-04-18 16:41:51 +00:00
|
|
|
pipeline :ostatus do
|
2020-03-13 14:41:26 +00:00
|
|
|
plug(:accepts, ["html", "xml", "rss", "atom", "activity+json", "json"])
|
2019-11-02 02:47:18 +00:00
|
|
|
plug(Pleroma.Plugs.StaticFEPlug)
|
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
|
2020-04-20 12:38:00 +00:00
|
|
|
pipe_through([:ostatus, :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)
|
2019-10-07 12:20:41 +00:00
|
|
|
|
2019-12-06 06:32:29 +00:00
|
|
|
get("/users/:nickname/feed", Feed.UserController, :feed, as: :user_feed)
|
|
|
|
get("/users/:nickname", Feed.UserController, :feed_redirect, as: :user_feed)
|
|
|
|
|
|
|
|
get("/tags/:tag", Feed.TagController, :feed, as: :tag_feed)
|
2019-12-10 14:46:02 +00:00
|
|
|
end
|
2018-03-05 08:26:24 +00:00
|
|
|
|
2019-12-10 14:46:02 +00:00
|
|
|
scope "/", Pleroma.Web do
|
|
|
|
pipe_through(:browser)
|
2019-04-20 12:42:19 +00:00
|
|
|
get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
|
2017-04-18 16:41:51 +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)
|
2018-03-21 17:23:27 +00:00
|
|
|
end
|
|
|
|
|
2020-04-20 12:38:00 +00: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 19:22:02 +00:00
|
|
|
# Client to Server (C2S) AP interactions
|
2018-12-29 17:01:15 +00:00
|
|
|
pipeline :activitypub_client do
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:ap_service_actor)
|
2018-12-29 17:01:15 +00:00
|
|
|
plug(:fetch_session)
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:authenticate)
|
|
|
|
plug(:after_auth)
|
2018-12-29 17:01:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
pipe_through([:activitypub_client])
|
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/api/ap/whoami", ActivityPubController, :whoami)
|
|
|
|
get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
|
|
|
|
post("/api/ap/upload_media", ActivityPubController, :upload_media)
|
2019-07-12 17:54:20 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/users/:nickname/followers", ActivityPubController, :followers)
|
|
|
|
get("/users/:nickname/following", ActivityPubController, :following)
|
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
|
|
|
|
2020-03-09 17:51:44 +00:00
|
|
|
get("/following", ActivityPubController, :relay_following)
|
|
|
|
get("/followers", ActivityPubController, :relay_followers)
|
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
|
|
|
|
2019-10-11 12:48:01 +00:00
|
|
|
scope "/", Pleroma.Web do
|
|
|
|
pipe_through(:api)
|
|
|
|
|
|
|
|
get("/web/manifest.json", MastoFEController, :manifest)
|
|
|
|
end
|
|
|
|
|
2019-10-02 13:05:14 +00:00
|
|
|
scope "/", Pleroma.Web do
|
2018-03-30 13:01:53 +00:00
|
|
|
pipe_through(:mastodon_html)
|
2017-11-12 13:23:05 +00:00
|
|
|
|
2019-10-02 13:05:14 +00:00
|
|
|
get("/web/login", MastodonAPI.AuthController, :login)
|
|
|
|
delete("/auth/sign_out", MastodonAPI.AuthController, :logout)
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2019-10-02 13:05:14 +00:00
|
|
|
post("/auth/password", MastodonAPI.AuthController, :password_reset)
|
2019-07-16 21:44:50 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/web/*path", MastoFEController, :index)
|
2017-11-12 13:23:05 +00:00
|
|
|
end
|
|
|
|
|
2017-11-22 18:06:07 +00:00
|
|
|
scope "/proxy/", Pleroma.Web.MediaProxy do
|
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
|
|
|
|
|
2020-04-15 18:19:16 +00:00
|
|
|
# Test-only routes needed to test action dispatching and plug chain execution
|
|
|
|
if Pleroma.Config.get(:env) == :test do
|
2020-04-24 13:52:38 +00: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 18:19:16 +00:00
|
|
|
scope "/test/authenticated_api", Pleroma.Tests do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
2020-04-24 13:52:38 +00:00
|
|
|
for action <- @test_actions do
|
|
|
|
get("/#{action}", AuthTestController, action)
|
2020-04-15 18:19:16 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
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
|