3b1834d97ff2e1c0c0390a841faf805b67e93b46
[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", ChatController, :show)
311 get("/chats/:id/messages", ChatController, :messages)
312 post("/chats/:id/messages", ChatController, :post_chat_message)
313 post("/chats/:id/read", ChatController, :mark_as_read)
314 end
315
316 scope [] do
317 pipe_through(:authenticated_api)
318
319 get("/conversations/:id/statuses", PleromaAPIController, :conversation_statuses)
320 get("/conversations/:id", PleromaAPIController, :conversation)
321 post("/conversations/read", PleromaAPIController, :mark_conversations_as_read)
322 end
323
324 scope [] do
325 pipe_through(:authenticated_api)
326
327 patch("/conversations/:id", PleromaAPIController, :update_conversation)
328 put("/statuses/:id/reactions/:emoji", PleromaAPIController, :react_with_emoji)
329 delete("/statuses/:id/reactions/:emoji", PleromaAPIController, :unreact_with_emoji)
330 post("/notifications/read", PleromaAPIController, :mark_notifications_as_read)
331
332 patch("/accounts/update_avatar", AccountController, :update_avatar)
333 patch("/accounts/update_banner", AccountController, :update_banner)
334 patch("/accounts/update_background", AccountController, :update_background)
335
336 get("/mascot", MascotController, :show)
337 put("/mascot", MascotController, :update)
338
339 post("/scrobble", ScrobbleController, :new_scrobble)
340 end
341
342 scope [] do
343 pipe_through(:api)
344 get("/accounts/:id/favourites", AccountController, :favourites)
345 end
346
347 scope [] do
348 pipe_through(:authenticated_api)
349
350 post("/accounts/:id/subscribe", AccountController, :subscribe)
351 post("/accounts/:id/unsubscribe", AccountController, :unsubscribe)
352 end
353
354 post("/accounts/confirmation_resend", AccountController, :confirmation_resend)
355 end
356
357 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
358 pipe_through(:api)
359 get("/accounts/:id/scrobbles", ScrobbleController, :user_scrobbles)
360 end
361
362 scope "/api/v1", Pleroma.Web.MastodonAPI do
363 pipe_through(:authenticated_api)
364
365 get("/accounts/verify_credentials", AccountController, :verify_credentials)
366 patch("/accounts/update_credentials", AccountController, :update_credentials)
367
368 get("/accounts/relationships", AccountController, :relationships)
369 get("/accounts/:id/lists", AccountController, :lists)
370 get("/accounts/:id/identity_proofs", AccountController, :identity_proofs)
371 get("/endorsements", AccountController, :endorsements)
372 get("/blocks", AccountController, :blocks)
373 get("/mutes", AccountController, :mutes)
374
375 post("/follows", AccountController, :follow_by_uri)
376 post("/accounts/:id/follow", AccountController, :follow)
377 post("/accounts/:id/unfollow", AccountController, :unfollow)
378 post("/accounts/:id/block", AccountController, :block)
379 post("/accounts/:id/unblock", AccountController, :unblock)
380 post("/accounts/:id/mute", AccountController, :mute)
381 post("/accounts/:id/unmute", AccountController, :unmute)
382
383 get("/apps/verify_credentials", AppController, :verify_credentials)
384
385 get("/conversations", ConversationController, :index)
386 post("/conversations/:id/read", ConversationController, :mark_as_read)
387
388 get("/domain_blocks", DomainBlockController, :index)
389 post("/domain_blocks", DomainBlockController, :create)
390 delete("/domain_blocks", DomainBlockController, :delete)
391
392 get("/filters", FilterController, :index)
393
394 post("/filters", FilterController, :create)
395 get("/filters/:id", FilterController, :show)
396 put("/filters/:id", FilterController, :update)
397 delete("/filters/:id", FilterController, :delete)
398
399 get("/follow_requests", FollowRequestController, :index)
400 post("/follow_requests/:id/authorize", FollowRequestController, :authorize)
401 post("/follow_requests/:id/reject", FollowRequestController, :reject)
402
403 get("/lists", ListController, :index)
404 get("/lists/:id", ListController, :show)
405 get("/lists/:id/accounts", ListController, :list_accounts)
406
407 delete("/lists/:id", ListController, :delete)
408 post("/lists", ListController, :create)
409 put("/lists/:id", ListController, :update)
410 post("/lists/:id/accounts", ListController, :add_to_list)
411 delete("/lists/:id/accounts", ListController, :remove_from_list)
412
413 get("/markers", MarkerController, :index)
414 post("/markers", MarkerController, :upsert)
415
416 post("/media", MediaController, :create)
417 put("/media/:id", MediaController, :update)
418
419 get("/notifications", NotificationController, :index)
420 get("/notifications/:id", NotificationController, :show)
421
422 post("/notifications/:id/dismiss", NotificationController, :dismiss)
423 post("/notifications/clear", NotificationController, :clear)
424 delete("/notifications/destroy_multiple", NotificationController, :destroy_multiple)
425 # Deprecated: was removed in Mastodon v3, use `/notifications/:id/dismiss` instead
426 post("/notifications/dismiss", NotificationController, :dismiss_via_body)
427
428 post("/polls/:id/votes", PollController, :vote)
429
430 post("/reports", ReportController, :create)
431
432 get("/scheduled_statuses", ScheduledActivityController, :index)
433 get("/scheduled_statuses/:id", ScheduledActivityController, :show)
434
435 put("/scheduled_statuses/:id", ScheduledActivityController, :update)
436 delete("/scheduled_statuses/:id", ScheduledActivityController, :delete)
437
438 # Unlike `GET /api/v1/accounts/:id/favourites`, demands authentication
439 get("/favourites", StatusController, :favourites)
440 get("/bookmarks", StatusController, :bookmarks)
441
442 post("/statuses", StatusController, :create)
443 delete("/statuses/:id", StatusController, :delete)
444 post("/statuses/:id/reblog", StatusController, :reblog)
445 post("/statuses/:id/unreblog", StatusController, :unreblog)
446 post("/statuses/:id/favourite", StatusController, :favourite)
447 post("/statuses/:id/unfavourite", StatusController, :unfavourite)
448 post("/statuses/:id/pin", StatusController, :pin)
449 post("/statuses/:id/unpin", StatusController, :unpin)
450 post("/statuses/:id/bookmark", StatusController, :bookmark)
451 post("/statuses/:id/unbookmark", StatusController, :unbookmark)
452 post("/statuses/:id/mute", StatusController, :mute_conversation)
453 post("/statuses/:id/unmute", StatusController, :unmute_conversation)
454
455 post("/push/subscription", SubscriptionController, :create)
456 get("/push/subscription", SubscriptionController, :show)
457 put("/push/subscription", SubscriptionController, :update)
458 delete("/push/subscription", SubscriptionController, :delete)
459
460 get("/suggestions", SuggestionController, :index)
461
462 get("/timelines/home", TimelineController, :home)
463 get("/timelines/direct", TimelineController, :direct)
464 get("/timelines/list/:list_id", TimelineController, :list)
465 end
466
467 scope "/api/web", Pleroma.Web do
468 pipe_through(:authenticated_api)
469
470 put("/settings", MastoFEController, :put_settings)
471 end
472
473 scope "/api/v1", Pleroma.Web.MastodonAPI do
474 pipe_through(:api)
475
476 get("/accounts/search", SearchController, :account_search)
477 get("/search", SearchController, :search)
478
479 get("/accounts/:id/statuses", AccountController, :statuses)
480 get("/accounts/:id/followers", AccountController, :followers)
481 get("/accounts/:id/following", AccountController, :following)
482 get("/accounts/:id", AccountController, :show)
483
484 post("/accounts", AccountController, :create)
485
486 get("/instance", InstanceController, :show)
487 get("/instance/peers", InstanceController, :peers)
488
489 post("/apps", AppController, :create)
490
491 get("/statuses", StatusController, :index)
492 get("/statuses/:id", StatusController, :show)
493 get("/statuses/:id/context", StatusController, :context)
494 get("/statuses/:id/card", StatusController, :card)
495 get("/statuses/:id/favourited_by", StatusController, :favourited_by)
496 get("/statuses/:id/reblogged_by", StatusController, :reblogged_by)
497
498 get("/custom_emojis", CustomEmojiController, :index)
499
500 get("/trends", MastodonAPIController, :empty_array)
501
502 get("/timelines/public", TimelineController, :public)
503 get("/timelines/tag/:tag", TimelineController, :hashtag)
504
505 get("/polls/:id", PollController, :show)
506 end
507
508 scope "/api/v2", Pleroma.Web.MastodonAPI do
509 pipe_through(:api)
510 get("/search", SearchController, :search2)
511 end
512
513 scope "/api", Pleroma.Web do
514 pipe_through(:config)
515
516 get("/help/test", TwitterAPI.UtilController, :help_test)
517 post("/help/test", TwitterAPI.UtilController, :help_test)
518 get("/statusnet/config", TwitterAPI.UtilController, :config)
519 get("/statusnet/version", TwitterAPI.UtilController, :version)
520 get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
521 end
522
523 scope "/api", Pleroma.Web do
524 pipe_through(:api)
525
526 get(
527 "/account/confirm_email/:user_id/:token",
528 TwitterAPI.Controller,
529 :confirm_email,
530 as: :confirm_email
531 )
532 end
533
534 scope "/api" do
535 pipe_through(:base_api)
536
537 get("/openapi", OpenApiSpex.Plug.RenderSpec, [])
538 end
539
540 scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
541 pipe_through(:authenticated_api)
542
543 get("/oauth_tokens", TwitterAPI.Controller, :oauth_tokens)
544 delete("/oauth_tokens/:id", TwitterAPI.Controller, :revoke_token)
545
546 post(
547 "/qvitter/statuses/notifications/read",
548 TwitterAPI.Controller,
549 :mark_notifications_as_read
550 )
551 end
552
553 pipeline :ostatus do
554 plug(:accepts, ["html", "xml", "rss", "atom", "activity+json", "json"])
555 plug(Pleroma.Plugs.StaticFEPlug)
556 end
557
558 pipeline :oembed do
559 plug(:accepts, ["json", "xml"])
560 end
561
562 scope "/", Pleroma.Web do
563 pipe_through([:ostatus, :http_signature])
564
565 get("/objects/:uuid", OStatus.OStatusController, :object)
566 get("/activities/:uuid", OStatus.OStatusController, :activity)
567 get("/notice/:id", OStatus.OStatusController, :notice)
568 get("/notice/:id/embed_player", OStatus.OStatusController, :notice_player)
569
570 get("/users/:nickname/feed", Feed.UserController, :feed, as: :user_feed)
571 get("/users/:nickname", Feed.UserController, :feed_redirect, as: :user_feed)
572
573 get("/tags/:tag", Feed.TagController, :feed, as: :tag_feed)
574 end
575
576 scope "/", Pleroma.Web do
577 pipe_through(:browser)
578 get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
579 end
580
581 scope "/", Pleroma.Web.ActivityPub do
582 # XXX: not really ostatus
583 pipe_through(:ostatus)
584
585 get("/users/:nickname/outbox", ActivityPubController, :outbox)
586 end
587
588 pipeline :ap_service_actor do
589 plug(:accepts, ["activity+json", "json"])
590 end
591
592 # Server to Server (S2S) AP interactions
593 pipeline :activitypub do
594 plug(:ap_service_actor)
595 plug(:http_signature)
596 end
597
598 # Client to Server (C2S) AP interactions
599 pipeline :activitypub_client do
600 plug(:ap_service_actor)
601 plug(:fetch_session)
602 plug(:authenticate)
603 plug(:after_auth)
604 end
605
606 scope "/", Pleroma.Web.ActivityPub do
607 pipe_through([:activitypub_client])
608
609 get("/api/ap/whoami", ActivityPubController, :whoami)
610 get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
611
612 post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
613 post("/api/ap/upload_media", ActivityPubController, :upload_media)
614
615 # The following two are S2S as well, see `ActivityPub.fetch_follow_information_for_user/1`:
616 get("/users/:nickname/followers", ActivityPubController, :followers)
617 get("/users/:nickname/following", ActivityPubController, :following)
618 end
619
620 scope "/", Pleroma.Web.ActivityPub do
621 pipe_through(:activitypub)
622 post("/inbox", ActivityPubController, :inbox)
623 post("/users/:nickname/inbox", ActivityPubController, :inbox)
624 end
625
626 scope "/relay", Pleroma.Web.ActivityPub do
627 pipe_through(:ap_service_actor)
628
629 get("/", ActivityPubController, :relay)
630
631 scope [] do
632 pipe_through(:http_signature)
633 post("/inbox", ActivityPubController, :inbox)
634 end
635
636 get("/following", ActivityPubController, :relay_following)
637 get("/followers", ActivityPubController, :relay_followers)
638 end
639
640 scope "/internal/fetch", Pleroma.Web.ActivityPub do
641 pipe_through(:ap_service_actor)
642
643 get("/", ActivityPubController, :internal_fetch)
644 post("/inbox", ActivityPubController, :inbox)
645 end
646
647 scope "/.well-known", Pleroma.Web do
648 pipe_through(:well_known)
649
650 get("/host-meta", WebFinger.WebFingerController, :host_meta)
651 get("/webfinger", WebFinger.WebFingerController, :webfinger)
652 get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
653 end
654
655 scope "/nodeinfo", Pleroma.Web do
656 get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
657 end
658
659 scope "/", Pleroma.Web do
660 pipe_through(:api)
661
662 get("/web/manifest.json", MastoFEController, :manifest)
663 end
664
665 scope "/", Pleroma.Web do
666 pipe_through(:mastodon_html)
667
668 get("/web/login", MastodonAPI.AuthController, :login)
669 delete("/auth/sign_out", MastodonAPI.AuthController, :logout)
670
671 post("/auth/password", MastodonAPI.AuthController, :password_reset)
672
673 get("/web/*path", MastoFEController, :index)
674 end
675
676 scope "/proxy/", Pleroma.Web.MediaProxy do
677 get("/:sig/:url", MediaProxyController, :remote)
678 get("/:sig/:url/:filename", MediaProxyController, :remote)
679 end
680
681 if Pleroma.Config.get(:env) == :dev do
682 scope "/dev" do
683 pipe_through([:mailbox_preview])
684
685 forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
686 end
687 end
688
689 # Test-only routes needed to test action dispatching and plug chain execution
690 if Pleroma.Config.get(:env) == :test do
691 @test_actions [
692 :do_oauth_check,
693 :fallback_oauth_check,
694 :skip_oauth_check,
695 :fallback_oauth_skip_publicity_check,
696 :skip_oauth_skip_publicity_check,
697 :missing_oauth_check_definition
698 ]
699
700 scope "/test/api", Pleroma.Tests do
701 pipe_through(:api)
702
703 for action <- @test_actions do
704 get("/#{action}", AuthTestController, action)
705 end
706 end
707
708 scope "/test/authenticated_api", Pleroma.Tests do
709 pipe_through(:authenticated_api)
710
711 for action <- @test_actions do
712 get("/#{action}", AuthTestController, action)
713 end
714 end
715 end
716
717 scope "/", Pleroma.Web.MongooseIM do
718 get("/user_exists", MongooseIMController, :user_exists)
719 get("/check_password", MongooseIMController, :check_password)
720 end
721
722 scope "/", Fallback do
723 get("/registration/:token", RedirectController, :registration_page)
724 get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
725 get("/api*path", RedirectController, :api_not_implemented)
726 get("/*path", RedirectController, :redirector)
727
728 options("/*path", RedirectController, :empty)
729 end
730 end