2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 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
|
2021-12-15 21:17:11 +00:00
|
|
|
import Phoenix.LiveDashboard.Router
|
2017-03-17 16:09:58 +00:00
|
|
|
|
2020-10-05 20:48:00 +00:00
|
|
|
pipeline :accepts_html do
|
|
|
|
plug(:accepts, ["html"])
|
|
|
|
end
|
|
|
|
|
2020-10-11 19:34:28 +00: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 20:48:00 +00:00
|
|
|
pipeline :accepts_xml_rss_atom do
|
|
|
|
plug(:accepts, ["xml", "rss", "atom"])
|
|
|
|
end
|
|
|
|
|
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)
|
2020-06-24 06:59:21 +00:00
|
|
|
plug(Pleroma.Web.Plugs.OAuthPlug)
|
2020-06-24 06:02:27 +00:00
|
|
|
plug(Pleroma.Web.Plugs.UserEnabledPlug)
|
2020-12-06 10:59:10 +00:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
|
2019-04-01 11:46:50 +00:00
|
|
|
end
|
|
|
|
|
2021-02-11 12:02:50 +00:00
|
|
|
# Note: expects _user_ authentication (user-unbound app-bound tokens don't qualify)
|
|
|
|
pipeline :expect_user_authentication do
|
2020-06-24 07:44:50 +00:00
|
|
|
plug(Pleroma.Web.Plugs.ExpectAuthenticatedCheckPlug)
|
2020-04-21 13:29:19 +00:00
|
|
|
end
|
|
|
|
|
2021-02-11 12:02:50 +00: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 07:43:19 +00:00
|
|
|
plug(Pleroma.Web.Plugs.ExpectPublicOrAuthenticatedCheckPlug)
|
2020-04-21 13:29:19 +00:00
|
|
|
end
|
|
|
|
|
2020-04-20 12:38:00 +00:00
|
|
|
pipeline :authenticate do
|
2020-06-24 06:59:21 +00:00
|
|
|
plug(Pleroma.Web.Plugs.OAuthPlug)
|
2020-06-24 08:13:19 +00:00
|
|
|
plug(Pleroma.Web.Plugs.BasicAuthDecoderPlug)
|
2020-06-24 06:00:44 +00:00
|
|
|
plug(Pleroma.Web.Plugs.UserFetcherPlug)
|
2020-06-24 08:16:09 +00:00
|
|
|
plug(Pleroma.Web.Plugs.AuthenticationPlug)
|
2020-04-20 12:38:00 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :after_auth do
|
2020-06-24 06:02:27 +00:00
|
|
|
plug(Pleroma.Web.Plugs.UserEnabledPlug)
|
2022-08-21 16:52:02 +00:00
|
|
|
plug(Pleroma.Web.Plugs.SetUserSessionIdPlug)
|
2020-12-06 10:59:10 +00:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
|
2021-01-22 20:37:49 +00:00
|
|
|
plug(Pleroma.Web.Plugs.UserTrackingPlug)
|
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
|
|
|
|
|
2021-02-11 12:02:50 +00:00
|
|
|
pipeline :no_auth_or_privacy_expectations_api do
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:base_api)
|
|
|
|
plug(:after_auth)
|
2020-06-24 07:09:39 +00:00
|
|
|
plug(Pleroma.Web.Plugs.IdempotencyPlug)
|
2020-04-20 12:38:00 +00:00
|
|
|
end
|
|
|
|
|
2021-02-11 12:02:50 +00: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 12:38:00 +00:00
|
|
|
pipeline :authenticated_api do
|
2021-02-11 12:02:50 +00:00
|
|
|
plug(:expect_user_authentication)
|
|
|
|
plug(:no_auth_or_privacy_expectations_api)
|
2020-06-24 07:55:56 +00:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureAuthenticatedPlug)
|
2017-03-21 20:09:20 +00:00
|
|
|
end
|
|
|
|
|
2018-10-02 16:38:16 +00:00
|
|
|
pipeline :admin_api do
|
2021-02-11 12:02:50 +00:00
|
|
|
plug(:expect_user_authentication)
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:base_api)
|
2020-06-24 08:18:42 +00:00
|
|
|
plug(Pleroma.Web.Plugs.AdminSecretAuthenticationPlug)
|
2020-04-20 12:38:00 +00:00
|
|
|
plug(:after_auth)
|
2020-06-24 07:55:56 +00:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureAuthenticatedPlug)
|
2021-07-13 03:00:44 +00:00
|
|
|
plug(Pleroma.Web.Plugs.UserIsStaffPlug)
|
2020-06-24 07:09:39 +00:00
|
|
|
plug(Pleroma.Web.Plugs.IdempotencyPlug)
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2021-12-26 23:27:48 +00:00
|
|
|
pipeline :require_privileged_staff do
|
|
|
|
plug(Pleroma.Web.Plugs.EnsureStaffPrivilegedPlug)
|
2021-07-13 03:00:44 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
pipeline :require_admin do
|
|
|
|
plug(Pleroma.Web.Plugs.UserIsAdminPlug)
|
|
|
|
end
|
|
|
|
|
2022-01-08 21:44:37 +00:00
|
|
|
pipeline :mastodon_html do
|
|
|
|
plug(:browser)
|
|
|
|
plug(:authenticate)
|
|
|
|
plug(:after_auth)
|
|
|
|
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)
|
2020-12-06 10:59:10 +00:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
|
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)
|
2022-12-19 20:41:48 +00:00
|
|
|
plug(Pleroma.Web.Plugs.EnsureHTTPSignaturePlug)
|
2019-08-22 19:39:06 +00:00
|
|
|
end
|
|
|
|
|
2021-05-23 22:25:18 +00:00
|
|
|
pipeline :static_fe do
|
2022-12-07 13:35:00 +00:00
|
|
|
plug(:fetch_session)
|
|
|
|
plug(:authenticate)
|
2021-05-23 22:25:18 +00:00
|
|
|
plug(Pleroma.Web.Plugs.StaticFEPlug)
|
|
|
|
end
|
|
|
|
|
2021-02-18 21:59:06 +00:00
|
|
|
scope "/api/v1/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)
|
2021-11-22 18:44:30 +00:00
|
|
|
post("/remote_interaction", UtilController, :remote_interaction)
|
2017-10-19 15:37:24 +00:00
|
|
|
end
|
|
|
|
|
2021-02-18 21:59:06 +00:00
|
|
|
scope "/api/v1/pleroma", Pleroma.Web do
|
2019-01-21 21:44:14 +00:00
|
|
|
pipe_through(:pleroma_api)
|
|
|
|
post("/uploader_callback/:upload_path", UploaderController, :callback)
|
|
|
|
end
|
|
|
|
|
2021-07-13 03:24:49 +00:00
|
|
|
# AdminAPI: only admins can perform these actions
|
2021-02-18 21:59:06 +00:00
|
|
|
scope "/api/v1/pleroma/admin", Pleroma.Web.AdminAPI do
|
2021-07-13 03:00:44 +00:00
|
|
|
pipe_through([:admin_api, :require_admin])
|
2019-02-15 16:54:37 +00:00
|
|
|
|
2020-05-07 08:14:54 +00:00
|
|
|
put("/users/disable_mfa", AdminAPIController, :disable_mfa)
|
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
|
|
|
|
2020-09-21 12:01:03 +00:00
|
|
|
post("/users/follow", UserController, :follow)
|
|
|
|
post("/users/unfollow", UserController, :unfollow)
|
|
|
|
post("/users", UserController, :create)
|
2021-07-13 03:24:49 +00:00
|
|
|
|
2021-11-26 21:19:01 +00:00
|
|
|
patch("/users/suggest", UserController, :suggest)
|
|
|
|
patch("/users/unsuggest", UserController, :unsuggest)
|
|
|
|
|
2021-07-13 03:24:49 +00:00
|
|
|
get("/relay", RelayController, :index)
|
|
|
|
post("/relay", RelayController, :follow)
|
|
|
|
delete("/relay", RelayController, :unfollow)
|
|
|
|
|
|
|
|
patch("/users/force_password_reset", AdminAPIController, :force_password_reset)
|
|
|
|
get("/users/:nickname/credentials", AdminAPIController, :show_user_credentials)
|
|
|
|
patch("/users/:nickname/credentials", AdminAPIController, :update_user_credentials)
|
|
|
|
|
|
|
|
get("/instance_document/:name", InstanceDocumentController, :show)
|
|
|
|
patch("/instance_document/:name", InstanceDocumentController, :update)
|
|
|
|
delete("/instance_document/:name", InstanceDocumentController, :delete)
|
|
|
|
|
|
|
|
patch("/users/confirm_email", AdminAPIController, :confirm_email)
|
|
|
|
patch("/users/resend_confirmation_email", AdminAPIController, :resend_confirmation_email)
|
|
|
|
|
|
|
|
get("/config", ConfigController, :show)
|
|
|
|
post("/config", ConfigController, :update)
|
|
|
|
get("/config/descriptions", ConfigController, :descriptions)
|
|
|
|
get("/need_reboot", AdminAPIController, :need_reboot)
|
|
|
|
get("/restart", AdminAPIController, :restart)
|
|
|
|
|
|
|
|
get("/oauth_app", OAuthAppController, :index)
|
|
|
|
post("/oauth_app", OAuthAppController, :create)
|
|
|
|
patch("/oauth_app/:id", OAuthAppController, :update)
|
|
|
|
delete("/oauth_app/:id", OAuthAppController, :delete)
|
|
|
|
|
|
|
|
get("/media_proxy_caches", MediaProxyCacheController, :index)
|
|
|
|
post("/media_proxy_caches/delete", MediaProxyCacheController, :delete)
|
|
|
|
post("/media_proxy_caches/purge", MediaProxyCacheController, :purge)
|
|
|
|
|
|
|
|
get("/frontends", FrontendController, :index)
|
|
|
|
post("/frontends/install", FrontendController, :install)
|
|
|
|
|
|
|
|
post("/backups", AdminAPIController, :create_backup)
|
2022-07-18 13:08:36 +00:00
|
|
|
|
|
|
|
get("/announcements", AnnouncementController, :index)
|
|
|
|
post("/announcements", AnnouncementController, :create)
|
|
|
|
get("/announcements/:id", AnnouncementController, :show)
|
|
|
|
patch("/announcements/:id", AnnouncementController, :change)
|
|
|
|
delete("/announcements/:id", AnnouncementController, :delete)
|
2021-07-13 03:24:49 +00:00
|
|
|
end
|
|
|
|
|
2021-12-26 23:27:48 +00:00
|
|
|
# AdminAPI: admins and mods (staff) can perform these actions (if enabled by config)
|
|
|
|
scope "/api/v1/pleroma/admin", Pleroma.Web.AdminAPI do
|
|
|
|
pipe_through([:admin_api, :require_privileged_staff])
|
|
|
|
|
|
|
|
delete("/users", UserController, :delete)
|
|
|
|
|
|
|
|
get("/users/:nickname/password_reset", AdminAPIController, :get_password_reset)
|
2021-12-27 00:12:32 +00:00
|
|
|
patch("/users/:nickname/credentials", AdminAPIController, :update_user_credentials)
|
2021-12-26 23:27:48 +00:00
|
|
|
|
|
|
|
get("/users/:nickname/statuses", AdminAPIController, :list_user_statuses)
|
|
|
|
|
|
|
|
get("/statuses", StatusController, :index)
|
|
|
|
end
|
|
|
|
|
2021-07-13 03:24:49 +00:00
|
|
|
# AdminAPI: admins and mods (staff) can perform these actions
|
|
|
|
scope "/api/v1/pleroma/admin", Pleroma.Web.AdminAPI do
|
|
|
|
pipe_through(:admin_api)
|
|
|
|
|
|
|
|
put("/users/tag", AdminAPIController, :tag_users)
|
|
|
|
delete("/users/tag", AdminAPIController, :untag_users)
|
|
|
|
|
2020-09-21 12:01:03 +00:00
|
|
|
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-26 11:21:33 +00: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 15:23:05 +00:00
|
|
|
|
2021-03-02 16:49:17 +00:00
|
|
|
get("/users", UserController, :index)
|
2020-09-21 12:01:03 +00:00
|
|
|
get("/users/:nickname", UserController, :show)
|
2019-05-16 19:09:18 +00:00
|
|
|
|
2021-07-17 20:00:15 +00:00
|
|
|
get("/instances/:instance/statuses", InstanceController, :list_statuses)
|
|
|
|
delete("/instances/:instance", InstanceController, :delete)
|
2019-11-14 14:44:07 +00:00
|
|
|
|
2020-05-21 15:43:56 +00: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 19:09:18 +00:00
|
|
|
|
2020-05-20 14:00:41 +00:00
|
|
|
get("/statuses/:id", StatusController, :show)
|
|
|
|
put("/statuses/:id", StatusController, :update)
|
|
|
|
delete("/statuses/:id", StatusController, :delete)
|
2019-06-14 15:45:05 +00:00
|
|
|
|
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)
|
2018-10-02 16:38:16 +00:00
|
|
|
end
|
|
|
|
|
2021-02-18 21:59:06 +00:00
|
|
|
scope "/api/v1/pleroma/emoji", Pleroma.Web.PleromaAPI do
|
2020-09-20 06:51:36 +00:00
|
|
|
scope "/pack" do
|
2021-07-13 03:03:32 +00:00
|
|
|
pipe_through(:admin_api)
|
2020-09-20 06:51:36 +00:00
|
|
|
|
|
|
|
post("/", EmojiPackController, :create)
|
|
|
|
patch("/", EmojiPackController, :update)
|
|
|
|
delete("/", EmojiPackController, :delete)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/pack" do
|
|
|
|
pipe_through(:api)
|
|
|
|
|
|
|
|
get("/", EmojiPackController, :show)
|
|
|
|
end
|
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
# Modifying packs
|
2019-08-10 21:39:21 +00:00
|
|
|
scope "/packs" do
|
2021-07-13 03:03:32 +00:00
|
|
|
pipe_through(:admin_api)
|
2019-08-10 21:39:21 +00:00
|
|
|
|
2020-05-18 15:38:22 +00:00
|
|
|
get("/import", EmojiPackController, :import_from_filesystem)
|
|
|
|
get("/remote", EmojiPackController, :remote)
|
|
|
|
post("/download", EmojiPackController, :download)
|
2019-09-10 18:16:30 +00:00
|
|
|
|
2020-09-24 06:42:30 +00:00
|
|
|
post("/files", EmojiFileController, :create)
|
|
|
|
patch("/files", EmojiFileController, :update)
|
|
|
|
delete("/files", EmojiFileController, :delete)
|
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-05-14 15:21:51 +00:00
|
|
|
pipe_through(:api)
|
2020-09-20 06:51:36 +00:00
|
|
|
|
2020-05-18 15:38:22 +00:00
|
|
|
get("/", EmojiPackController, :index)
|
2020-06-27 10:43:25 +00:00
|
|
|
get("/archive", EmojiPackController, :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)
|
2022-09-08 10:19:22 +00:00
|
|
|
get("/main/ostatus", UtilController, :show_subscribe_form)
|
2019-12-20 13:34:14 +00:00
|
|
|
get("/ostatus_subscribe", RemoteFollowController, :follow)
|
|
|
|
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)
|
2022-07-04 16:29:39 +00:00
|
|
|
post("/move_account", UtilController, :move_account)
|
|
|
|
|
|
|
|
put("/aliases", UtilController, :add_alias)
|
|
|
|
get("/aliases", UtilController, :list_aliases)
|
|
|
|
delete("/aliases", UtilController, :delete_alias)
|
2017-12-12 16:35:23 +00:00
|
|
|
end
|
|
|
|
|
2020-05-07 08:14:54 +00:00
|
|
|
scope "/api/pleroma", Pleroma.Web.PleromaAPI do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
2020-09-06 18:42:51 +00:00
|
|
|
post("/mutes_import", UserImportController, :mutes)
|
|
|
|
post("/blocks_import", UserImportController, :blocks)
|
|
|
|
post("/follow_import", UserImportController, :follow)
|
|
|
|
|
2020-05-07 08:14:54 +00: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 17:06:25 +00:00
|
|
|
scope "/oauth", Pleroma.Web.OAuth do
|
2021-01-28 16:49:43 +00:00
|
|
|
# Note: use /api/v1/accounts/verify_credentials for userinfo of signed-in user
|
|
|
|
|
2020-11-25 18:47:23 +00:00
|
|
|
get("/registration_details", OAuthController, :registration_details)
|
|
|
|
|
|
|
|
post("/mfa/verify", MFAController, :verify, as: :mfa_verify)
|
|
|
|
get("/mfa", MFAController, :show)
|
|
|
|
|
2019-04-01 11:46:50 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:oauth)
|
2020-11-21 16:47:25 +00:00
|
|
|
|
2019-04-01 11:46:50 +00:00
|
|
|
get("/authorize", OAuthController, :authorize)
|
2020-11-21 16:47:25 +00:00
|
|
|
post("/authorize", OAuthController, :create_authorization)
|
2019-04-01 11:46:50 +00:00
|
|
|
end
|
|
|
|
|
2020-11-21 16:47:25 +00:00
|
|
|
scope [] do
|
|
|
|
pipe_through(:fetch_session)
|
|
|
|
|
2020-11-25 18:47:23 +00:00
|
|
|
post("/token", OAuthController, :token_exchange)
|
2020-11-21 16:47:25 +00:00
|
|
|
post("/revoke", OAuthController, :token_revoke)
|
2020-11-25 18:47:23 +00:00
|
|
|
post("/mfa/challenge", MFAController, :challenge)
|
2020-11-21 16:47:25 +00:00
|
|
|
end
|
|
|
|
|
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)
|
|
|
|
|
2021-08-29 00:02:36 +00:00
|
|
|
get("/apps", AppController, :index)
|
2020-05-19 19:50:49 +00:00
|
|
|
get("/statuses/:id/reactions/:emoji", EmojiReactionController, :index)
|
|
|
|
get("/statuses/:id/reactions", EmojiReactionController, :index)
|
2019-09-12 16:48:25 +00:00
|
|
|
end
|
|
|
|
|
2021-01-25 19:15:33 +00: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 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
|
|
|
|
2020-05-20 11:00:11 +00: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 14:12:17 +00:00
|
|
|
|
2020-05-19 19:50:49 +00:00
|
|
|
put("/statuses/:id/reactions/:emoji", EmojiReactionController, :create)
|
|
|
|
delete("/statuses/:id/reactions/:emoji", EmojiReactionController, :delete)
|
2020-05-20 11:14:11 +00:00
|
|
|
post("/notifications/read", NotificationController, :mark_as_read)
|
2019-09-30 07:28:12 +00:00
|
|
|
|
2019-09-30 12:32:43 +00:00
|
|
|
get("/mascot", MascotController, :show)
|
|
|
|
put("/mascot", MascotController, :update)
|
|
|
|
|
2020-09-20 16:43:27 +00:00
|
|
|
get("/backups", BackupController, :index)
|
|
|
|
post("/backups", BackupController, :create)
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|
2019-09-28 02:12:12 +00:00
|
|
|
|
|
|
|
scope [] do
|
2019-09-30 07:28:12 +00: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 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)
|
2020-10-15 22:32:20 +00:00
|
|
|
get("/federation_status", InstancesController, :show)
|
2019-08-02 17:53:08 +00:00
|
|
|
end
|
|
|
|
|
2022-08-17 00:22:59 +00:00
|
|
|
scope "/api/v1", Pleroma.Web.PleromaAPI do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
put("/statuses/:id/emoji_reactions/:emoji", EmojiReactionController, :create)
|
|
|
|
end
|
|
|
|
|
2022-08-30 14:58:54 +00:00
|
|
|
scope "/api/v1/akkoma", Pleroma.Web.AkkomaAPI do
|
|
|
|
pipe_through(:authenticated_api)
|
2022-12-15 02:02:07 +00:00
|
|
|
get("/metrics", MetricsController, :show)
|
2022-08-30 14:58:54 +00:00
|
|
|
get("/translation/languages", TranslationController, :languages)
|
2022-10-06 16:22:15 +00:00
|
|
|
|
|
|
|
get("/frontend_settings/:frontend_name", FrontendSettingsController, :list_profiles)
|
|
|
|
|
|
|
|
get(
|
|
|
|
"/frontend_settings/:frontend_name/:profile_name",
|
|
|
|
FrontendSettingsController,
|
|
|
|
:get_profile
|
|
|
|
)
|
|
|
|
|
|
|
|
put(
|
|
|
|
"/frontend_settings/:frontend_name/:profile_name",
|
|
|
|
FrontendSettingsController,
|
|
|
|
:update_profile
|
|
|
|
)
|
|
|
|
|
|
|
|
delete(
|
|
|
|
"/frontend_settings/:frontend_name/:profile_name",
|
|
|
|
FrontendSettingsController,
|
|
|
|
:delete_profile
|
|
|
|
)
|
2022-08-30 14:58:54 +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)
|
2021-11-21 15:53:30 +00:00
|
|
|
post("/accounts/:id/note", AccountController, :note)
|
2022-10-19 10:01:14 +00:00
|
|
|
post("/accounts/:id/remove_from_followers", AccountController, :remove_from_followers)
|
2017-09-09 11:15:01 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
get("/conversations", ConversationController, :index)
|
|
|
|
post("/conversations/:id/read", ConversationController, :mark_as_read)
|
2021-02-15 17:48:13 +00:00
|
|
|
delete("/conversations/:id", ConversationController, :delete)
|
2017-09-17 11:09:49 +00:00
|
|
|
|
2020-04-21 13:29:19 +00: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 09:39:10 +00:00
|
|
|
|
2019-10-06 14:12:17 +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
|
|
|
|
2020-04-21 13:29:19 +00: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 17:19:13 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
get("/markers", MarkerController, :index)
|
|
|
|
post("/markers", MarkerController, :upsert)
|
2017-09-14 06:08:32 +00:00
|
|
|
|
2020-04-21 13:29:19 +00:00
|
|
|
post("/media", MediaController, :create)
|
2020-04-29 15:38:14 +00:00
|
|
|
get("/media/:id", MediaController, :show)
|
2020-04-21 13:29:19 +00:00
|
|
|
put("/media/:id", MediaController, :update)
|
2018-04-29 13:02:46 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
get("/notifications", NotificationController, :index)
|
|
|
|
get("/notifications/:id", NotificationController, :show)
|
2019-03-17 16:06:28 +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)
|
2018-06-03 19:21:23 +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)
|
2022-09-06 19:24:02 +00:00
|
|
|
put("/statuses/:id", StatusController, :update)
|
2019-10-06 14:12:17 +00:00
|
|
|
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)
|
2022-08-29 19:42:22 +00:00
|
|
|
get("/statuses/:id/translations/:language", StatusController, :translate)
|
2019-09-09 14:49:02 +00:00
|
|
|
|
2019-10-06 14:12:17 +00:00
|
|
|
post("/push/subscription", SubscriptionController, :create)
|
2020-05-05 12:43:00 +00:00
|
|
|
get("/push/subscription", SubscriptionController, :show)
|
2019-10-06 14:12:17 +00:00
|
|
|
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)
|
2021-11-27 02:19:29 +00:00
|
|
|
delete("/suggestions/:account_id", SuggestionController, :dismiss)
|
2020-04-21 13:29:19 +00:00
|
|
|
|
|
|
|
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)
|
2022-07-22 14:55:38 +00:00
|
|
|
get("/timelines/bubble", TimelineController, :bubble)
|
2022-07-18 13:08:36 +00:00
|
|
|
|
|
|
|
get("/announcements", AnnouncementController, :index)
|
|
|
|
post("/announcements/:id/dismiss", AnnouncementController, :mark_read)
|
2022-12-05 12:58:48 +00:00
|
|
|
|
|
|
|
get("/tags/:id", TagController, :show)
|
|
|
|
post("/tags/:id/follow", TagController, :follow)
|
|
|
|
post("/tags/:id/unfollow", TagController, :unfollow)
|
2022-12-31 18:05:21 +00:00
|
|
|
get("/followed_tags", TagController, :show_followed)
|
2017-08-24 12:15:16 +00:00
|
|
|
end
|
|
|
|
|
2022-01-08 21:44:37 +00:00
|
|
|
scope "/api/web", Pleroma.Web do
|
|
|
|
pipe_through(:authenticated_api)
|
|
|
|
|
|
|
|
# Backend-obscure settings blob for MastoFE, don't parse/reuse elsewhere
|
|
|
|
put("/settings", MastoFEController, :put_settings)
|
|
|
|
end
|
|
|
|
|
2021-02-11 12:02:50 +00: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 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)
|
2021-12-28 15:11:17 +00:00
|
|
|
get("/accounts/lookup", AccountController, :lookup)
|
|
|
|
|
2020-04-22 15:50:25 +00:00
|
|
|
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)
|
|
|
|
|
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/favourited_by", StatusController, :favourited_by)
|
|
|
|
get("/statuses/:id/reblogged_by", StatusController, :reblogged_by)
|
2022-09-06 19:24:02 +00:00
|
|
|
get("/statuses/:id/history", StatusController, :show_history)
|
|
|
|
get("/statuses/:id/source", StatusController, :show_source)
|
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)
|
2021-12-26 02:35:17 +00:00
|
|
|
|
|
|
|
get("/directory", DirectoryController, :index)
|
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)
|
2020-04-29 15:38:14 +00:00
|
|
|
|
|
|
|
post("/media", MediaController, :create2)
|
2021-11-25 20:57:36 +00:00
|
|
|
|
|
|
|
get("/suggestions", SuggestionController, :index2)
|
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
|
|
|
|
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)
|
2018-08-06 08:13:05 +00:00
|
|
|
end
|
|
|
|
|
2017-04-20 08:16:06 +00:00
|
|
|
scope "/", Pleroma.Web do
|
2020-10-05 20:48:00 +00:00
|
|
|
# Note: html format is supported only if static FE is enabled
|
2020-10-11 19:34:28 +00:00
|
|
|
# Note: http signature is only considered for json requests (no auth for non-json requests)
|
2021-05-23 22:25:18 +00:00
|
|
|
pipe_through([:accepts_html_json, :http_signature, :static_fe])
|
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-10-07 12:20:41 +00:00
|
|
|
|
2021-05-05 18:58:50 +00:00
|
|
|
# Notice compatibility routes for other frontends
|
|
|
|
get("/@:nickname/:id", OStatus.OStatusController, :notice)
|
|
|
|
get("/@:nickname/posts/:id", OStatus.OStatusController, :notice)
|
|
|
|
get("/:nickname/status/:id", OStatus.OStatusController, :notice)
|
|
|
|
|
2020-05-22 15:06:12 +00:00
|
|
|
# Mastodon compatibility routes
|
2020-05-22 14:15:29 +00:00
|
|
|
get("/users/:nickname/statuses/:id", OStatus.OStatusController, :object)
|
2020-05-22 15:06:12 +00:00
|
|
|
get("/users/:nickname/statuses/:id/activity", OStatus.OStatusController, :activity)
|
2020-10-05 20:48:00 +00:00
|
|
|
end
|
2020-05-22 14:15:29 +00:00
|
|
|
|
2020-10-05 20:48:00 +00:00
|
|
|
scope "/", Pleroma.Web do
|
|
|
|
# Note: html format is supported only if static FE is enabled
|
2020-10-11 19:34:28 +00:00
|
|
|
# Note: http signature is only considered for json requests (no auth for non-json requests)
|
2021-05-23 22:25:18 +00:00
|
|
|
pipe_through([:accepts_html_xml_json, :http_signature, :static_fe])
|
2020-10-05 20:48:00 +00:00
|
|
|
|
2020-10-11 19:34:28 +00:00
|
|
|
# Note: returns user _profile_ for json requests, redirects to user _feed_ for non-json ones
|
2019-12-06 06:32:29 +00:00
|
|
|
get("/users/:nickname", Feed.UserController, :feed_redirect, as: :user_feed)
|
2020-10-02 19:18:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", Pleroma.Web do
|
2020-10-05 20:48:00 +00:00
|
|
|
# Note: html format is supported only if static FE is enabled
|
2021-05-23 22:25:18 +00:00
|
|
|
pipe_through([:accepts_html_xml, :static_fe])
|
2020-10-11 19:34:28 +00:00
|
|
|
|
2020-10-05 20:48:00 +00:00
|
|
|
get("/users/:nickname/feed", Feed.UserController, :feed, as: :user_feed)
|
|
|
|
end
|
2019-12-06 06:32:29 +00:00
|
|
|
|
2022-12-07 11:20:53 +00:00
|
|
|
scope "/", Pleroma.Web.StaticFE do
|
|
|
|
# Profile pages for static-fe
|
|
|
|
get("/users/:nickname/with_replies", StaticFEController, :show)
|
|
|
|
get("/users/:nickname/media", StaticFEController, :show)
|
|
|
|
end
|
|
|
|
|
2020-10-05 20:48:00 +00: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 06:32:29 +00:00
|
|
|
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
|
|
|
|
|
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
|
|
|
|
2020-05-08 01:08:11 +00:00
|
|
|
get("/users/:nickname/outbox", ActivityPubController, :outbox)
|
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
|
|
|
|
2022-12-07 11:20:53 +00:00
|
|
|
get("/users/:nickname/collections/featured", ActivityPubController, :pinned)
|
|
|
|
end
|
|
|
|
|
|
|
|
scope "/", Pleroma.Web.ActivityPub do
|
|
|
|
# Note: html format is supported only if static FE is enabled
|
|
|
|
pipe_through([:accepts_html_json, :static_fe, :activitypub_client])
|
|
|
|
|
2020-05-02 15:28:04 +00:00
|
|
|
# The following two are S2S as well, see `ActivityPub.fetch_follow_information_for_user/1`:
|
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)
|
|
|
|
|
2021-11-24 22:45:05 +00:00
|
|
|
get("/manifest.json", ManifestController, :show)
|
2022-01-08 21:44:37 +00:00
|
|
|
get("/web/manifest.json", MastoFEController, :manifest)
|
2019-10-11 12:48:01 +00:00
|
|
|
end
|
|
|
|
|
2019-10-02 13:05:14 +00:00
|
|
|
scope "/", Pleroma.Web do
|
2022-01-08 21:44:37 +00:00
|
|
|
pipe_through(:mastodon_html)
|
|
|
|
|
|
|
|
get("/web/login", MastodonAPI.AuthController, :login)
|
|
|
|
delete("/auth/sign_out", MastodonAPI.AuthController, :logout)
|
2022-08-21 16:52:02 +00:00
|
|
|
|
2022-08-21 16:24:37 +00:00
|
|
|
post("/auth/password", MastodonAPI.AuthController, :password_reset)
|
2022-08-21 15:22:15 +00:00
|
|
|
|
2022-08-21 16:52:02 +00:00
|
|
|
get("/web/*path", MastoFEController, :index)
|
|
|
|
|
2022-01-08 21:44:37 +00:00
|
|
|
get("/embed/:id", EmbedController, :show)
|
2017-11-12 13:23:05 +00:00
|
|
|
end
|
|
|
|
|
2021-05-22 20:04:05 +00:00
|
|
|
scope "/proxy/", Pleroma.Web do
|
|
|
|
get("/preview/:sig/:url", MediaProxy.MediaProxyController, :preview)
|
|
|
|
get("/preview/:sig/:url/:filename", MediaProxy.MediaProxyController, :preview)
|
|
|
|
get("/:sig/:url", MediaProxy.MediaProxyController, :remote)
|
|
|
|
get("/:sig/:url/:filename", MediaProxy.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
|
|
|
|
|
2021-12-15 21:17:11 +00:00
|
|
|
scope "/" do
|
|
|
|
pipe_through([:pleroma_html, :authenticate, :require_admin])
|
2022-12-16 03:32:51 +00:00
|
|
|
|
|
|
|
live_dashboard("/phoenix/live_dashboard",
|
|
|
|
metrics: {Pleroma.Web.Telemetry, :live_dashboard_metrics},
|
|
|
|
csp_nonce_assign_key: :csp_nonce
|
|
|
|
)
|
2021-12-15 21:17:11 +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
|
|
|
|
|
2020-06-23 18:10:32 +00:00
|
|
|
scope "/", Pleroma.Web.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)
|
2022-12-16 03:32:51 +00:00
|
|
|
get("/api/*path", RedirectController, :api_not_implemented)
|
2020-05-12 15:08:00 +00:00
|
|
|
get("/*path", RedirectController, :redirector_with_preload)
|
2018-09-17 10:21:01 +00:00
|
|
|
|
|
|
|
options("/*path", RedirectController, :empty)
|
2017-04-19 13:25:18 +00:00
|
|
|
end
|
2021-05-21 19:47:11 +00:00
|
|
|
|
|
|
|
# TODO: Change to Phoenix.Router.routes/1 for Phoenix 1.6.0+
|
|
|
|
def get_api_routes do
|
|
|
|
__MODULE__.__routes__()
|
|
|
|
|> Enum.reject(fn r -> r.plug == Pleroma.Web.Fallback.RedirectController end)
|
|
|
|
|> Enum.map(fn r ->
|
|
|
|
r.path
|
|
|
|
|> String.split("/", trim: true)
|
|
|
|
|> List.first()
|
|
|
|
end)
|
|
|
|
|> Enum.uniq()
|
|
|
|
end
|
2017-04-19 13:25:18 +00:00
|
|
|
end
|