1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.Router do
6 use Pleroma.Web, :router
7 import Phoenix.LiveDashboard.Router
9 pipeline :accepts_html do
10 plug(:accepts, ["html"])
13 pipeline :accepts_html_xml do
14 plug(:accepts, ["html", "xml", "rss", "atom"])
17 pipeline :accepts_html_json do
18 plug(:accepts, ["html", "activity+json", "json"])
21 pipeline :accepts_html_xml_json do
22 plug(:accepts, ["html", "xml", "rss", "atom", "activity+json", "json"])
25 pipeline :accepts_xml_rss_atom do
26 plug(:accepts, ["xml", "rss", "atom"])
30 plug(:accepts, ["html"])
36 plug(Pleroma.Web.Plugs.OAuthPlug)
37 plug(Pleroma.Web.Plugs.UserEnabledPlug)
38 plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
41 # Note: expects _user_ authentication (user-unbound app-bound tokens don't qualify)
42 pipeline :expect_user_authentication do
43 plug(Pleroma.Web.Plugs.ExpectAuthenticatedCheckPlug)
46 # Note: expects public instance or _user_ authentication (user-unbound tokens don't qualify)
47 pipeline :expect_public_instance_or_user_authentication do
48 plug(Pleroma.Web.Plugs.ExpectPublicOrAuthenticatedCheckPlug)
51 pipeline :authenticate do
52 plug(Pleroma.Web.Plugs.OAuthPlug)
53 plug(Pleroma.Web.Plugs.BasicAuthDecoderPlug)
54 plug(Pleroma.Web.Plugs.UserFetcherPlug)
55 plug(Pleroma.Web.Plugs.AuthenticationPlug)
58 pipeline :after_auth do
59 plug(Pleroma.Web.Plugs.UserEnabledPlug)
60 plug(Pleroma.Web.Plugs.SetUserSessionIdPlug)
61 plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
62 plug(Pleroma.Web.Plugs.UserTrackingPlug)
66 plug(:accepts, ["json"])
69 plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
72 pipeline :no_auth_or_privacy_expectations_api do
75 plug(Pleroma.Web.Plugs.IdempotencyPlug)
78 # Pipeline for app-related endpoints (no user auth checks — app-bound tokens must be supported)
80 plug(:no_auth_or_privacy_expectations_api)
84 plug(:expect_public_instance_or_user_authentication)
85 plug(:no_auth_or_privacy_expectations_api)
88 pipeline :authenticated_api do
89 plug(:expect_user_authentication)
90 plug(:no_auth_or_privacy_expectations_api)
91 plug(Pleroma.Web.Plugs.EnsureAuthenticatedPlug)
94 pipeline :admin_api do
95 plug(:expect_user_authentication)
97 plug(Pleroma.Web.Plugs.AdminSecretAuthenticationPlug)
99 plug(Pleroma.Web.Plugs.EnsureAuthenticatedPlug)
100 plug(Pleroma.Web.Plugs.UserIsStaffPlug)
101 plug(Pleroma.Web.Plugs.IdempotencyPlug)
104 pipeline :require_privileged_staff do
105 plug(Pleroma.Web.Plugs.EnsureStaffPrivilegedPlug)
108 pipeline :require_admin do
109 plug(Pleroma.Web.Plugs.UserIsAdminPlug)
112 pipeline :mastodon_html do
118 pipeline :pleroma_html do
121 plug(Pleroma.Web.Plugs.EnsureUserTokenAssignsPlug)
124 pipeline :well_known do
125 plug(:accepts, ["json", "jrd+json", "xml", "xrd+xml"])
129 plug(:accepts, ["json", "xml"])
130 plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
133 pipeline :pleroma_api do
134 plug(:accepts, ["html", "json"])
135 plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
138 pipeline :mailbox_preview do
139 plug(:accepts, ["html"])
141 plug(:put_secure_browser_headers, %{
142 "content-security-policy" =>
143 "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' 'unsafe-eval'"
147 pipeline :http_signature do
148 plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
149 plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
152 pipeline :static_fe do
155 plug(Pleroma.Web.Plugs.StaticFEPlug)
158 scope "/api/v1/pleroma", Pleroma.Web.TwitterAPI do
159 pipe_through(:pleroma_api)
161 get("/password_reset/:token", PasswordController, :reset, as: :reset_password)
162 post("/password_reset", PasswordController, :do_reset, as: :reset_password)
163 get("/emoji", UtilController, :emoji)
164 get("/captcha", UtilController, :captcha)
165 get("/healthcheck", UtilController, :healthcheck)
166 post("/remote_interaction", UtilController, :remote_interaction)
169 scope "/api/v1/pleroma", Pleroma.Web do
170 pipe_through(:pleroma_api)
171 post("/uploader_callback/:upload_path", UploaderController, :callback)
174 # AdminAPI: only admins can perform these actions
175 scope "/api/v1/pleroma/admin", Pleroma.Web.AdminAPI do
176 pipe_through([:admin_api, :require_admin])
178 put("/users/disable_mfa", AdminAPIController, :disable_mfa)
180 get("/users/:nickname/permission_group", AdminAPIController, :right_get)
181 get("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_get)
183 post("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_add)
186 "/users/:nickname/permission_group/:permission_group",
191 post("/users/permission_group/:permission_group", AdminAPIController, :right_add_multiple)
194 "/users/permission_group/:permission_group",
196 :right_delete_multiple
199 post("/users/follow", UserController, :follow)
200 post("/users/unfollow", UserController, :unfollow)
201 post("/users", UserController, :create)
203 patch("/users/suggest", UserController, :suggest)
204 patch("/users/unsuggest", UserController, :unsuggest)
206 get("/relay", RelayController, :index)
207 post("/relay", RelayController, :follow)
208 delete("/relay", RelayController, :unfollow)
210 patch("/users/force_password_reset", AdminAPIController, :force_password_reset)
211 get("/users/:nickname/credentials", AdminAPIController, :show_user_credentials)
212 patch("/users/:nickname/credentials", AdminAPIController, :update_user_credentials)
214 get("/instance_document/:name", InstanceDocumentController, :show)
215 patch("/instance_document/:name", InstanceDocumentController, :update)
216 delete("/instance_document/:name", InstanceDocumentController, :delete)
218 patch("/users/confirm_email", AdminAPIController, :confirm_email)
219 patch("/users/resend_confirmation_email", AdminAPIController, :resend_confirmation_email)
221 get("/config", ConfigController, :show)
222 post("/config", ConfigController, :update)
223 get("/config/descriptions", ConfigController, :descriptions)
224 get("/need_reboot", AdminAPIController, :need_reboot)
225 get("/restart", AdminAPIController, :restart)
227 get("/oauth_app", OAuthAppController, :index)
228 post("/oauth_app", OAuthAppController, :create)
229 patch("/oauth_app/:id", OAuthAppController, :update)
230 delete("/oauth_app/:id", OAuthAppController, :delete)
232 get("/media_proxy_caches", MediaProxyCacheController, :index)
233 post("/media_proxy_caches/delete", MediaProxyCacheController, :delete)
234 post("/media_proxy_caches/purge", MediaProxyCacheController, :purge)
236 get("/frontends", FrontendController, :index)
237 post("/frontends/install", FrontendController, :install)
239 post("/backups", AdminAPIController, :create_backup)
241 get("/announcements", AnnouncementController, :index)
242 post("/announcements", AnnouncementController, :create)
243 get("/announcements/:id", AnnouncementController, :show)
244 patch("/announcements/:id", AnnouncementController, :change)
245 delete("/announcements/:id", AnnouncementController, :delete)
248 # AdminAPI: admins and mods (staff) can perform these actions (if enabled by config)
249 scope "/api/v1/pleroma/admin", Pleroma.Web.AdminAPI do
250 pipe_through([:admin_api, :require_privileged_staff])
252 delete("/users", UserController, :delete)
254 get("/users/:nickname/password_reset", AdminAPIController, :get_password_reset)
255 patch("/users/:nickname/credentials", AdminAPIController, :update_user_credentials)
257 get("/users/:nickname/statuses", AdminAPIController, :list_user_statuses)
259 get("/statuses", StatusController, :index)
262 # AdminAPI: admins and mods (staff) can perform these actions
263 scope "/api/v1/pleroma/admin", Pleroma.Web.AdminAPI do
264 pipe_through(:admin_api)
266 put("/users/tag", AdminAPIController, :tag_users)
267 delete("/users/tag", AdminAPIController, :untag_users)
269 patch("/users/:nickname/toggle_activation", UserController, :toggle_activation)
270 patch("/users/activate", UserController, :activate)
271 patch("/users/deactivate", UserController, :deactivate)
272 patch("/users/approve", UserController, :approve)
274 post("/users/invite_token", InviteController, :create)
275 get("/users/invites", InviteController, :index)
276 post("/users/revoke_invite", InviteController, :revoke)
277 post("/users/email_invite", InviteController, :email)
279 get("/users", UserController, :index)
280 get("/users/:nickname", UserController, :show)
282 get("/instances/:instance/statuses", InstanceController, :list_statuses)
283 delete("/instances/:instance", InstanceController, :delete)
285 get("/reports", ReportController, :index)
286 get("/reports/:id", ReportController, :show)
287 patch("/reports", ReportController, :update)
288 post("/reports/:id/notes", ReportController, :notes_create)
289 delete("/reports/:report_id/notes/:id", ReportController, :notes_delete)
291 get("/statuses/:id", StatusController, :show)
292 put("/statuses/:id", StatusController, :update)
293 delete("/statuses/:id", StatusController, :delete)
295 get("/moderation_log", AdminAPIController, :list_log)
297 post("/reload_emoji", AdminAPIController, :reload_emoji)
298 get("/stats", AdminAPIController, :stats)
301 scope "/api/v1/pleroma/emoji", Pleroma.Web.PleromaAPI do
303 pipe_through(:admin_api)
305 post("/", EmojiPackController, :create)
306 patch("/", EmojiPackController, :update)
307 delete("/", EmojiPackController, :delete)
313 get("/", EmojiPackController, :show)
318 pipe_through(:admin_api)
320 get("/import", EmojiPackController, :import_from_filesystem)
321 get("/remote", EmojiPackController, :remote)
322 post("/download", EmojiPackController, :download)
324 post("/files", EmojiFileController, :create)
325 patch("/files", EmojiFileController, :update)
326 delete("/files", EmojiFileController, :delete)
329 # Pack info / downloading
333 get("/", EmojiPackController, :index)
334 get("/archive", EmojiPackController, :archive)
338 scope "/", Pleroma.Web.TwitterAPI do
339 pipe_through(:pleroma_html)
341 post("/main/ostatus", UtilController, :remote_subscribe)
342 get("/main/ostatus", UtilController, :show_subscribe_form)
343 get("/ostatus_subscribe", RemoteFollowController, :follow)
344 post("/ostatus_subscribe", RemoteFollowController, :do_follow)
347 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
348 pipe_through(:authenticated_api)
350 post("/change_email", UtilController, :change_email)
351 post("/change_password", UtilController, :change_password)
352 post("/delete_account", UtilController, :delete_account)
353 put("/notification_settings", UtilController, :update_notificaton_settings)
354 post("/disable_account", UtilController, :disable_account)
355 post("/move_account", UtilController, :move_account)
357 put("/aliases", UtilController, :add_alias)
358 get("/aliases", UtilController, :list_aliases)
359 delete("/aliases", UtilController, :delete_alias)
362 scope "/api/pleroma", Pleroma.Web.PleromaAPI do
363 pipe_through(:authenticated_api)
365 post("/mutes_import", UserImportController, :mutes)
366 post("/blocks_import", UserImportController, :blocks)
367 post("/follow_import", UserImportController, :follow)
369 get("/accounts/mfa", TwoFactorAuthenticationController, :settings)
370 get("/accounts/mfa/backup_codes", TwoFactorAuthenticationController, :backup_codes)
371 get("/accounts/mfa/setup/:method", TwoFactorAuthenticationController, :setup)
372 post("/accounts/mfa/confirm/:method", TwoFactorAuthenticationController, :confirm)
373 delete("/accounts/mfa/:method", TwoFactorAuthenticationController, :disable)
376 scope "/oauth", Pleroma.Web.OAuth do
377 # Note: use /api/v1/accounts/verify_credentials for userinfo of signed-in user
379 get("/registration_details", OAuthController, :registration_details)
381 post("/mfa/verify", MFAController, :verify, as: :mfa_verify)
382 get("/mfa", MFAController, :show)
387 get("/authorize", OAuthController, :authorize)
388 post("/authorize", OAuthController, :create_authorization)
392 pipe_through(:fetch_session)
394 post("/token", OAuthController, :token_exchange)
395 post("/revoke", OAuthController, :token_revoke)
396 post("/mfa/challenge", MFAController, :challenge)
400 pipe_through(:browser)
402 get("/prepare_request", OAuthController, :prepare_request)
403 get("/:provider", OAuthController, :request)
404 get("/:provider/callback", OAuthController, :callback)
405 post("/register", OAuthController, :register)
409 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
412 get("/apps", AppController, :index)
413 get("/statuses/:id/reactions/:emoji", EmojiReactionController, :index)
414 get("/statuses/:id/reactions", EmojiReactionController, :index)
417 scope "/api/v0/pleroma", Pleroma.Web.PleromaAPI do
418 pipe_through(:authenticated_api)
419 get("/reports", ReportController, :index)
420 get("/reports/:id", ReportController, :show)
423 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
425 pipe_through(:authenticated_api)
427 get("/conversations/:id/statuses", ConversationController, :statuses)
428 get("/conversations/:id", ConversationController, :show)
429 post("/conversations/read", ConversationController, :mark_as_read)
430 patch("/conversations/:id", ConversationController, :update)
432 put("/statuses/:id/reactions/:emoji", EmojiReactionController, :create)
433 delete("/statuses/:id/reactions/:emoji", EmojiReactionController, :delete)
434 post("/notifications/read", NotificationController, :mark_as_read)
436 get("/mascot", MascotController, :show)
437 put("/mascot", MascotController, :update)
439 get("/backups", BackupController, :index)
440 post("/backups", BackupController, :create)
445 get("/accounts/:id/favourites", AccountController, :favourites)
449 pipe_through(:authenticated_api)
451 post("/accounts/:id/subscribe", AccountController, :subscribe)
452 post("/accounts/:id/unsubscribe", AccountController, :unsubscribe)
455 post("/accounts/confirmation_resend", AccountController, :confirmation_resend)
458 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
460 get("/federation_status", InstancesController, :show)
463 scope "/api/v1", Pleroma.Web.PleromaAPI do
464 pipe_through(:authenticated_api)
465 put("/statuses/:id/emoji_reactions/:emoji", EmojiReactionController, :create)
468 scope "/api/v1/akkoma", Pleroma.Web.AkkomaAPI do
469 pipe_through(:authenticated_api)
470 get("/translation/languages", TranslationController, :languages)
472 get("/frontend_settings/:frontend_name", FrontendSettingsController, :list_profiles)
475 "/frontend_settings/:frontend_name/:profile_name",
476 FrontendSettingsController,
481 "/frontend_settings/:frontend_name/:profile_name",
482 FrontendSettingsController,
487 "/frontend_settings/:frontend_name/:profile_name",
488 FrontendSettingsController,
493 scope "/api/v1", Pleroma.Web.MastodonAPI do
494 pipe_through(:authenticated_api)
496 get("/accounts/verify_credentials", AccountController, :verify_credentials)
497 patch("/accounts/update_credentials", AccountController, :update_credentials)
499 get("/accounts/relationships", AccountController, :relationships)
500 get("/accounts/:id/lists", AccountController, :lists)
501 get("/accounts/:id/identity_proofs", AccountController, :identity_proofs)
502 get("/endorsements", AccountController, :endorsements)
503 get("/blocks", AccountController, :blocks)
504 get("/mutes", AccountController, :mutes)
506 post("/follows", AccountController, :follow_by_uri)
507 post("/accounts/:id/follow", AccountController, :follow)
508 post("/accounts/:id/unfollow", AccountController, :unfollow)
509 post("/accounts/:id/block", AccountController, :block)
510 post("/accounts/:id/unblock", AccountController, :unblock)
511 post("/accounts/:id/mute", AccountController, :mute)
512 post("/accounts/:id/unmute", AccountController, :unmute)
513 post("/accounts/:id/note", AccountController, :note)
514 post("/accounts/:id/remove_from_followers", AccountController, :remove_from_followers)
516 get("/conversations", ConversationController, :index)
517 post("/conversations/:id/read", ConversationController, :mark_as_read)
518 delete("/conversations/:id", ConversationController, :delete)
520 get("/domain_blocks", DomainBlockController, :index)
521 post("/domain_blocks", DomainBlockController, :create)
522 delete("/domain_blocks", DomainBlockController, :delete)
524 get("/filters", FilterController, :index)
526 post("/filters", FilterController, :create)
527 get("/filters/:id", FilterController, :show)
528 put("/filters/:id", FilterController, :update)
529 delete("/filters/:id", FilterController, :delete)
531 get("/follow_requests", FollowRequestController, :index)
532 post("/follow_requests/:id/authorize", FollowRequestController, :authorize)
533 post("/follow_requests/:id/reject", FollowRequestController, :reject)
535 get("/lists", ListController, :index)
536 get("/lists/:id", ListController, :show)
537 get("/lists/:id/accounts", ListController, :list_accounts)
539 delete("/lists/:id", ListController, :delete)
540 post("/lists", ListController, :create)
541 put("/lists/:id", ListController, :update)
542 post("/lists/:id/accounts", ListController, :add_to_list)
543 delete("/lists/:id/accounts", ListController, :remove_from_list)
545 get("/markers", MarkerController, :index)
546 post("/markers", MarkerController, :upsert)
548 post("/media", MediaController, :create)
549 get("/media/:id", MediaController, :show)
550 put("/media/:id", MediaController, :update)
552 get("/notifications", NotificationController, :index)
553 get("/notifications/:id", NotificationController, :show)
555 post("/notifications/:id/dismiss", NotificationController, :dismiss)
556 post("/notifications/clear", NotificationController, :clear)
557 delete("/notifications/destroy_multiple", NotificationController, :destroy_multiple)
559 post("/polls/:id/votes", PollController, :vote)
561 post("/reports", ReportController, :create)
563 get("/scheduled_statuses", ScheduledActivityController, :index)
564 get("/scheduled_statuses/:id", ScheduledActivityController, :show)
566 put("/scheduled_statuses/:id", ScheduledActivityController, :update)
567 delete("/scheduled_statuses/:id", ScheduledActivityController, :delete)
569 # Unlike `GET /api/v1/accounts/:id/favourites`, demands authentication
570 get("/favourites", StatusController, :favourites)
571 get("/bookmarks", StatusController, :bookmarks)
573 post("/statuses", StatusController, :create)
574 put("/statuses/:id", StatusController, :update)
575 delete("/statuses/:id", StatusController, :delete)
576 post("/statuses/:id/reblog", StatusController, :reblog)
577 post("/statuses/:id/unreblog", StatusController, :unreblog)
578 post("/statuses/:id/favourite", StatusController, :favourite)
579 post("/statuses/:id/unfavourite", StatusController, :unfavourite)
580 post("/statuses/:id/pin", StatusController, :pin)
581 post("/statuses/:id/unpin", StatusController, :unpin)
582 post("/statuses/:id/bookmark", StatusController, :bookmark)
583 post("/statuses/:id/unbookmark", StatusController, :unbookmark)
584 post("/statuses/:id/mute", StatusController, :mute_conversation)
585 post("/statuses/:id/unmute", StatusController, :unmute_conversation)
586 get("/statuses/:id/translations/:language", StatusController, :translate)
588 post("/push/subscription", SubscriptionController, :create)
589 get("/push/subscription", SubscriptionController, :show)
590 put("/push/subscription", SubscriptionController, :update)
591 delete("/push/subscription", SubscriptionController, :delete)
593 get("/suggestions", SuggestionController, :index)
594 delete("/suggestions/:account_id", SuggestionController, :dismiss)
596 get("/timelines/home", TimelineController, :home)
597 get("/timelines/direct", TimelineController, :direct)
598 get("/timelines/list/:list_id", TimelineController, :list)
599 get("/timelines/bubble", TimelineController, :bubble)
601 get("/announcements", AnnouncementController, :index)
602 post("/announcements/:id/dismiss", AnnouncementController, :mark_read)
604 get("/tags/:id", TagController, :show)
605 post("/tags/:id/follow", TagController, :follow)
606 post("/tags/:id/unfollow", TagController, :unfollow)
609 scope "/api/web", Pleroma.Web do
610 pipe_through(:authenticated_api)
612 # Backend-obscure settings blob for MastoFE, don't parse/reuse elsewhere
613 put("/settings", MastoFEController, :put_settings)
616 scope "/api/v1", Pleroma.Web.MastodonAPI do
617 pipe_through(:app_api)
619 post("/apps", AppController, :create)
620 get("/apps/verify_credentials", AppController, :verify_credentials)
623 scope "/api/v1", Pleroma.Web.MastodonAPI do
626 get("/accounts/search", SearchController, :account_search)
627 get("/accounts/lookup", AccountController, :lookup)
629 get("/accounts/:id/statuses", AccountController, :statuses)
630 get("/accounts/:id/followers", AccountController, :followers)
631 get("/accounts/:id/following", AccountController, :following)
632 get("/accounts/:id", AccountController, :show)
634 post("/accounts", AccountController, :create)
636 get("/instance", InstanceController, :show)
637 get("/instance/peers", InstanceController, :peers)
639 get("/statuses", StatusController, :index)
640 get("/statuses/:id", StatusController, :show)
641 get("/statuses/:id/context", StatusController, :context)
642 get("/statuses/:id/favourited_by", StatusController, :favourited_by)
643 get("/statuses/:id/reblogged_by", StatusController, :reblogged_by)
644 get("/statuses/:id/history", StatusController, :show_history)
645 get("/statuses/:id/source", StatusController, :show_source)
647 get("/custom_emojis", CustomEmojiController, :index)
649 get("/trends", MastodonAPIController, :empty_array)
651 get("/timelines/public", TimelineController, :public)
652 get("/timelines/tag/:tag", TimelineController, :hashtag)
654 get("/polls/:id", PollController, :show)
656 get("/directory", DirectoryController, :index)
659 scope "/api/v2", Pleroma.Web.MastodonAPI do
661 get("/search", SearchController, :search2)
663 post("/media", MediaController, :create2)
665 get("/suggestions", SuggestionController, :index2)
668 scope "/api", Pleroma.Web do
669 pipe_through(:config)
671 get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
674 scope "/api", Pleroma.Web do
678 "/account/confirm_email/:user_id/:token",
679 TwitterAPI.Controller,
686 pipe_through(:base_api)
688 get("/openapi", OpenApiSpex.Plug.RenderSpec, [])
691 scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
692 pipe_through(:authenticated_api)
694 get("/oauth_tokens", TwitterAPI.Controller, :oauth_tokens)
695 delete("/oauth_tokens/:id", TwitterAPI.Controller, :revoke_token)
698 scope "/", Pleroma.Web do
699 # Note: html format is supported only if static FE is enabled
700 # Note: http signature is only considered for json requests (no auth for non-json requests)
701 pipe_through([:accepts_html_json, :http_signature, :static_fe])
703 get("/objects/:uuid", OStatus.OStatusController, :object)
704 get("/activities/:uuid", OStatus.OStatusController, :activity)
705 get("/notice/:id", OStatus.OStatusController, :notice)
707 # Notice compatibility routes for other frontends
708 get("/@:nickname/:id", OStatus.OStatusController, :notice)
709 get("/@:nickname/posts/:id", OStatus.OStatusController, :notice)
710 get("/:nickname/status/:id", OStatus.OStatusController, :notice)
712 # Mastodon compatibility routes
713 get("/users/:nickname/statuses/:id", OStatus.OStatusController, :object)
714 get("/users/:nickname/statuses/:id/activity", OStatus.OStatusController, :activity)
717 scope "/", Pleroma.Web do
718 # Note: html format is supported only if static FE is enabled
719 # Note: http signature is only considered for json requests (no auth for non-json requests)
720 pipe_through([:accepts_html_xml_json, :http_signature, :static_fe])
722 # Note: returns user _profile_ for json requests, redirects to user _feed_ for non-json ones
723 get("/users/:nickname", Feed.UserController, :feed_redirect, as: :user_feed)
726 scope "/", Pleroma.Web do
727 # Note: html format is supported only if static FE is enabled
728 pipe_through([:accepts_html_xml, :static_fe])
730 get("/users/:nickname/feed", Feed.UserController, :feed, as: :user_feed)
733 scope "/", Pleroma.Web.StaticFE do
734 # Profile pages for static-fe
735 get("/users/:nickname/with_replies", StaticFEController, :show)
736 get("/users/:nickname/media", StaticFEController, :show)
739 scope "/", Pleroma.Web do
740 pipe_through(:accepts_html)
741 get("/notice/:id/embed_player", OStatus.OStatusController, :notice_player)
744 scope "/", Pleroma.Web do
745 pipe_through(:accepts_xml_rss_atom)
746 get("/tags/:tag", Feed.TagController, :feed, as: :tag_feed)
749 scope "/", Pleroma.Web do
750 pipe_through(:browser)
751 get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
754 pipeline :ap_service_actor do
755 plug(:accepts, ["activity+json", "json"])
758 # Server to Server (S2S) AP interactions
759 pipeline :activitypub do
760 plug(:ap_service_actor)
761 plug(:http_signature)
764 # Client to Server (C2S) AP interactions
765 pipeline :activitypub_client do
766 plug(:ap_service_actor)
772 scope "/", Pleroma.Web.ActivityPub do
773 pipe_through([:activitypub_client])
775 get("/api/ap/whoami", ActivityPubController, :whoami)
776 get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
778 get("/users/:nickname/outbox", ActivityPubController, :outbox)
779 post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
780 post("/api/ap/upload_media", ActivityPubController, :upload_media)
782 get("/users/:nickname/collections/featured", ActivityPubController, :pinned)
785 scope "/", Pleroma.Web.ActivityPub do
786 # Note: html format is supported only if static FE is enabled
787 pipe_through([:accepts_html_json, :static_fe, :activitypub_client])
789 # The following two are S2S as well, see `ActivityPub.fetch_follow_information_for_user/1`:
790 get("/users/:nickname/followers", ActivityPubController, :followers)
791 get("/users/:nickname/following", ActivityPubController, :following)
794 scope "/", Pleroma.Web.ActivityPub do
795 pipe_through(:activitypub)
796 post("/inbox", ActivityPubController, :inbox)
797 post("/users/:nickname/inbox", ActivityPubController, :inbox)
800 scope "/relay", Pleroma.Web.ActivityPub do
801 pipe_through(:ap_service_actor)
803 get("/", ActivityPubController, :relay)
806 pipe_through(:http_signature)
807 post("/inbox", ActivityPubController, :inbox)
810 get("/following", ActivityPubController, :relay_following)
811 get("/followers", ActivityPubController, :relay_followers)
814 scope "/internal/fetch", Pleroma.Web.ActivityPub do
815 pipe_through(:ap_service_actor)
817 get("/", ActivityPubController, :internal_fetch)
818 post("/inbox", ActivityPubController, :inbox)
821 scope "/.well-known", Pleroma.Web do
822 pipe_through(:well_known)
824 get("/host-meta", WebFinger.WebFingerController, :host_meta)
825 get("/webfinger", WebFinger.WebFingerController, :webfinger)
826 get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
829 scope "/nodeinfo", Pleroma.Web do
830 get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
833 scope "/", Pleroma.Web do
836 get("/manifest.json", ManifestController, :show)
837 get("/web/manifest.json", MastoFEController, :manifest)
840 scope "/", Pleroma.Web do
841 pipe_through(:mastodon_html)
843 get("/web/login", MastodonAPI.AuthController, :login)
844 delete("/auth/sign_out", MastodonAPI.AuthController, :logout)
846 post("/auth/password", MastodonAPI.AuthController, :password_reset)
848 get("/web/*path", MastoFEController, :index)
850 get("/embed/:id", EmbedController, :show)
853 scope "/proxy/", Pleroma.Web do
854 get("/preview/:sig/:url", MediaProxy.MediaProxyController, :preview)
855 get("/preview/:sig/:url/:filename", MediaProxy.MediaProxyController, :preview)
856 get("/:sig/:url", MediaProxy.MediaProxyController, :remote)
857 get("/:sig/:url/:filename", MediaProxy.MediaProxyController, :remote)
860 if Pleroma.Config.get(:env) == :dev do
862 pipe_through([:mailbox_preview])
864 forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
869 pipe_through([:pleroma_html, :authenticate, :require_admin])
870 live_dashboard("/phoenix/live_dashboard")
873 # Test-only routes needed to test action dispatching and plug chain execution
874 if Pleroma.Config.get(:env) == :test do
877 :fallback_oauth_check,
879 :fallback_oauth_skip_publicity_check,
880 :skip_oauth_skip_publicity_check,
881 :missing_oauth_check_definition
884 scope "/test/api", Pleroma.Tests do
887 for action <- @test_actions do
888 get("/#{action}", AuthTestController, action)
892 scope "/test/authenticated_api", Pleroma.Tests do
893 pipe_through(:authenticated_api)
895 for action <- @test_actions do
896 get("/#{action}", AuthTestController, action)
901 scope "/", Pleroma.Web.MongooseIM do
902 get("/user_exists", MongooseIMController, :user_exists)
903 get("/check_password", MongooseIMController, :check_password)
906 scope "/", Pleroma.Web.Fallback do
907 get("/registration/:token", RedirectController, :registration_page)
908 get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
909 match(:*, "/api/pleroma*path", LegacyPleromaApiRerouterPlug, [])
910 get("/api*path", RedirectController, :api_not_implemented)
911 get("/*path", RedirectController, :redirector_with_preload)
913 options("/*path", RedirectController, :empty)
916 # TODO: Change to Phoenix.Router.routes/1 for Phoenix 1.6.0+
917 def get_api_routes do
918 __MODULE__.__routes__()
919 |> Enum.reject(fn r -> r.plug == Pleroma.Web.Fallback.RedirectController end)
922 |> String.split("/", trim: true)