4b264c43ec1bea39a6b6f2297925457e7f39d3fe
[akkoma] / lib / pleroma / web / router.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.Router do
6 use Pleroma.Web, :router
7
8 pipeline :browser do
9 plug(:accepts, ["html"])
10 plug(:fetch_session)
11 end
12
13 pipeline :oauth do
14 plug(:fetch_session)
15 plug(Pleroma.Plugs.OAuthPlug)
16 plug(Pleroma.Plugs.UserEnabledPlug)
17 end
18
19 pipeline :expect_authentication do
20 plug(Pleroma.Plugs.ExpectAuthenticatedCheckPlug)
21 end
22
23 pipeline :expect_public_instance_or_authentication do
24 plug(Pleroma.Plugs.ExpectPublicOrAuthenticatedCheckPlug)
25 end
26
27 pipeline :authenticate do
28 plug(Pleroma.Plugs.OAuthPlug)
29 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
30 plug(Pleroma.Plugs.UserFetcherPlug)
31 plug(Pleroma.Plugs.SessionAuthenticationPlug)
32 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
33 plug(Pleroma.Plugs.AuthenticationPlug)
34 end
35
36 pipeline :after_auth do
37 plug(Pleroma.Plugs.UserEnabledPlug)
38 plug(Pleroma.Plugs.SetUserSessionIdPlug)
39 plug(Pleroma.Plugs.EnsureUserKeyPlug)
40 end
41
42 pipeline :base_api do
43 plug(:accepts, ["json"])
44 plug(:fetch_session)
45 plug(:authenticate)
46 plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
47 end
48
49 pipeline :api do
50 plug(:expect_public_instance_or_authentication)
51 plug(:base_api)
52 plug(:after_auth)
53 plug(Pleroma.Plugs.IdempotencyPlug)
54 end
55
56 pipeline :authenticated_api do
57 plug(:expect_authentication)
58 plug(:base_api)
59 plug(:after_auth)
60 plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
61 plug(Pleroma.Plugs.IdempotencyPlug)
62 end
63
64 pipeline :admin_api do
65 plug(:expect_authentication)
66 plug(:base_api)
67 plug(Pleroma.Plugs.AdminSecretAuthenticationPlug)
68 plug(:after_auth)
69 plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
70 plug(Pleroma.Plugs.UserIsAdminPlug)
71 plug(Pleroma.Plugs.IdempotencyPlug)
72 end
73
74 pipeline :mastodon_html do
75 plug(:browser)
76 plug(:authenticate)
77 plug(:after_auth)
78 end
79
80 pipeline :pleroma_html do
81 plug(:browser)
82 plug(:authenticate)
83 plug(Pleroma.Plugs.EnsureUserKeyPlug)
84 end
85
86 pipeline :well_known do
87 plug(:accepts, ["json", "jrd+json", "xml", "xrd+xml"])
88 end
89
90 pipeline :config do
91 plug(:accepts, ["json", "xml"])
92 plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
93 end
94
95 pipeline :pleroma_api do
96 plug(:accepts, ["html", "json"])
97 plug(OpenApiSpex.Plug.PutApiSpec, module: Pleroma.Web.ApiSpec)
98 end
99
100 pipeline :mailbox_preview do
101 plug(:accepts, ["html"])
102
103 plug(:put_secure_browser_headers, %{
104 "content-security-policy" =>
105 "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' 'unsafe-eval'"
106 })
107 end
108
109 pipeline :http_signature do
110 plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
111 plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
112 end
113
114 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
115 pipe_through(:pleroma_api)
116
117 get("/password_reset/:token", PasswordController, :reset, as: :reset_password)
118 post("/password_reset", PasswordController, :do_reset, as: :reset_password)
119 get("/emoji", UtilController, :emoji)
120 get("/captcha", UtilController, :captcha)
121 get("/healthcheck", UtilController, :healthcheck)
122 end
123
124 scope "/api/pleroma", Pleroma.Web do
125 pipe_through(:pleroma_api)
126 post("/uploader_callback/:upload_path", UploaderController, :callback)
127 end
128
129 scope "/api/pleroma/admin", Pleroma.Web.AdminAPI do
130 pipe_through(:admin_api)
131
132 post("/users/follow", AdminAPIController, :user_follow)
133 post("/users/unfollow", AdminAPIController, :user_unfollow)
134
135 put("/users/disable_mfa", AdminAPIController, :disable_mfa)
136 delete("/users", AdminAPIController, :user_delete)
137 post("/users", AdminAPIController, :users_create)
138 patch("/users/:nickname/toggle_activation", AdminAPIController, :user_toggle_activation)
139 patch("/users/activate", AdminAPIController, :user_activate)
140 patch("/users/deactivate", AdminAPIController, :user_deactivate)
141 put("/users/tag", AdminAPIController, :tag_users)
142 delete("/users/tag", AdminAPIController, :untag_users)
143
144 get("/users/:nickname/permission_group", AdminAPIController, :right_get)
145 get("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_get)
146
147 post("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_add)
148
149 delete(
150 "/users/:nickname/permission_group/:permission_group",
151 AdminAPIController,
152 :right_delete
153 )
154
155 post("/users/permission_group/:permission_group", AdminAPIController, :right_add_multiple)
156
157 delete(
158 "/users/permission_group/:permission_group",
159 AdminAPIController,
160 :right_delete_multiple
161 )
162
163 get("/relay", AdminAPIController, :relay_list)
164 post("/relay", AdminAPIController, :relay_follow)
165 delete("/relay", AdminAPIController, :relay_unfollow)
166
167 post("/users/invite_token", AdminAPIController, :create_invite_token)
168 get("/users/invites", AdminAPIController, :invites)
169 post("/users/revoke_invite", AdminAPIController, :revoke_invite)
170 post("/users/email_invite", AdminAPIController, :email_invite)
171
172 get("/users/:nickname/password_reset", AdminAPIController, :get_password_reset)
173 patch("/users/force_password_reset", AdminAPIController, :force_password_reset)
174 get("/users/:nickname/credentials", AdminAPIController, :show_user_credentials)
175 patch("/users/:nickname/credentials", AdminAPIController, :update_user_credentials)
176
177 get("/users", AdminAPIController, :list_users)
178 get("/users/:nickname", AdminAPIController, :user_show)
179 get("/users/:nickname/statuses", AdminAPIController, :list_user_statuses)
180
181 get("/instances/:instance/statuses", AdminAPIController, :list_instance_statuses)
182
183 patch("/users/confirm_email", AdminAPIController, :confirm_email)
184 patch("/users/resend_confirmation_email", AdminAPIController, :resend_confirmation_email)
185
186 get("/reports", AdminAPIController, :list_reports)
187 get("/reports/:id", AdminAPIController, :report_show)
188 patch("/reports", AdminAPIController, :reports_update)
189 post("/reports/:id/notes", AdminAPIController, :report_notes_create)
190 delete("/reports/:report_id/notes/:id", AdminAPIController, :report_notes_delete)
191
192 get("/statuses/:id", AdminAPIController, :status_show)
193 put("/statuses/:id", AdminAPIController, :status_update)
194 delete("/statuses/:id", AdminAPIController, :status_delete)
195 get("/statuses", AdminAPIController, :list_statuses)
196
197 get("/config", AdminAPIController, :config_show)
198 post("/config", AdminAPIController, :config_update)
199 get("/config/descriptions", AdminAPIController, :config_descriptions)
200 get("/need_reboot", AdminAPIController, :need_reboot)
201 get("/restart", AdminAPIController, :restart)
202
203 get("/moderation_log", AdminAPIController, :list_log)
204
205 post("/reload_emoji", AdminAPIController, :reload_emoji)
206 get("/stats", AdminAPIController, :stats)
207
208 get("/oauth_app", AdminAPIController, :oauth_app_list)
209 post("/oauth_app", AdminAPIController, :oauth_app_create)
210 patch("/oauth_app/:id", AdminAPIController, :oauth_app_update)
211 delete("/oauth_app/:id", AdminAPIController, :oauth_app_delete)
212 end
213
214 scope "/api/pleroma/emoji", Pleroma.Web.PleromaAPI do
215 # Modifying packs
216 scope "/packs" do
217 pipe_through(:admin_api)
218
219 get("/import", EmojiAPIController, :import_from_filesystem)
220 get("/remote", EmojiAPIController, :remote)
221 post("/download", EmojiAPIController, :download)
222
223 post("/:name", EmojiAPIController, :create)
224 patch("/:name", EmojiAPIController, :update)
225 delete("/:name", EmojiAPIController, :delete)
226
227 post("/:name/files", EmojiAPIController, :add_file)
228 patch("/:name/files", EmojiAPIController, :update_file)
229 delete("/:name/files", EmojiAPIController, :delete_file)
230 end
231
232 # Pack info / downloading
233 scope "/packs" do
234 get("/", EmojiAPIController, :list)
235 get("/:name", EmojiAPIController, :show)
236 get("/:name/archive", EmojiAPIController, :archive)
237 end
238 end
239
240 scope "/", Pleroma.Web.TwitterAPI do
241 pipe_through(:pleroma_html)
242
243 post("/main/ostatus", UtilController, :remote_subscribe)
244 get("/ostatus_subscribe", RemoteFollowController, :follow)
245
246 post("/ostatus_subscribe", RemoteFollowController, :do_follow)
247 end
248
249 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
250 pipe_through(:authenticated_api)
251
252 post("/change_email", UtilController, :change_email)
253 post("/change_password", UtilController, :change_password)
254 post("/delete_account", UtilController, :delete_account)
255 put("/notification_settings", UtilController, :update_notificaton_settings)
256 post("/disable_account", UtilController, :disable_account)
257
258 post("/blocks_import", UtilController, :blocks_import)
259 post("/follow_import", UtilController, :follow_import)
260 end
261
262 scope "/api/pleroma", Pleroma.Web.PleromaAPI do
263 pipe_through(:authenticated_api)
264
265 get("/accounts/mfa", TwoFactorAuthenticationController, :settings)
266 get("/accounts/mfa/backup_codes", TwoFactorAuthenticationController, :backup_codes)
267 get("/accounts/mfa/setup/:method", TwoFactorAuthenticationController, :setup)
268 post("/accounts/mfa/confirm/:method", TwoFactorAuthenticationController, :confirm)
269 delete("/accounts/mfa/:method", TwoFactorAuthenticationController, :disable)
270 end
271
272 scope "/oauth", Pleroma.Web.OAuth do
273 scope [] do
274 pipe_through(:oauth)
275 get("/authorize", OAuthController, :authorize)
276 end
277
278 post("/authorize", OAuthController, :create_authorization)
279 post("/token", OAuthController, :token_exchange)
280 post("/revoke", OAuthController, :token_revoke)
281 get("/registration_details", OAuthController, :registration_details)
282
283 post("/mfa/challenge", MFAController, :challenge)
284 post("/mfa/verify", MFAController, :verify, as: :mfa_verify)
285 get("/mfa", MFAController, :show)
286
287 scope [] do
288 pipe_through(:browser)
289
290 get("/prepare_request", OAuthController, :prepare_request)
291 get("/:provider", OAuthController, :request)
292 get("/:provider/callback", OAuthController, :callback)
293 post("/register", OAuthController, :register)
294 end
295 end
296
297 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
298 pipe_through(:api)
299
300 get("/statuses/:id/reactions/:emoji", PleromaAPIController, :emoji_reactions_by)
301 get("/statuses/:id/reactions", PleromaAPIController, :emoji_reactions_by)
302 end
303
304 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
305 scope [] do
306 pipe_through(:authenticated_api)
307
308 post("/chats/by-account-id/:id", ChatController, :create)
309 get("/chats", ChatController, :index)
310 get("/chats/:id/messages", ChatController, :messages)
311 post("/chats/:id/messages", ChatController, :post_chat_message)
312 post("/chats/:id/read", ChatController, :mark_as_read)
313 end
314
315 scope [] do
316 pipe_through(:authenticated_api)
317
318 get("/conversations/:id/statuses", PleromaAPIController, :conversation_statuses)
319 get("/conversations/:id", PleromaAPIController, :conversation)
320 post("/conversations/read", PleromaAPIController, :mark_conversations_as_read)
321 end
322
323 scope [] do
324 pipe_through(:authenticated_api)
325
326 patch("/conversations/:id", PleromaAPIController, :update_conversation)
327 put("/statuses/:id/reactions/:emoji", PleromaAPIController, :react_with_emoji)
328 delete("/statuses/:id/reactions/:emoji", PleromaAPIController, :unreact_with_emoji)
329 post("/notifications/read", PleromaAPIController, :mark_notifications_as_read)
330
331 patch("/accounts/update_avatar", AccountController, :update_avatar)
332 patch("/accounts/update_banner", AccountController, :update_banner)
333 patch("/accounts/update_background", AccountController, :update_background)
334
335 get("/mascot", MascotController, :show)
336 put("/mascot", MascotController, :update)
337
338 post("/scrobble", ScrobbleController, :new_scrobble)
339 end
340
341 scope [] do
342 pipe_through(:api)
343 get("/accounts/:id/favourites", AccountController, :favourites)
344 end
345
346 scope [] do
347 pipe_through(:authenticated_api)
348
349 post("/accounts/:id/subscribe", AccountController, :subscribe)
350 post("/accounts/:id/unsubscribe", AccountController, :unsubscribe)
351 end
352
353 post("/accounts/confirmation_resend", AccountController, :confirmation_resend)
354 end
355
356 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
357 pipe_through(:api)
358 get("/accounts/:id/scrobbles", ScrobbleController, :user_scrobbles)
359 end
360
361 scope "/api/v1", Pleroma.Web.MastodonAPI do
362 pipe_through(:authenticated_api)
363
364 get("/accounts/verify_credentials", AccountController, :verify_credentials)
365 patch("/accounts/update_credentials", AccountController, :update_credentials)
366
367 get("/accounts/relationships", AccountController, :relationships)
368 get("/accounts/:id/lists", AccountController, :lists)
369 get("/accounts/:id/identity_proofs", AccountController, :identity_proofs)
370 get("/endorsements", AccountController, :endorsements)
371 get("/blocks", AccountController, :blocks)
372 get("/mutes", AccountController, :mutes)
373
374 post("/follows", AccountController, :follow_by_uri)
375 post("/accounts/:id/follow", AccountController, :follow)
376 post("/accounts/:id/unfollow", AccountController, :unfollow)
377 post("/accounts/:id/block", AccountController, :block)
378 post("/accounts/:id/unblock", AccountController, :unblock)
379 post("/accounts/:id/mute", AccountController, :mute)
380 post("/accounts/:id/unmute", AccountController, :unmute)
381
382 get("/apps/verify_credentials", AppController, :verify_credentials)
383
384 get("/conversations", ConversationController, :index)
385 post("/conversations/:id/read", ConversationController, :mark_as_read)
386
387 get("/domain_blocks", DomainBlockController, :index)
388 post("/domain_blocks", DomainBlockController, :create)
389 delete("/domain_blocks", DomainBlockController, :delete)
390
391 get("/filters", FilterController, :index)
392
393 post("/filters", FilterController, :create)
394 get("/filters/:id", FilterController, :show)
395 put("/filters/:id", FilterController, :update)
396 delete("/filters/:id", FilterController, :delete)
397
398 get("/follow_requests", FollowRequestController, :index)
399 post("/follow_requests/:id/authorize", FollowRequestController, :authorize)
400 post("/follow_requests/:id/reject", FollowRequestController, :reject)
401
402 get("/lists", ListController, :index)
403 get("/lists/:id", ListController, :show)
404 get("/lists/:id/accounts", ListController, :list_accounts)
405
406 delete("/lists/:id", ListController, :delete)
407 post("/lists", ListController, :create)
408 put("/lists/:id", ListController, :update)
409 post("/lists/:id/accounts", ListController, :add_to_list)
410 delete("/lists/:id/accounts", ListController, :remove_from_list)
411
412 get("/markers", MarkerController, :index)
413 post("/markers", MarkerController, :upsert)
414
415 post("/media", MediaController, :create)
416 put("/media/:id", MediaController, :update)
417
418 get("/notifications", NotificationController, :index)
419 get("/notifications/:id", NotificationController, :show)
420
421 post("/notifications/:id/dismiss", NotificationController, :dismiss)
422 post("/notifications/clear", NotificationController, :clear)
423 delete("/notifications/destroy_multiple", NotificationController, :destroy_multiple)
424 # Deprecated: was removed in Mastodon v3, use `/notifications/:id/dismiss` instead
425 post("/notifications/dismiss", NotificationController, :dismiss_via_body)
426
427 post("/polls/:id/votes", PollController, :vote)
428
429 post("/reports", ReportController, :create)
430
431 get("/scheduled_statuses", ScheduledActivityController, :index)
432 get("/scheduled_statuses/:id", ScheduledActivityController, :show)
433
434 put("/scheduled_statuses/:id", ScheduledActivityController, :update)
435 delete("/scheduled_statuses/:id", ScheduledActivityController, :delete)
436
437 # Unlike `GET /api/v1/accounts/:id/favourites`, demands authentication
438 get("/favourites", StatusController, :favourites)
439 get("/bookmarks", StatusController, :bookmarks)
440
441 post("/statuses", StatusController, :create)
442 delete("/statuses/:id", StatusController, :delete)
443 post("/statuses/:id/reblog", StatusController, :reblog)
444 post("/statuses/:id/unreblog", StatusController, :unreblog)
445 post("/statuses/:id/favourite", StatusController, :favourite)
446 post("/statuses/:id/unfavourite", StatusController, :unfavourite)
447 post("/statuses/:id/pin", StatusController, :pin)
448 post("/statuses/:id/unpin", StatusController, :unpin)
449 post("/statuses/:id/bookmark", StatusController, :bookmark)
450 post("/statuses/:id/unbookmark", StatusController, :unbookmark)
451 post("/statuses/:id/mute", StatusController, :mute_conversation)
452 post("/statuses/:id/unmute", StatusController, :unmute_conversation)
453
454 post("/push/subscription", SubscriptionController, :create)
455 get("/push/subscription", SubscriptionController, :show)
456 put("/push/subscription", SubscriptionController, :update)
457 delete("/push/subscription", SubscriptionController, :delete)
458
459 get("/suggestions", SuggestionController, :index)
460
461 get("/timelines/home", TimelineController, :home)
462 get("/timelines/direct", TimelineController, :direct)
463 get("/timelines/list/:list_id", TimelineController, :list)
464 end
465
466 scope "/api/web", Pleroma.Web do
467 pipe_through(:authenticated_api)
468
469 put("/settings", MastoFEController, :put_settings)
470 end
471
472 scope "/api/v1", Pleroma.Web.MastodonAPI do
473 pipe_through(:api)
474
475 get("/accounts/search", SearchController, :account_search)
476 get("/search", SearchController, :search)
477
478 get("/accounts/:id/statuses", AccountController, :statuses)
479 get("/accounts/:id/followers", AccountController, :followers)
480 get("/accounts/:id/following", AccountController, :following)
481 get("/accounts/:id", AccountController, :show)
482
483 post("/accounts", AccountController, :create)
484
485 get("/instance", InstanceController, :show)
486 get("/instance/peers", InstanceController, :peers)
487
488 post("/apps", AppController, :create)
489
490 get("/statuses", StatusController, :index)
491 get("/statuses/:id", StatusController, :show)
492 get("/statuses/:id/context", StatusController, :context)
493 get("/statuses/:id/card", StatusController, :card)
494 get("/statuses/:id/favourited_by", StatusController, :favourited_by)
495 get("/statuses/:id/reblogged_by", StatusController, :reblogged_by)
496
497 get("/custom_emojis", CustomEmojiController, :index)
498
499 get("/trends", MastodonAPIController, :empty_array)
500
501 get("/timelines/public", TimelineController, :public)
502 get("/timelines/tag/:tag", TimelineController, :hashtag)
503
504 get("/polls/:id", PollController, :show)
505 end
506
507 scope "/api/v2", Pleroma.Web.MastodonAPI do
508 pipe_through(:api)
509 get("/search", SearchController, :search2)
510 end
511
512 scope "/api", Pleroma.Web do
513 pipe_through(:config)
514
515 get("/help/test", TwitterAPI.UtilController, :help_test)
516 post("/help/test", TwitterAPI.UtilController, :help_test)
517 get("/statusnet/config", TwitterAPI.UtilController, :config)
518 get("/statusnet/version", TwitterAPI.UtilController, :version)
519 get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
520 end
521
522 scope "/api", Pleroma.Web do
523 pipe_through(:api)
524
525 get(
526 "/account/confirm_email/:user_id/:token",
527 TwitterAPI.Controller,
528 :confirm_email,
529 as: :confirm_email
530 )
531 end
532
533 scope "/api" do
534 pipe_through(:base_api)
535
536 get("/openapi", OpenApiSpex.Plug.RenderSpec, [])
537 end
538
539 scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
540 pipe_through(:authenticated_api)
541
542 get("/oauth_tokens", TwitterAPI.Controller, :oauth_tokens)
543 delete("/oauth_tokens/:id", TwitterAPI.Controller, :revoke_token)
544
545 post(
546 "/qvitter/statuses/notifications/read",
547 TwitterAPI.Controller,
548 :mark_notifications_as_read
549 )
550 end
551
552 pipeline :ostatus do
553 plug(:accepts, ["html", "xml", "rss", "atom", "activity+json", "json"])
554 plug(Pleroma.Plugs.StaticFEPlug)
555 end
556
557 pipeline :oembed do
558 plug(:accepts, ["json", "xml"])
559 end
560
561 scope "/", Pleroma.Web do
562 pipe_through([:ostatus, :http_signature])
563
564 get("/objects/:uuid", OStatus.OStatusController, :object)
565 get("/activities/:uuid", OStatus.OStatusController, :activity)
566 get("/notice/:id", OStatus.OStatusController, :notice)
567 get("/notice/:id/embed_player", OStatus.OStatusController, :notice_player)
568
569 get("/users/:nickname/feed", Feed.UserController, :feed, as: :user_feed)
570 get("/users/:nickname", Feed.UserController, :feed_redirect, as: :user_feed)
571
572 get("/tags/:tag", Feed.TagController, :feed, as: :tag_feed)
573 end
574
575 scope "/", Pleroma.Web do
576 pipe_through(:browser)
577 get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
578 end
579
580 scope "/", Pleroma.Web.ActivityPub do
581 # XXX: not really ostatus
582 pipe_through(:ostatus)
583
584 get("/users/:nickname/outbox", ActivityPubController, :outbox)
585 end
586
587 pipeline :ap_service_actor do
588 plug(:accepts, ["activity+json", "json"])
589 end
590
591 # Server to Server (S2S) AP interactions
592 pipeline :activitypub do
593 plug(:ap_service_actor)
594 plug(:http_signature)
595 end
596
597 # Client to Server (C2S) AP interactions
598 pipeline :activitypub_client do
599 plug(:ap_service_actor)
600 plug(:fetch_session)
601 plug(:authenticate)
602 plug(:after_auth)
603 end
604
605 scope "/", Pleroma.Web.ActivityPub do
606 pipe_through([:activitypub_client])
607
608 get("/api/ap/whoami", ActivityPubController, :whoami)
609 get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
610
611 post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
612 post("/api/ap/upload_media", ActivityPubController, :upload_media)
613
614 # The following two are S2S as well, see `ActivityPub.fetch_follow_information_for_user/1`:
615 get("/users/:nickname/followers", ActivityPubController, :followers)
616 get("/users/:nickname/following", ActivityPubController, :following)
617 end
618
619 scope "/", Pleroma.Web.ActivityPub do
620 pipe_through(:activitypub)
621 post("/inbox", ActivityPubController, :inbox)
622 post("/users/:nickname/inbox", ActivityPubController, :inbox)
623 end
624
625 scope "/relay", Pleroma.Web.ActivityPub do
626 pipe_through(:ap_service_actor)
627
628 get("/", ActivityPubController, :relay)
629
630 scope [] do
631 pipe_through(:http_signature)
632 post("/inbox", ActivityPubController, :inbox)
633 end
634
635 get("/following", ActivityPubController, :relay_following)
636 get("/followers", ActivityPubController, :relay_followers)
637 end
638
639 scope "/internal/fetch", Pleroma.Web.ActivityPub do
640 pipe_through(:ap_service_actor)
641
642 get("/", ActivityPubController, :internal_fetch)
643 post("/inbox", ActivityPubController, :inbox)
644 end
645
646 scope "/.well-known", Pleroma.Web do
647 pipe_through(:well_known)
648
649 get("/host-meta", WebFinger.WebFingerController, :host_meta)
650 get("/webfinger", WebFinger.WebFingerController, :webfinger)
651 get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
652 end
653
654 scope "/nodeinfo", Pleroma.Web do
655 get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
656 end
657
658 scope "/", Pleroma.Web do
659 pipe_through(:api)
660
661 get("/web/manifest.json", MastoFEController, :manifest)
662 end
663
664 scope "/", Pleroma.Web do
665 pipe_through(:mastodon_html)
666
667 get("/web/login", MastodonAPI.AuthController, :login)
668 delete("/auth/sign_out", MastodonAPI.AuthController, :logout)
669
670 post("/auth/password", MastodonAPI.AuthController, :password_reset)
671
672 get("/web/*path", MastoFEController, :index)
673 end
674
675 scope "/proxy/", Pleroma.Web.MediaProxy do
676 get("/:sig/:url", MediaProxyController, :remote)
677 get("/:sig/:url/:filename", MediaProxyController, :remote)
678 end
679
680 if Pleroma.Config.get(:env) == :dev do
681 scope "/dev" do
682 pipe_through([:mailbox_preview])
683
684 forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
685 end
686 end
687
688 # Test-only routes needed to test action dispatching and plug chain execution
689 if Pleroma.Config.get(:env) == :test do
690 @test_actions [
691 :do_oauth_check,
692 :fallback_oauth_check,
693 :skip_oauth_check,
694 :fallback_oauth_skip_publicity_check,
695 :skip_oauth_skip_publicity_check,
696 :missing_oauth_check_definition
697 ]
698
699 scope "/test/api", Pleroma.Tests do
700 pipe_through(:api)
701
702 for action <- @test_actions do
703 get("/#{action}", AuthTestController, action)
704 end
705 end
706
707 scope "/test/authenticated_api", Pleroma.Tests do
708 pipe_through(:authenticated_api)
709
710 for action <- @test_actions do
711 get("/#{action}", AuthTestController, action)
712 end
713 end
714 end
715
716 scope "/", Pleroma.Web.MongooseIM do
717 get("/user_exists", MongooseIMController, :user_exists)
718 get("/check_password", MongooseIMController, :check_password)
719 end
720
721 scope "/", Fallback do
722 get("/registration/:token", RedirectController, :registration_page)
723 get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
724 get("/api*path", RedirectController, :api_not_implemented)
725 get("/*path", RedirectController, :redirector)
726
727 options("/*path", RedirectController, :empty)
728 end
729 end