Merge branch 'welcome-message' into 'develop'
[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 :api do
9 plug(:accepts, ["json"])
10 plug(:fetch_session)
11 plug(Pleroma.Plugs.OAuthPlug)
12 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
13 plug(Pleroma.Plugs.UserFetcherPlug)
14 plug(Pleroma.Plugs.SessionAuthenticationPlug)
15 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
16 plug(Pleroma.Plugs.AuthenticationPlug)
17 plug(Pleroma.Plugs.UserEnabledPlug)
18 plug(Pleroma.Plugs.SetUserSessionIdPlug)
19 plug(Pleroma.Plugs.EnsureUserKeyPlug)
20 end
21
22 pipeline :authenticated_api do
23 plug(:accepts, ["json"])
24 plug(:fetch_session)
25 plug(Pleroma.Plugs.OAuthPlug)
26 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
27 plug(Pleroma.Plugs.UserFetcherPlug)
28 plug(Pleroma.Plugs.SessionAuthenticationPlug)
29 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
30 plug(Pleroma.Plugs.AuthenticationPlug)
31 plug(Pleroma.Plugs.UserEnabledPlug)
32 plug(Pleroma.Plugs.SetUserSessionIdPlug)
33 plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
34 end
35
36 pipeline :admin_api do
37 plug(:accepts, ["json"])
38 plug(:fetch_session)
39 plug(Pleroma.Plugs.OAuthPlug)
40 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
41 plug(Pleroma.Plugs.UserFetcherPlug)
42 plug(Pleroma.Plugs.SessionAuthenticationPlug)
43 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
44 plug(Pleroma.Plugs.AuthenticationPlug)
45 plug(Pleroma.Plugs.AdminSecretAuthenticationPlug)
46 plug(Pleroma.Plugs.UserEnabledPlug)
47 plug(Pleroma.Plugs.SetUserSessionIdPlug)
48 plug(Pleroma.Plugs.EnsureAuthenticatedPlug)
49 plug(Pleroma.Plugs.UserIsAdminPlug)
50 end
51
52 pipeline :mastodon_html do
53 plug(:accepts, ["html"])
54 plug(:fetch_session)
55 plug(Pleroma.Plugs.OAuthPlug)
56 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
57 plug(Pleroma.Plugs.UserFetcherPlug)
58 plug(Pleroma.Plugs.SessionAuthenticationPlug)
59 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
60 plug(Pleroma.Plugs.AuthenticationPlug)
61 plug(Pleroma.Plugs.UserEnabledPlug)
62 plug(Pleroma.Plugs.SetUserSessionIdPlug)
63 plug(Pleroma.Plugs.EnsureUserKeyPlug)
64 end
65
66 pipeline :pleroma_html do
67 plug(:accepts, ["html"])
68 plug(:fetch_session)
69 plug(Pleroma.Plugs.OAuthPlug)
70 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
71 plug(Pleroma.Plugs.UserFetcherPlug)
72 plug(Pleroma.Plugs.SessionAuthenticationPlug)
73 plug(Pleroma.Plugs.AuthenticationPlug)
74 plug(Pleroma.Plugs.EnsureUserKeyPlug)
75 end
76
77 pipeline :well_known do
78 plug(:accepts, ["json", "jrd+json", "xml", "xrd+xml"])
79 end
80
81 pipeline :config do
82 plug(:accepts, ["json", "xml"])
83 end
84
85 pipeline :oauth do
86 plug(:accepts, ["html", "json"])
87 end
88
89 pipeline :pleroma_api do
90 plug(:accepts, ["html", "json"])
91 end
92
93 pipeline :mailbox_preview do
94 plug(:accepts, ["html"])
95
96 plug(:put_secure_browser_headers, %{
97 "content-security-policy" =>
98 "default-src 'self'; script-src 'self' 'unsafe-inline' 'unsafe-eval'; style-src 'self' 'unsafe-inline' 'unsafe-eval'"
99 })
100 end
101
102 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
103 pipe_through(:pleroma_api)
104 get("/password_reset/:token", UtilController, :show_password_reset)
105 post("/password_reset", UtilController, :password_reset)
106 get("/emoji", UtilController, :emoji)
107 get("/captcha", UtilController, :captcha)
108 end
109
110 scope "/api/pleroma", Pleroma.Web do
111 pipe_through(:pleroma_api)
112 post("/uploader_callback/:upload_path", UploaderController, :callback)
113 end
114
115 scope "/api/pleroma/admin", Pleroma.Web.AdminAPI do
116 pipe_through(:admin_api)
117 delete("/user", AdminAPIController, :user_delete)
118 post("/user", AdminAPIController, :user_create)
119 put("/users/tag", AdminAPIController, :tag_users)
120 delete("/users/tag", AdminAPIController, :untag_users)
121
122 get("/permission_group/:nickname", AdminAPIController, :right_get)
123 get("/permission_group/:nickname/:permission_group", AdminAPIController, :right_get)
124 post("/permission_group/:nickname/:permission_group", AdminAPIController, :right_add)
125 delete("/permission_group/:nickname/:permission_group", AdminAPIController, :right_delete)
126
127 post("/relay", AdminAPIController, :relay_follow)
128 delete("/relay", AdminAPIController, :relay_unfollow)
129
130 get("/invite_token", AdminAPIController, :get_invite_token)
131 post("/email_invite", AdminAPIController, :email_invite)
132
133 get("/password_reset", AdminAPIController, :get_password_reset)
134 end
135
136 scope "/", Pleroma.Web.TwitterAPI do
137 pipe_through(:pleroma_html)
138 get("/ostatus_subscribe", UtilController, :remote_follow)
139 post("/ostatus_subscribe", UtilController, :do_remote_follow)
140 post("/main/ostatus", UtilController, :remote_subscribe)
141 end
142
143 scope "/api/pleroma", Pleroma.Web.TwitterAPI do
144 pipe_through(:authenticated_api)
145 post("/blocks_import", UtilController, :blocks_import)
146 post("/follow_import", UtilController, :follow_import)
147 post("/change_password", UtilController, :change_password)
148 post("/delete_account", UtilController, :delete_account)
149 end
150
151 scope "/oauth", Pleroma.Web.OAuth do
152 get("/authorize", OAuthController, :authorize)
153 post("/authorize", OAuthController, :create_authorization)
154 post("/token", OAuthController, :token_exchange)
155 post("/revoke", OAuthController, :token_revoke)
156 end
157
158 scope "/api/v1", Pleroma.Web.MastodonAPI do
159 pipe_through(:authenticated_api)
160
161 patch("/accounts/update_credentials", MastodonAPIController, :update_credentials)
162 get("/accounts/verify_credentials", MastodonAPIController, :verify_credentials)
163 get("/accounts/relationships", MastodonAPIController, :relationships)
164 get("/accounts/search", MastodonAPIController, :account_search)
165 post("/accounts/:id/follow", MastodonAPIController, :follow)
166 post("/accounts/:id/unfollow", MastodonAPIController, :unfollow)
167 post("/accounts/:id/block", MastodonAPIController, :block)
168 post("/accounts/:id/unblock", MastodonAPIController, :unblock)
169 post("/accounts/:id/mute", MastodonAPIController, :relationship_noop)
170 post("/accounts/:id/unmute", MastodonAPIController, :relationship_noop)
171 get("/accounts/:id/lists", MastodonAPIController, :account_lists)
172
173 get("/follow_requests", MastodonAPIController, :follow_requests)
174 post("/follow_requests/:id/authorize", MastodonAPIController, :authorize_follow_request)
175 post("/follow_requests/:id/reject", MastodonAPIController, :reject_follow_request)
176
177 post("/follows", MastodonAPIController, :follow)
178
179 get("/blocks", MastodonAPIController, :blocks)
180
181 get("/mutes", MastodonAPIController, :empty_array)
182
183 get("/timelines/home", MastodonAPIController, :home_timeline)
184
185 get("/timelines/direct", MastodonAPIController, :dm_timeline)
186
187 get("/favourites", MastodonAPIController, :favourites)
188 get("/bookmarks", MastodonAPIController, :bookmarks)
189
190 post("/statuses", MastodonAPIController, :post_status)
191 delete("/statuses/:id", MastodonAPIController, :delete_status)
192
193 post("/statuses/:id/reblog", MastodonAPIController, :reblog_status)
194 post("/statuses/:id/unreblog", MastodonAPIController, :unreblog_status)
195 post("/statuses/:id/favourite", MastodonAPIController, :fav_status)
196 post("/statuses/:id/unfavourite", MastodonAPIController, :unfav_status)
197 post("/statuses/:id/pin", MastodonAPIController, :pin_status)
198 post("/statuses/:id/unpin", MastodonAPIController, :unpin_status)
199 post("/statuses/:id/bookmark", MastodonAPIController, :bookmark_status)
200 post("/statuses/:id/unbookmark", MastodonAPIController, :unbookmark_status)
201 post("/statuses/:id/mute", MastodonAPIController, :mute_conversation)
202 post("/statuses/:id/unmute", MastodonAPIController, :unmute_conversation)
203
204 post("/notifications/clear", MastodonAPIController, :clear_notifications)
205 post("/notifications/dismiss", MastodonAPIController, :dismiss_notification)
206 get("/notifications", MastodonAPIController, :notifications)
207 get("/notifications/:id", MastodonAPIController, :get_notification)
208
209 post("/media", MastodonAPIController, :upload)
210 put("/media/:id", MastodonAPIController, :update_media)
211
212 get("/lists", MastodonAPIController, :get_lists)
213 get("/lists/:id", MastodonAPIController, :get_list)
214 delete("/lists/:id", MastodonAPIController, :delete_list)
215 post("/lists", MastodonAPIController, :create_list)
216 put("/lists/:id", MastodonAPIController, :rename_list)
217 get("/lists/:id/accounts", MastodonAPIController, :list_accounts)
218 post("/lists/:id/accounts", MastodonAPIController, :add_to_list)
219 delete("/lists/:id/accounts", MastodonAPIController, :remove_from_list)
220
221 get("/domain_blocks", MastodonAPIController, :domain_blocks)
222 post("/domain_blocks", MastodonAPIController, :block_domain)
223 delete("/domain_blocks", MastodonAPIController, :unblock_domain)
224
225 get("/filters", MastodonAPIController, :get_filters)
226 post("/filters", MastodonAPIController, :create_filter)
227 get("/filters/:id", MastodonAPIController, :get_filter)
228 put("/filters/:id", MastodonAPIController, :update_filter)
229 delete("/filters/:id", MastodonAPIController, :delete_filter)
230
231 post("/push/subscription", MastodonAPIController, :create_push_subscription)
232 get("/push/subscription", MastodonAPIController, :get_push_subscription)
233 put("/push/subscription", MastodonAPIController, :update_push_subscription)
234 delete("/push/subscription", MastodonAPIController, :delete_push_subscription)
235
236 get("/suggestions", MastodonAPIController, :suggestions)
237
238 get("/endorsements", MastodonAPIController, :empty_array)
239 end
240
241 scope "/api/web", Pleroma.Web.MastodonAPI do
242 pipe_through(:authenticated_api)
243
244 put("/settings", MastodonAPIController, :put_settings)
245 end
246
247 scope "/api/v1", Pleroma.Web.MastodonAPI do
248 pipe_through(:api)
249 get("/instance", MastodonAPIController, :masto_instance)
250 get("/instance/peers", MastodonAPIController, :peers)
251 post("/apps", MastodonAPIController, :create_app)
252 get("/custom_emojis", MastodonAPIController, :custom_emojis)
253
254 get("/timelines/public", MastodonAPIController, :public_timeline)
255 get("/timelines/tag/:tag", MastodonAPIController, :hashtag_timeline)
256 get("/timelines/list/:list_id", MastodonAPIController, :list_timeline)
257
258 get("/statuses/:id", MastodonAPIController, :get_status)
259 get("/statuses/:id/context", MastodonAPIController, :get_context)
260 get("/statuses/:id/card", MastodonAPIController, :status_card)
261 get("/statuses/:id/favourited_by", MastodonAPIController, :favourited_by)
262 get("/statuses/:id/reblogged_by", MastodonAPIController, :reblogged_by)
263
264 get("/accounts/:id/statuses", MastodonAPIController, :user_statuses)
265 get("/accounts/:id/followers", MastodonAPIController, :followers)
266 get("/accounts/:id/following", MastodonAPIController, :following)
267 get("/accounts/:id", MastodonAPIController, :user)
268
269 get("/trends", MastodonAPIController, :empty_array)
270
271 get("/search", MastodonAPIController, :search)
272 end
273
274 scope "/api/v2", Pleroma.Web.MastodonAPI do
275 pipe_through(:api)
276 get("/search", MastodonAPIController, :search2)
277 end
278
279 scope "/api", Pleroma.Web do
280 pipe_through(:config)
281
282 get("/help/test", TwitterAPI.UtilController, :help_test)
283 post("/help/test", TwitterAPI.UtilController, :help_test)
284 get("/statusnet/config", TwitterAPI.UtilController, :config)
285 get("/statusnet/version", TwitterAPI.UtilController, :version)
286 get("/pleroma/frontend_configurations", TwitterAPI.UtilController, :frontend_configurations)
287 end
288
289 scope "/api", Pleroma.Web do
290 pipe_through(:api)
291
292 get("/statuses/user_timeline", TwitterAPI.Controller, :user_timeline)
293 get("/qvitter/statuses/user_timeline", TwitterAPI.Controller, :user_timeline)
294 get("/users/show", TwitterAPI.Controller, :show_user)
295
296 get("/statuses/followers", TwitterAPI.Controller, :followers)
297 get("/statuses/friends", TwitterAPI.Controller, :friends)
298 get("/statuses/blocks", TwitterAPI.Controller, :blocks)
299 get("/statuses/show/:id", TwitterAPI.Controller, :fetch_status)
300 get("/statusnet/conversation/:id", TwitterAPI.Controller, :fetch_conversation)
301
302 post("/account/register", TwitterAPI.Controller, :register)
303 post("/account/password_reset", TwitterAPI.Controller, :password_reset)
304
305 get(
306 "/account/confirm_email/:user_id/:token",
307 TwitterAPI.Controller,
308 :confirm_email,
309 as: :confirm_email
310 )
311
312 post("/account/resend_confirmation_email", TwitterAPI.Controller, :resend_confirmation_email)
313
314 get("/search", TwitterAPI.Controller, :search)
315 get("/statusnet/tags/timeline/:tag", TwitterAPI.Controller, :public_and_external_timeline)
316 end
317
318 scope "/api", Pleroma.Web do
319 pipe_through(:api)
320
321 get("/statuses/public_timeline", TwitterAPI.Controller, :public_timeline)
322
323 get(
324 "/statuses/public_and_external_timeline",
325 TwitterAPI.Controller,
326 :public_and_external_timeline
327 )
328
329 get("/statuses/networkpublic_timeline", TwitterAPI.Controller, :public_and_external_timeline)
330 end
331
332 scope "/api", Pleroma.Web, as: :twitter_api_search do
333 pipe_through(:api)
334 get("/pleroma/search_user", TwitterAPI.Controller, :search_user)
335 end
336
337 scope "/api", Pleroma.Web, as: :authenticated_twitter_api do
338 pipe_through(:authenticated_api)
339
340 get("/account/verify_credentials", TwitterAPI.Controller, :verify_credentials)
341 post("/account/verify_credentials", TwitterAPI.Controller, :verify_credentials)
342
343 post("/account/update_profile", TwitterAPI.Controller, :update_profile)
344 post("/account/update_profile_banner", TwitterAPI.Controller, :update_banner)
345 post("/qvitter/update_background_image", TwitterAPI.Controller, :update_background)
346
347 get("/statuses/home_timeline", TwitterAPI.Controller, :friends_timeline)
348 get("/statuses/friends_timeline", TwitterAPI.Controller, :friends_timeline)
349 get("/statuses/mentions", TwitterAPI.Controller, :mentions_timeline)
350 get("/statuses/mentions_timeline", TwitterAPI.Controller, :mentions_timeline)
351 get("/statuses/dm_timeline", TwitterAPI.Controller, :dm_timeline)
352 get("/qvitter/statuses/notifications", TwitterAPI.Controller, :notifications)
353
354 # XXX: this is really a pleroma API, but we want to keep the pleroma namespace clean
355 # for now.
356 post("/qvitter/statuses/notifications/read", TwitterAPI.Controller, :notifications_read)
357
358 post("/statuses/update", TwitterAPI.Controller, :status_update)
359 post("/statuses/retweet/:id", TwitterAPI.Controller, :retweet)
360 post("/statuses/unretweet/:id", TwitterAPI.Controller, :unretweet)
361 post("/statuses/destroy/:id", TwitterAPI.Controller, :delete_post)
362
363 post("/statuses/pin/:id", TwitterAPI.Controller, :pin)
364 post("/statuses/unpin/:id", TwitterAPI.Controller, :unpin)
365
366 get("/pleroma/friend_requests", TwitterAPI.Controller, :friend_requests)
367 post("/pleroma/friendships/approve", TwitterAPI.Controller, :approve_friend_request)
368 post("/pleroma/friendships/deny", TwitterAPI.Controller, :deny_friend_request)
369
370 post("/friendships/create", TwitterAPI.Controller, :follow)
371 post("/friendships/destroy", TwitterAPI.Controller, :unfollow)
372 post("/blocks/create", TwitterAPI.Controller, :block)
373 post("/blocks/destroy", TwitterAPI.Controller, :unblock)
374
375 post("/statusnet/media/upload", TwitterAPI.Controller, :upload)
376 post("/media/upload", TwitterAPI.Controller, :upload_json)
377 post("/media/metadata/create", TwitterAPI.Controller, :update_media)
378
379 post("/favorites/create/:id", TwitterAPI.Controller, :favorite)
380 post("/favorites/create", TwitterAPI.Controller, :favorite)
381 post("/favorites/destroy/:id", TwitterAPI.Controller, :unfavorite)
382
383 post("/qvitter/update_avatar", TwitterAPI.Controller, :update_avatar)
384
385 get("/friends/ids", TwitterAPI.Controller, :friends_ids)
386 get("/friendships/no_retweets/ids", TwitterAPI.Controller, :empty_array)
387
388 get("/mutes/users/ids", TwitterAPI.Controller, :empty_array)
389 get("/qvitter/mutes", TwitterAPI.Controller, :raw_empty_array)
390
391 get("/externalprofile/show", TwitterAPI.Controller, :external_profile)
392 end
393
394 pipeline :ap_relay do
395 plug(:accepts, ["activity+json"])
396 end
397
398 pipeline :ostatus do
399 plug(:accepts, ["html", "xml", "atom", "activity+json"])
400 end
401
402 pipeline :oembed do
403 plug(:accepts, ["json", "xml"])
404 end
405
406 scope "/", Pleroma.Web do
407 pipe_through(:ostatus)
408
409 get("/objects/:uuid", OStatus.OStatusController, :object)
410 get("/activities/:uuid", OStatus.OStatusController, :activity)
411 get("/notice/:id", OStatus.OStatusController, :notice)
412 get("/users/:nickname/feed", OStatus.OStatusController, :feed)
413 get("/users/:nickname", OStatus.OStatusController, :feed_redirect)
414
415 post("/users/:nickname/salmon", OStatus.OStatusController, :salmon_incoming)
416 post("/push/hub/:nickname", Websub.WebsubController, :websub_subscription_request)
417 get("/push/subscriptions/:id", Websub.WebsubController, :websub_subscription_confirmation)
418 post("/push/subscriptions/:id", Websub.WebsubController, :websub_incoming)
419 end
420
421 scope "/", Pleroma.Web do
422 pipe_through(:oembed)
423
424 get("/oembed", OEmbed.OEmbedController, :url)
425 end
426
427 pipeline :activitypub do
428 plug(:accepts, ["activity+json"])
429 plug(Pleroma.Web.Plugs.HTTPSignaturePlug)
430 end
431
432 scope "/", Pleroma.Web.ActivityPub do
433 # XXX: not really ostatus
434 pipe_through(:ostatus)
435
436 get("/users/:nickname/followers", ActivityPubController, :followers)
437 get("/users/:nickname/following", ActivityPubController, :following)
438 get("/users/:nickname/outbox", ActivityPubController, :outbox)
439 get("/objects/:uuid/likes", ActivityPubController, :object_likes)
440 end
441
442 pipeline :activitypub_client do
443 plug(:accepts, ["activity+json"])
444 plug(:fetch_session)
445 plug(Pleroma.Plugs.OAuthPlug)
446 plug(Pleroma.Plugs.BasicAuthDecoderPlug)
447 plug(Pleroma.Plugs.UserFetcherPlug)
448 plug(Pleroma.Plugs.SessionAuthenticationPlug)
449 plug(Pleroma.Plugs.LegacyAuthenticationPlug)
450 plug(Pleroma.Plugs.AuthenticationPlug)
451 plug(Pleroma.Plugs.UserEnabledPlug)
452 plug(Pleroma.Plugs.SetUserSessionIdPlug)
453 plug(Pleroma.Plugs.EnsureUserKeyPlug)
454 end
455
456 scope "/", Pleroma.Web.ActivityPub do
457 pipe_through([:activitypub_client])
458
459 get("/api/ap/whoami", ActivityPubController, :whoami)
460 get("/users/:nickname/inbox", ActivityPubController, :read_inbox)
461 post("/users/:nickname/outbox", ActivityPubController, :update_outbox)
462 end
463
464 scope "/relay", Pleroma.Web.ActivityPub do
465 pipe_through(:ap_relay)
466 get("/", ActivityPubController, :relay)
467 end
468
469 scope "/", Pleroma.Web.ActivityPub do
470 pipe_through(:activitypub)
471 post("/inbox", ActivityPubController, :inbox)
472 post("/users/:nickname/inbox", ActivityPubController, :inbox)
473 end
474
475 scope "/.well-known", Pleroma.Web do
476 pipe_through(:well_known)
477
478 get("/host-meta", WebFinger.WebFingerController, :host_meta)
479 get("/webfinger", WebFinger.WebFingerController, :webfinger)
480 get("/nodeinfo", Nodeinfo.NodeinfoController, :schemas)
481 end
482
483 scope "/nodeinfo", Pleroma.Web do
484 get("/:version", Nodeinfo.NodeinfoController, :nodeinfo)
485 end
486
487 scope "/", Pleroma.Web.MastodonAPI do
488 pipe_through(:mastodon_html)
489
490 get("/web/login", MastodonAPIController, :login)
491 post("/web/login", MastodonAPIController, :login_post)
492 get("/web/*path", MastodonAPIController, :index)
493 delete("/auth/sign_out", MastodonAPIController, :logout)
494 end
495
496 pipeline :remote_media do
497 end
498
499 scope "/proxy/", Pleroma.Web.MediaProxy do
500 pipe_through(:remote_media)
501 get("/:sig/:url", MediaProxyController, :remote)
502 get("/:sig/:url/:filename", MediaProxyController, :remote)
503 end
504
505 if Mix.env() == :dev do
506 scope "/dev" do
507 pipe_through([:mailbox_preview])
508
509 forward("/mailbox", Plug.Swoosh.MailboxPreview, base_path: "/dev/mailbox")
510 end
511 end
512
513 scope "/", Fallback do
514 get("/registration/:token", RedirectController, :registration_page)
515 get("/:maybe_nickname_or_id", RedirectController, :redirector_with_meta)
516 get("/*path", RedirectController, :redirector)
517
518 options("/*path", RedirectController, :empty)
519 end
520 end
521
522 defmodule Fallback.RedirectController do
523 use Pleroma.Web, :controller
524 alias Pleroma.Web.Metadata
525 alias Pleroma.User
526
527 def redirector(conn, _params, code \\ 200) do
528 conn
529 |> put_resp_content_type("text/html")
530 |> send_file(code, index_file_path())
531 end
532
533 def redirector_with_meta(conn, %{"maybe_nickname_or_id" => maybe_nickname_or_id} = params) do
534 with %User{} = user <- User.get_cached_by_nickname_or_id(maybe_nickname_or_id) do
535 redirector_with_meta(conn, %{user: user})
536 else
537 nil ->
538 redirector(conn, params)
539 end
540 end
541
542 def redirector_with_meta(conn, params) do
543 {:ok, index_content} = File.read(index_file_path())
544 tags = Metadata.build_tags(params)
545 response = String.replace(index_content, "<!--server-generated-meta-->", tags)
546
547 conn
548 |> put_resp_content_type("text/html")
549 |> send_resp(200, response)
550 end
551
552 def index_file_path do
553 Pleroma.Plugs.InstanceStatic.file_path("index.html")
554 end
555
556 def registration_page(conn, params) do
557 redirector(conn, params)
558 end
559
560 def empty(conn, _params) do
561 conn
562 |> put_status(204)
563 |> text("")
564 end
565 end