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