Emoji: Generate emoji detecting functions at compile time.
[akkoma] / lib / pleroma / web / router.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 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 end
17
18 pipeline :api do
19 plug(:accepts, ["json"])
20 plug(:fetch_session)
21 plug(Pleroma.Plugs.OAuthPlug)
22 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
23 plug(Pleroma.Plugs.UserFetcherPlug)
24 plug(Pleroma.Plugs.SessionAuthenticationPlug)
25 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
26 plug(Pleroma.Plugs.AuthenticationPlug)
27 plug(Pleroma.Plugs.UserEnabledPlug)
28 plug(Pleroma.Plugs.SetUserSessionIdPlug)
29 plug(Pleroma.Plugs.EnsureUserKeyPlug)
30 plug(Pleroma.Plugs.IdempotencyPlug)
31 end
32
33 pipeline :authenticated_api do
34 plug(:accepts, ["json"])
35 plug(:fetch_session)
36 plug(Pleroma.Plugs.OAuthPlug)
37 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
38 plug(Pleroma.Plugs.UserFetcherPlug)
39 plug(Pleroma.Plugs.SessionAuthenticationPlug)
40 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
41 plug(Pleroma.Plugs.AuthenticationPlug)
42 plug(Pleroma.Plugs.UserEnabledPlug)
43 plug(Pleroma.Plugs.SetUserSessionIdPlug)
44 plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
45 plug(Pleroma.Plugs.IdempotencyPlug)
46 end
47
48 pipeline :admin_api do
49 plug(:accepts, ["json"])
50 plug(:fetch_session)
51 plug(Pleroma.Plugs.OAuthPlug)
52 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
53 plug(Pleroma.Plugs.UserFetcherPlug)
54 plug(Pleroma.Plugs.SessionAuthenticationPlug)
55 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
56 plug(Pleroma.Plugs.AuthenticationPlug)
57 plug(Pleroma.Plugs.AdminSecretAuthenticationPlug)
58 plug(Pleroma.Plugs.UserEnabledPlug)
59 plug(Pleroma.Plugs.SetUserSessionIdPlug)
60 plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
61 plug(Pleroma.Plugs.UserIsAdminPlug)
62 plug(Pleroma.Plugs.IdempotencyPlug)
63 end
64
65 pipeline :mastodon_html do
66 plug(:accepts, ["html"])
67 plug(:fetch_session)
68 plug(Pleroma.Plugs.OAuthPlug)
69 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
70 plug(Pleroma.Plugs.UserFetcherPlug)
71 plug(Pleroma.Plugs.SessionAuthenticationPlug)
72 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
73 plug(Pleroma.Plugs.AuthenticationPlug)
74 plug(Pleroma.Plugs.UserEnabledPlug)
75 plug(Pleroma.Plugs.SetUserSessionIdPlug)
76 plug(Pleroma.Plugs.EnsureUserKeyPlug)
77 end
78
79 pipeline :pleroma_html do
80 plug(:accepts, ["html"])
81 plug(:fetch_session)
82 plug(Pleroma.Plugs.OAuthPlug)
83 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
84 plug(Pleroma.Plugs.UserFetcherPlug)
85 plug(Pleroma.Plugs.SessionAuthenticationPlug)
86 plug(Pleroma.Plugs.AuthenticationPlug)
87 plug(Pleroma.Plugs.EnsureUserKeyPlug)
88 end
89
90 pipeline :oauth_read_or_public do
91 plug(Pleroma.Plugs.OAuthScopesPlug, %{
92 scopes: ["read"],
93 fallback: :proceed_unauthenticated
94 })
95
96 plug(Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug)
97 end
98
99 pipeline :oauth_read do
100 plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["read"]})
101 end
102
103 pipeline :oauth_write do
104 plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["write"]})
105 end
106
107 pipeline :oauth_follow do
108 plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["follow"]})
109 end
110
111 pipeline :oauth_push do
112 plug(Pleroma.Plugs.OAuthScopesPlug, %{scopes: ["push"]})
113 end
114
115 pipeline :well_known do
116 plug(:accepts, ["json", "jrd+json", "xml", "xrd+xml"])
117 end
118
119 pipeline :config do
120 plug(:accepts, ["json", "xml"])
121 end
122
123 pipeline :pleroma_api do
124 plug(:accepts, ["html", "json"])
125 end
126
127 pipeline :mailbox_preview do
128 plug(:accepts, ["html"])
129
130 plug(:put_secure_browser_headers, %{
131 "content-security-policy" =>
132 "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' 'unsafe-eval'"
133 })
134 end
135
136 pipeline :http_signature do
137 plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
138 end
139
140 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
141 pipe_through(:pleroma_api)
142
143 get("/password_reset/:token", PasswordController, :reset, as: :reset_password)
144 post("/password_reset", PasswordController, :do_reset, as: :reset_password)
145 get("/emoji", UtilController, :emoji)
146 get("/captcha", UtilController, :captcha)
147 get("/healthcheck", UtilController, :healthcheck)
148 end
149
150 scope "/api/pleroma", Pleroma.Web do
151 pipe_through(:pleroma_api)
152 post("/uploader_callback/:upload_path", UploaderController, :callback)
153 end
154
155 scope "/api/pleroma/admin", Pleroma.Web.AdminAPI do
156 pipe_through([:admin_api, :oauth_write])
157
158 post("/users/follow", AdminAPIController, :user_follow)
159 post("/users/unfollow", AdminAPIController, :user_unfollow)
160
161 delete("/users", AdminAPIController, :user_delete)
162 post("/users", AdminAPIController, :users_create)
163 patch("/users/:nickname/toggle_activation", AdminAPIController, :user_toggle_activation)
164 put("/users/tag", AdminAPIController, :tag_users)
165 delete("/users/tag", AdminAPIController, :untag_users)
166
167 get("/users/:nickname/permission_group", AdminAPIController, :right_get)
168 get("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_get)
169 post("/users/:nickname/permission_group/:permission_group", AdminAPIController, :right_add)
170
171 delete(
172 "/users/:nickname/permission_group/:permission_group",
173 AdminAPIController,
174 :right_delete
175 )
176
177 put("/users/:nickname/activation_status", AdminAPIController, :set_activation_status)
178
179 post("/relay", AdminAPIController, :relay_follow)
180 delete("/relay", AdminAPIController, :relay_unfollow)
181
182 get("/users/invite_token", AdminAPIController, :get_invite_token)
183 get("/users/invites", AdminAPIController, :invites)
184 post("/users/revoke_invite", AdminAPIController, :revoke_invite)
185 post("/users/email_invite", AdminAPIController, :email_invite)
186
187 get("/users/:nickname/password_reset", AdminAPIController, :get_password_reset)
188
189 get("/users", AdminAPIController, :list_users)
190 get("/users/:nickname", AdminAPIController, :user_show)
191 get("/users/:nickname/statuses", AdminAPIController, :list_user_statuses)
192
193 get("/reports", AdminAPIController, :list_reports)
194 get("/reports/:id", AdminAPIController, :report_show)
195 put("/reports/:id", AdminAPIController, :report_update_state)
196 post("/reports/:id/respond", AdminAPIController, :report_respond)
197
198 put("/statuses/:id", AdminAPIController, :status_update)
199 delete("/statuses/:id", AdminAPIController, :status_delete)
200
201 get("/config", AdminAPIController, :config_show)
202 post("/config", AdminAPIController, :config_update)
203 get("/config/migrate_to_db", AdminAPIController, :migrate_to_db)
204 get("/config/migrate_from_db", AdminAPIController, :migrate_from_db)
205
206 get("/moderation_log", AdminAPIController, :list_log)
207 end
208
209 scope "/", Pleroma.Web.TwitterAPI do
210 pipe_through(:pleroma_html)
211
212 post("/main/ostatus", UtilController, :remote_subscribe)
213 get("/ostatus_subscribe", UtilController, :remote_follow)
214
215 scope [] do
216 pipe_through(:oauth_follow)
217 post("/ostatus_subscribe", UtilController, :do_remote_follow)
218 end
219 end
220
221 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
222 pipe_through(:authenticated_api)
223
224 scope [] do
225 pipe_through(:oauth_write)
226
227 post("/change_email", UtilController, :change_email)
228 post("/change_password", UtilController, :change_password)
229 post("/delete_account", UtilController, :delete_account)
230 put("/notification_settings", UtilController, :update_notificaton_settings)
231 post("/disable_account", UtilController, :disable_account)
232 end
233
234 scope [] do
235 pipe_through(:oauth_follow)
236
237 post("/blocks_import", UtilController, :blocks_import)
238 post("/follow_import", UtilController, :follow_import)
239 end
240 end
241
242 scope "/oauth", Pleroma.Web.OAuth do
243 scope [] do
244 pipe_through(:oauth)
245 get("/authorize", OAuthController, :authorize)
246 end
247
248 post("/authorize", OAuthController, :create_authorization)
249 post("/token", OAuthController, :token_exchange)
250 post("/revoke", OAuthController, :token_revoke)
251 get("/registration_details", OAuthController, :registration_details)
252
253 scope [] do
254 pipe_through(:browser)
255
256 get("/prepare_request", OAuthController, :prepare_request)
257 get("/:provider", OAuthController, :request)
258 get("/:provider/callback", OAuthController, :callback)
259 post("/register", OAuthController, :register)
260 end
261 end
262
263 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
264 pipe_through(:api)
265
266 get("/statuses/:id/emoji_reactions_by", PleromaAPIController, :emoji_reactions_by)
267 end
268
269 scope "/api/v1/pleroma", Pleroma.Web.PleromaAPI do
270 pipe_through(:authenticated_api)
271
272 scope [] do
273 pipe_through(:oauth_read)
274 get("/conversations/:id/statuses", PleromaAPIController, :conversation_statuses)
275 get("/conversations/:id", PleromaAPIController, :conversation)
276 end
277
278 scope [] do
279 pipe_through(:oauth_write)
280 patch("/conversations/:id", PleromaAPIController, :update_conversation)
281 post("/statuses/:id/react_with_emoji", PleromaAPIController, :react_with_emoji)
282 post("/notifications/read", PleromaAPIController, :read_notification)
283 end
284 end
285
286 scope "/api/v1", Pleroma.Web.MastodonAPI do
287 pipe_through(:authenticated_api)
288
289 scope [] do
290 pipe_through(:oauth_read)
291
292 get("/accounts/verify_credentials", MastodonAPIController, :verify_credentials)
293
294 get("/accounts/relationships", MastodonAPIController, :relationships)
295
296 get("/accounts/:id/lists", MastodonAPIController, :account_lists)
297 get("/accounts/:id/identity_proofs", MastodonAPIController, :empty_array)
298
299 get("/follow_requests", MastodonAPIController, :follow_requests)
300 get("/blocks", MastodonAPIController, :blocks)
301 get("/mutes", MastodonAPIController, :mutes)
302
303 get("/timelines/home", MastodonAPIController, :home_timeline)
304 get("/timelines/direct", MastodonAPIController, :dm_timeline)
305
306 get("/favourites", MastodonAPIController, :favourites)
307 get("/bookmarks", MastodonAPIController, :bookmarks)
308
309 post("/notifications/clear", MastodonAPIController, :clear_notifications)
310 post("/notifications/dismiss", MastodonAPIController, :dismiss_notification)
311 get("/notifications", MastodonAPIController, :notifications)
312 get("/notifications/:id", MastodonAPIController, :get_notification)
313 delete("/notifications/destroy_multiple", MastodonAPIController, :destroy_multiple)
314
315 get("/scheduled_statuses", MastodonAPIController, :scheduled_statuses)
316 get("/scheduled_statuses/:id", MastodonAPIController, :show_scheduled_status)
317
318 get("/lists", ListController, :index)
319 get("/lists/:id", ListController, :show)
320 get("/lists/:id/accounts", ListController, :list_accounts)
321
322 get("/domain_blocks", MastodonAPIController, :domain_blocks)
323
324 get("/filters", MastodonAPIController, :get_filters)
325
326 get("/suggestions", MastodonAPIController, :suggestions)
327
328 get("/conversations", MastodonAPIController, :conversations)
329 post("/conversations/:id/read", MastodonAPIController, :conversation_read)
330
331 get("/endorsements", MastodonAPIController, :empty_array)
332 end
333
334 scope [] do
335 pipe_through(:oauth_write)
336
337 patch("/accounts/update_credentials", MastodonAPIController, :update_credentials)
338
339 post("/statuses", MastodonAPIController, :post_status)
340 delete("/statuses/:id", MastodonAPIController, :delete_status)
341
342 post("/statuses/:id/reblog", MastodonAPIController, :reblog_status)
343 post("/statuses/:id/unreblog", MastodonAPIController, :unreblog_status)
344 post("/statuses/:id/favourite", MastodonAPIController, :fav_status)
345 post("/statuses/:id/unfavourite", MastodonAPIController, :unfav_status)
346 post("/statuses/:id/pin", MastodonAPIController, :pin_status)
347 post("/statuses/:id/unpin", MastodonAPIController, :unpin_status)
348 post("/statuses/:id/bookmark", MastodonAPIController, :bookmark_status)
349 post("/statuses/:id/unbookmark", MastodonAPIController, :unbookmark_status)
350 post("/statuses/:id/mute", MastodonAPIController, :mute_conversation)
351 post("/statuses/:id/unmute", MastodonAPIController, :unmute_conversation)
352
353 put("/scheduled_statuses/:id", MastodonAPIController, :update_scheduled_status)
354 delete("/scheduled_statuses/:id", MastodonAPIController, :delete_scheduled_status)
355
356 post("/polls/:id/votes", MastodonAPIController, :poll_vote)
357
358 post("/media", MastodonAPIController, :upload)
359 put("/media/:id", MastodonAPIController, :update_media)
360
361 delete("/lists/:id", ListController, :delete)
362 post("/lists", ListController, :create)
363 put("/lists/:id", ListController, :update)
364
365 post("/lists/:id/accounts", ListController, :add_to_list)
366 delete("/lists/:id/accounts", ListController, :remove_from_list)
367
368 post("/filters", MastodonAPIController, :create_filter)
369 get("/filters/:id", MastodonAPIController, :get_filter)
370 put("/filters/:id", MastodonAPIController, :update_filter)
371 delete("/filters/:id", MastodonAPIController, :delete_filter)
372
373 patch("/pleroma/accounts/update_avatar", MastodonAPIController, :update_avatar)
374 patch("/pleroma/accounts/update_banner", MastodonAPIController, :update_banner)
375 patch("/pleroma/accounts/update_background", MastodonAPIController, :update_background)
376
377 get("/pleroma/mascot", MastodonAPIController, :get_mascot)
378 put("/pleroma/mascot", MastodonAPIController, :set_mascot)
379
380 post("/reports", MastodonAPIController, :reports)
381 end
382
383 scope [] do
384 pipe_through(:oauth_follow)
385
386 post("/follows", MastodonAPIController, :follow)
387 post("/accounts/:id/follow", MastodonAPIController, :follow)
388
389 post("/accounts/:id/unfollow", MastodonAPIController, :unfollow)
390 post("/accounts/:id/block", MastodonAPIController, :block)
391 post("/accounts/:id/unblock", MastodonAPIController, :unblock)
392 post("/accounts/:id/mute", MastodonAPIController, :mute)
393 post("/accounts/:id/unmute", MastodonAPIController, :unmute)
394
395 post("/follow_requests/:id/authorize", MastodonAPIController, :authorize_follow_request)
396 post("/follow_requests/:id/reject", MastodonAPIController, :reject_follow_request)
397
398 post("/domain_blocks", MastodonAPIController, :block_domain)
399 delete("/domain_blocks", MastodonAPIController, :unblock_domain)
400
401 post("/pleroma/accounts/:id/subscribe", MastodonAPIController, :subscribe)
402 post("/pleroma/accounts/:id/unsubscribe", MastodonAPIController, :unsubscribe)
403 end
404
405 scope [] do
406 pipe_through(:oauth_push)
407
408 post("/push/subscription", SubscriptionController, :create)
409 get("/push/subscription", SubscriptionController, :get)
410 put("/push/subscription", SubscriptionController, :update)
411 delete("/push/subscription", SubscriptionController, :delete)
412 end
413 end
414
415 scope "/api/web", Pleroma.Web.MastodonAPI do
416 pipe_through([:authenticated_api, :oauth_write])
417
418 put("/settings", MastodonAPIController, :put_settings)
419 end
420
421 scope "/api/v1", Pleroma.Web.MastodonAPI do
422 pipe_through(:api)
423
424 post("/accounts", MastodonAPIController, :account_register)
425
426 get("/instance", MastodonAPIController, :masto_instance)
427 get("/instance/peers", MastodonAPIController, :peers)
428 post("/apps", MastodonAPIController, :create_app)
429 get("/apps/verify_credentials", MastodonAPIController, :verify_app_credentials)
430 get("/custom_emojis", MastodonAPIController, :custom_emojis)
431
432 get("/statuses/:id/card", MastodonAPIController, :status_card)
433
434 get("/statuses/:id/favourited_by", MastodonAPIController, :favourited_by)
435 get("/statuses/:id/reblogged_by", MastodonAPIController, :reblogged_by)
436
437 get("/trends", MastodonAPIController, :empty_array)
438
439 get("/accounts/search", SearchController, :account_search)
440
441 post(
442 "/pleroma/accounts/confirmation_resend",
443 MastodonAPIController,
444 :account_confirmation_resend
445 )
446
447 scope [] do
448 pipe_through(:oauth_read_or_public)
449
450 get("/timelines/public", MastodonAPIController, :public_timeline)
451 get("/timelines/tag/:tag", MastodonAPIController, :hashtag_timeline)
452 get("/timelines/list/:list_id", MastodonAPIController, :list_timeline)
453
454 get("/statuses", MastodonAPIController, :get_statuses)
455 get("/statuses/:id", MastodonAPIController, :get_status)
456 get("/statuses/:id/context", MastodonAPIController, :get_context)
457
458 get("/polls/:id", MastodonAPIController, :get_poll)
459
460 get("/accounts/:id/statuses", MastodonAPIController, :user_statuses)
461 get("/accounts/:id/followers", MastodonAPIController, :followers)
462 get("/accounts/:id/following", MastodonAPIController, :following)
463 get("/accounts/:id", MastodonAPIController, :user)
464
465 get("/search", SearchController, :search)
466
467 get("/pleroma/accounts/:id/favourites", MastodonAPIController, :user_favourites)
468 end
469 end
470
471 scope "/api/v2", Pleroma.Web.MastodonAPI do
472 pipe_through([:api, :oauth_read_or_public])
473 get("/search", SearchController, :search2)
474 end
475
476 scope "/api", Pleroma.Web do
477 pipe_through(:config)
478
479 get("/help/test", TwitterAPI.UtilController, :help_test)
480 post("/help/test", TwitterAPI.UtilController, :help_test)
481 get("/statusnet/config", TwitterAPI.UtilController, :config)
482 get("/statusnet/version", TwitterAPI.UtilController, :version)
483 get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
484 end
485
486 scope "/api", Pleroma.Web do
487 pipe_through(:api)
488
489 get(
490 "/account/confirm_email/:user_id/:token",
491 TwitterAPI.Controller,
492 :confirm_email,
493 as: :confirm_email
494 )
495 end
496
497 scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
498 pipe_through(:authenticated_api)
499
500 get("/oauth_tokens", TwitterAPI.Controller, :oauth_tokens)
501 delete("/oauth_tokens/:id", TwitterAPI.Controller, :revoke_token)
502
503 scope [] do
504 pipe_through(:oauth_read)
505
506 post("/qvitter/statuses/notifications/read", TwitterAPI.Controller, :notifications_read)
507 end
508 end
509
510 pipeline :ap_service_actor do
511 plug(:accepts, ["activity+json", "json"])
512 end
513
514 pipeline :ostatus do
515 plug(:accepts, ["html", "xml", "atom", "activity+json", "json"])
516 end
517
518 pipeline :oembed do
519 plug(:accepts, ["json", "xml"])
520 end
521
522 scope "/", Pleroma.Web do
523 pipe_through(:ostatus)
524
525 get("/objects/:uuid", OStatus.OStatusController, :object)
526 get("/activities/:uuid", OStatus.OStatusController, :activity)
527 get("/notice/:id", OStatus.OStatusController, :notice)
528 get("/notice/:id/embed_player", OStatus.OStatusController, :notice_player)
529 get("/users/:nickname/feed", OStatus.OStatusController, :feed)
530 get("/users/:nickname", OStatus.OStatusController, :feed_redirect)
531
532 post("/users/:nickname/salmon", OStatus.OStatusController, :salmon_incoming)
533 post("/push/hub/:nickname", Websub.WebsubController, :websub_subscription_request)
534 get("/push/subscriptions/:id", Websub.WebsubController, :websub_subscription_confirmation)
535 post("/push/subscriptions/:id", Websub.WebsubController, :websub_incoming)
536
537 get("/mailer/unsubscribe/:token", Mailer.SubscriptionController, :unsubscribe)
538 end
539
540 pipeline :activitypub do
541 plug(:accepts, ["activity+json", "json"])
542 plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
543 plug(Pleroma.Web.Plugs.MappedSignatureToIdentityPlug)
544 end
545
546 scope "/", Pleroma.Web.ActivityPub do
547 # XXX: not really ostatus
548 pipe_through(:ostatus)
549
550 get("/users/:nickname/outbox", ActivityPubController, :outbox)
551 get("/objects/:uuid/likes", ActivityPubController, :object_likes)
552 end
553
554 pipeline :activitypub_client do
555 plug(:accepts, ["activity+json", "json"])
556 plug(:fetch_session)
557 plug(Pleroma.Plugs.OAuthPlug)
558 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
559 plug(Pleroma.Plugs.UserFetcherPlug)
560 plug(Pleroma.Plugs.SessionAuthenticationPlug)
561 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
562 plug(Pleroma.Plugs.AuthenticationPlug)
563 plug(Pleroma.Plugs.UserEnabledPlug)
564 plug(Pleroma.Plugs.SetUserSessionIdPlug)
565 plug(Pleroma.Plugs.EnsureUserKeyPlug)
566 end
567
568 scope "/", Pleroma.Web.ActivityPub do
569 pipe_through([:activitypub_client])
570
571 scope [] do
572 pipe_through(:oauth_read)
573 get("/api/ap/whoami", ActivityPubController, :whoami)
574 get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
575 end
576
577 scope [] do
578 pipe_through(:oauth_write)
579 post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
580 end
581
582 scope [] do
583 pipe_through(:oauth_read_or_public)
584 get("/users/:nickname/followers", ActivityPubController, :followers)
585 get("/users/:nickname/following", ActivityPubController, :following)
586 end
587 end
588
589 scope "/", Pleroma.Web.ActivityPub do
590 pipe_through(:activitypub)
591 post("/inbox", ActivityPubController, :inbox)
592 post("/users/:nickname/inbox", ActivityPubController, :inbox)
593 end
594
595 scope "/relay", Pleroma.Web.ActivityPub do
596 pipe_through(:ap_service_actor)
597
598 get("/", ActivityPubController, :relay)
599
600 scope [] do
601 pipe_through(:http_signature)
602 post("/inbox", ActivityPubController, :inbox)
603 end
604
605 get("/following", ActivityPubController, :following, assigns: %{relay: true})
606 get("/followers", ActivityPubController, :followers, assigns: %{relay: true})
607 end
608
609 scope "/internal/fetch", Pleroma.Web.ActivityPub do
610 pipe_through(:ap_service_actor)
611
612 get("/", ActivityPubController, :internal_fetch)
613 post("/inbox", ActivityPubController, :inbox)
614 end
615
616 scope "/.well-known", Pleroma.Web do
617 pipe_through(:well_known)
618
619 get("/host-meta", WebFinger.WebFingerController, :host_meta)
620 get("/webfinger", WebFinger.WebFingerController, :webfinger)
621 get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
622 end
623
624 scope "/nodeinfo", Pleroma.Web do
625 get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
626 end
627
628 scope "/", Pleroma.Web.MastodonAPI do
629 pipe_through(:mastodon_html)
630
631 get("/web/login", MastodonAPIController, :login)
632 delete("/auth/sign_out", MastodonAPIController, :logout)
633
634 post("/auth/password", MastodonAPIController, :password_reset)
635
636 scope [] do
637 pipe_through(:oauth_read)
638 get("/web/*path", MastodonAPIController, :index)
639 end
640 end
641
642 pipeline :remote_media do
643 end
644
645 scope "/proxy/", Pleroma.Web.MediaProxy do
646 pipe_through(:remote_media)
647
648 get("/:sig/:url", MediaProxyController, :remote)
649 get("/:sig/:url/:filename", MediaProxyController, :remote)
650 end
651
652 if Pleroma.Config.get(:env) == :dev do
653 scope "/dev" do
654 pipe_through([:mailbox_preview])
655
656 forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
657 end
658 end
659
660 scope "/", Pleroma.Web.MongooseIM do
661 get("/user_exists", MongooseIMController, :user_exists)
662 get("/check_password", MongooseIMController, :check_password)
663 end
664
665 scope "/", Fallback do
666 get("/registration/:token", RedirectController, :registration_page)
667 get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
668 get("/api*path", RedirectController, :api_not_implemented)
669 get("/*path", RedirectController, :redirector)
670
671 options("/*path", RedirectController, :empty)
672 end
673 end