715a2f1a99400dd936773c4bffb5e2e114fd1b34
[akkoma] / lib / pleroma / web / mastodon_api / mastodon_api_controller.ex
1 defmodule Pleroma.Web.MastodonAPI.MastodonAPIController do
2 use Pleroma.Web, :controller
3 alias Pleroma.{Repo, Object, Activity, User, Notification, Stats}
4 alias Pleroma.Web
5 alias Pleroma.Web.MastodonAPI.{StatusView, AccountView, MastodonView, ListView, FilterView}
6 alias Pleroma.Web.ActivityPub.ActivityPub
7 alias Pleroma.Web.ActivityPub.Utils
8 alias Pleroma.Web.CommonAPI
9 alias Pleroma.Web.OAuth.{Authorization, Token, App}
10 alias Pleroma.Web.MediaProxy
11 alias Comeonin.Pbkdf2
12 import Ecto.Query
13 require Logger
14
15 @httpoison Application.get_env(:pleroma, :httpoison)
16
17 action_fallback(:errors)
18
19 def create_app(conn, params) do
20 with cs <- App.register_changeset(%App{}, params) |> IO.inspect(),
21 {:ok, app} <- Repo.insert(cs) |> IO.inspect() do
22 res = %{
23 id: app.id |> to_string,
24 name: app.client_name,
25 client_id: app.client_id,
26 client_secret: app.client_secret,
27 redirect_uri: app.redirect_uris,
28 website: app.website
29 }
30
31 json(conn, res)
32 end
33 end
34
35 defp add_if_present(
36 map,
37 params,
38 params_field,
39 map_field,
40 value_function \\ fn x -> {:ok, x} end
41 ) do
42 if Map.has_key?(params, params_field) do
43 case value_function.(params[params_field]) do
44 {:ok, new_value} -> Map.put(map, map_field, new_value)
45 :error -> map
46 end
47 else
48 map
49 end
50 end
51
52 def update_credentials(%{assigns: %{user: user}} = conn, params) do
53 original_user = user
54
55 user_params =
56 %{}
57 |> add_if_present(params, "display_name", :name)
58 |> add_if_present(params, "note", :bio)
59 |> add_if_present(params, "avatar", :avatar, fn value ->
60 with %Plug.Upload{} <- value,
61 {:ok, object} <- ActivityPub.upload(value, type: :avatar) do
62 {:ok, object.data}
63 else
64 _ -> :error
65 end
66 end)
67
68 info_params =
69 %{}
70 |> add_if_present(params, "locked", :locked, fn value -> {:ok, value == "true"} end)
71 |> add_if_present(params, "header", :banner, fn value ->
72 with %Plug.Upload{} <- value,
73 {:ok, object} <- ActivityPub.upload(value, type: :banner) do
74 {:ok, object.data}
75 else
76 _ -> :error
77 end
78 end)
79
80 info_cng = User.Info.mastodon_profile_update(user.info, info_params)
81
82 with changeset <- User.update_changeset(user, user_params),
83 changeset <- Ecto.Changeset.put_embed(changeset, :info, info_cng),
84 {:ok, user} <- User.update_and_set_cache(changeset) do
85 if original_user != user do
86 CommonAPI.update(user)
87 end
88
89 json(conn, AccountView.render("account.json", %{user: user, for: user}))
90 else
91 _e ->
92 conn
93 |> put_status(403)
94 |> json(%{error: "Invalid request"})
95 end
96 end
97
98 def verify_credentials(%{assigns: %{user: user}} = conn, _) do
99 account = AccountView.render("account.json", %{user: user, for: user})
100 json(conn, account)
101 end
102
103 def user(%{assigns: %{user: for_user}} = conn, %{"id" => id}) do
104 with %User{} = user <- Repo.get(User, id) do
105 account = AccountView.render("account.json", %{user: user, for: for_user})
106 json(conn, account)
107 else
108 _e ->
109 conn
110 |> put_status(404)
111 |> json(%{error: "Can't find user"})
112 end
113 end
114
115 @mastodon_api_level "2.5.0"
116
117 def masto_instance(conn, _params) do
118 instance = Pleroma.Config.get(:instance)
119
120 response = %{
121 uri: Web.base_url(),
122 title: Keyword.get(instance, :name),
123 description: Keyword.get(instance, :description),
124 version: "#{@mastodon_api_level} (compatible; #{Pleroma.Application.named_version()})",
125 email: Keyword.get(instance, :email),
126 urls: %{
127 streaming_api: String.replace(Pleroma.Web.Endpoint.static_url(), "http", "ws")
128 },
129 stats: Stats.get_stats(),
130 thumbnail: Web.base_url() <> "/instance/thumbnail.jpeg",
131 max_toot_chars: Keyword.get(instance, :limit)
132 }
133
134 json(conn, response)
135 end
136
137 def peers(conn, _params) do
138 json(conn, Stats.get_peers())
139 end
140
141 defp mastodonized_emoji do
142 Pleroma.Emoji.get_all()
143 |> Enum.map(fn {shortcode, relative_url} ->
144 url = to_string(URI.merge(Web.base_url(), relative_url))
145
146 %{
147 "shortcode" => shortcode,
148 "static_url" => url,
149 "visible_in_picker" => true,
150 "url" => url
151 }
152 end)
153 end
154
155 def custom_emojis(conn, _params) do
156 mastodon_emoji = mastodonized_emoji()
157 json(conn, mastodon_emoji)
158 end
159
160 defp add_link_headers(conn, method, activities, param \\ nil, params \\ %{}) do
161 last = List.last(activities)
162 first = List.first(activities)
163
164 if last do
165 min = last.id
166 max = first.id
167
168 {next_url, prev_url} =
169 if param do
170 {
171 mastodon_api_url(
172 Pleroma.Web.Endpoint,
173 method,
174 param,
175 Map.merge(params, %{max_id: min})
176 ),
177 mastodon_api_url(
178 Pleroma.Web.Endpoint,
179 method,
180 param,
181 Map.merge(params, %{since_id: max})
182 )
183 }
184 else
185 {
186 mastodon_api_url(
187 Pleroma.Web.Endpoint,
188 method,
189 Map.merge(params, %{max_id: min})
190 ),
191 mastodon_api_url(
192 Pleroma.Web.Endpoint,
193 method,
194 Map.merge(params, %{since_id: max})
195 )
196 }
197 end
198
199 conn
200 |> put_resp_header("link", "<#{next_url}>; rel=\"next\", <#{prev_url}>; rel=\"prev\"")
201 else
202 conn
203 end
204 end
205
206 def home_timeline(%{assigns: %{user: user}} = conn, params) do
207 params =
208 params
209 |> Map.put("type", ["Create", "Announce"])
210 |> Map.put("blocking_user", user)
211 |> Map.put("user", user)
212
213 activities =
214 ActivityPub.fetch_activities([user.ap_id | user.following], params)
215 |> ActivityPub.contain_timeline(user)
216 |> Enum.reverse()
217
218 conn
219 |> add_link_headers(:home_timeline, activities)
220 |> render(StatusView, "index.json", %{activities: activities, for: user, as: :activity})
221 end
222
223 def public_timeline(%{assigns: %{user: user}} = conn, params) do
224 local_only = params["local"] in [true, "True", "true", "1"]
225
226 params =
227 params
228 |> Map.put("type", ["Create", "Announce"])
229 |> Map.put("local_only", local_only)
230 |> Map.put("blocking_user", user)
231
232 activities =
233 ActivityPub.fetch_public_activities(params)
234 |> Enum.reverse()
235
236 conn
237 |> add_link_headers(:public_timeline, activities, false, %{"local" => local_only})
238 |> render(StatusView, "index.json", %{activities: activities, for: user, as: :activity})
239 end
240
241 def user_statuses(%{assigns: %{user: reading_user}} = conn, params) do
242 with %User{} = user <- Repo.get(User, params["id"]) do
243 # Since Pleroma has no "pinned" posts feature, we'll just set an empty list here
244 activities =
245 if params["pinned"] == "true" do
246 []
247 else
248 ActivityPub.fetch_user_activities(user, reading_user, params)
249 end
250
251 conn
252 |> add_link_headers(:user_statuses, activities, params["id"])
253 |> render(StatusView, "index.json", %{
254 activities: activities,
255 for: reading_user,
256 as: :activity
257 })
258 end
259 end
260
261 def dm_timeline(%{assigns: %{user: user}} = conn, params) do
262 query =
263 ActivityPub.fetch_activities_query(
264 [user.ap_id],
265 Map.merge(params, %{"type" => "Create", visibility: "direct"})
266 )
267
268 activities = Repo.all(query)
269
270 conn
271 |> add_link_headers(:dm_timeline, activities)
272 |> render(StatusView, "index.json", %{activities: activities, for: user, as: :activity})
273 end
274
275 def get_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
276 with %Activity{} = activity <- Repo.get(Activity, id),
277 true <- ActivityPub.visible_for_user?(activity, user) do
278 try_render(conn, StatusView, "status.json", %{activity: activity, for: user})
279 end
280 end
281
282 def get_context(%{assigns: %{user: user}} = conn, %{"id" => id}) do
283 with %Activity{} = activity <- Repo.get(Activity, id),
284 activities <-
285 ActivityPub.fetch_activities_for_context(activity.data["context"], %{
286 "blocking_user" => user,
287 "user" => user
288 }),
289 activities <-
290 activities |> Enum.filter(fn %{id: aid} -> to_string(aid) != to_string(id) end),
291 activities <-
292 activities |> Enum.filter(fn %{data: %{"type" => type}} -> type == "Create" end),
293 grouped_activities <- Enum.group_by(activities, fn %{id: id} -> id < activity.id end) do
294 result = %{
295 ancestors:
296 StatusView.render(
297 "index.json",
298 for: user,
299 activities: grouped_activities[true] || [],
300 as: :activity
301 )
302 |> Enum.reverse(),
303 descendants:
304 StatusView.render(
305 "index.json",
306 for: user,
307 activities: grouped_activities[false] || [],
308 as: :activity
309 )
310 |> Enum.reverse()
311 }
312
313 json(conn, result)
314 end
315 end
316
317 def post_status(conn, %{"status" => "", "media_ids" => media_ids} = params)
318 when length(media_ids) > 0 do
319 params =
320 params
321 |> Map.put("status", ".")
322
323 post_status(conn, params)
324 end
325
326 def post_status(%{assigns: %{user: user}} = conn, %{"status" => _} = params) do
327 params =
328 params
329 |> Map.put("in_reply_to_status_id", params["in_reply_to_id"])
330 |> Map.put("no_attachment_links", true)
331
332 idempotency_key =
333 case get_req_header(conn, "idempotency-key") do
334 [key] -> key
335 _ -> Ecto.UUID.generate()
336 end
337
338 {:ok, activity} =
339 Cachex.fetch!(:idempotency_cache, idempotency_key, fn _ -> CommonAPI.post(user, params) end)
340
341 try_render(conn, StatusView, "status.json", %{activity: activity, for: user, as: :activity})
342 end
343
344 def delete_status(%{assigns: %{user: user}} = conn, %{"id" => id}) do
345 with {:ok, %Activity{}} <- CommonAPI.delete(id, user) do
346 json(conn, %{})
347 else
348 _e ->
349 conn
350 |> put_status(403)
351 |> json(%{error: "Can't delete this post"})
352 end
353 end
354
355 def reblog_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
356 with {:ok, announce, _activity} <- CommonAPI.repeat(ap_id_or_id, user) do
357 try_render(conn, StatusView, "status.json", %{activity: announce, for: user, as: :activity})
358 end
359 end
360
361 def unreblog_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
362 with {:ok, _unannounce, %{data: %{"id" => id}}} <- CommonAPI.unrepeat(ap_id_or_id, user),
363 %Activity{} = activity <- Activity.get_create_activity_by_object_ap_id(id) do
364 try_render(conn, StatusView, "status.json", %{activity: activity, for: user, as: :activity})
365 end
366 end
367
368 def fav_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
369 with {:ok, _fav, %{data: %{"id" => id}}} <- CommonAPI.favorite(ap_id_or_id, user),
370 %Activity{} = activity <- Activity.get_create_activity_by_object_ap_id(id) do
371 try_render(conn, StatusView, "status.json", %{activity: activity, for: user, as: :activity})
372 end
373 end
374
375 def unfav_status(%{assigns: %{user: user}} = conn, %{"id" => ap_id_or_id}) do
376 with {:ok, _, _, %{data: %{"id" => id}}} <- CommonAPI.unfavorite(ap_id_or_id, user),
377 %Activity{} = activity <- Activity.get_create_activity_by_object_ap_id(id) do
378 try_render(conn, StatusView, "status.json", %{activity: activity, for: user, as: :activity})
379 end
380 end
381
382 def notifications(%{assigns: %{user: user}} = conn, params) do
383 notifications = Notification.for_user(user, params)
384
385 result =
386 Enum.map(notifications, fn x ->
387 render_notification(user, x)
388 end)
389 |> Enum.filter(& &1)
390
391 conn
392 |> add_link_headers(:notifications, notifications)
393 |> json(result)
394 end
395
396 def get_notification(%{assigns: %{user: user}} = conn, %{"id" => id} = _params) do
397 with {:ok, notification} <- Notification.get(user, id) do
398 json(conn, render_notification(user, notification))
399 else
400 {:error, reason} ->
401 conn
402 |> put_resp_content_type("application/json")
403 |> send_resp(403, Jason.encode!(%{"error" => reason}))
404 end
405 end
406
407 def clear_notifications(%{assigns: %{user: user}} = conn, _params) do
408 Notification.clear(user)
409 json(conn, %{})
410 end
411
412 def dismiss_notification(%{assigns: %{user: user}} = conn, %{"id" => id} = _params) do
413 with {:ok, _notif} <- Notification.dismiss(user, id) do
414 json(conn, %{})
415 else
416 {:error, reason} ->
417 conn
418 |> put_resp_content_type("application/json")
419 |> send_resp(403, Jason.encode!(%{"error" => reason}))
420 end
421 end
422
423 def relationships(%{assigns: %{user: user}} = conn, %{"id" => id}) do
424 id = List.wrap(id)
425 q = from(u in User, where: u.id in ^id)
426 targets = Repo.all(q)
427 render(conn, AccountView, "relationships.json", %{user: user, targets: targets})
428 end
429
430 # Instead of returning a 400 when no "id" params is present, Mastodon returns an empty array.
431 def relationships(%{assigns: %{user: user}} = conn, _) do
432 conn
433 |> json([])
434 end
435
436 def update_media(%{assigns: %{user: _}} = conn, data) do
437 with %Object{} = object <- Repo.get(Object, data["id"]),
438 true <- is_binary(data["description"]),
439 description <- data["description"] do
440 new_data = %{object.data | "name" => description}
441
442 change = Object.change(object, %{data: new_data})
443 {:ok, _} = Repo.update(change)
444
445 data =
446 new_data
447 |> Map.put("id", object.id)
448
449 render(conn, StatusView, "attachment.json", %{attachment: data})
450 end
451 end
452
453 def upload(%{assigns: %{user: _}} = conn, %{"file" => file} = data) do
454 with {:ok, object} <- ActivityPub.upload(file, description: Map.get(data, "description")) do
455 change = Object.change(object, %{data: object.data})
456 {:ok, object} = Repo.update(change)
457
458 objdata =
459 object.data
460 |> Map.put("id", object.id)
461
462 render(conn, StatusView, "attachment.json", %{attachment: objdata})
463 end
464 end
465
466 def favourited_by(conn, %{"id" => id}) do
467 with %Activity{data: %{"object" => %{"likes" => likes}}} <- Repo.get(Activity, id) do
468 q = from(u in User, where: u.ap_id in ^likes)
469 users = Repo.all(q)
470 render(conn, AccountView, "accounts.json", %{users: users, as: :user})
471 else
472 _ -> json(conn, [])
473 end
474 end
475
476 def reblogged_by(conn, %{"id" => id}) do
477 with %Activity{data: %{"object" => %{"announcements" => announces}}} <- Repo.get(Activity, id) do
478 q = from(u in User, where: u.ap_id in ^announces)
479 users = Repo.all(q)
480 render(conn, AccountView, "accounts.json", %{users: users, as: :user})
481 else
482 _ -> json(conn, [])
483 end
484 end
485
486 def hashtag_timeline(%{assigns: %{user: user}} = conn, params) do
487 local_only = params["local"] in [true, "True", "true", "1"]
488
489 params =
490 params
491 |> Map.put("type", "Create")
492 |> Map.put("local_only", local_only)
493 |> Map.put("blocking_user", user)
494 |> Map.put("tag", String.downcase(params["tag"]))
495
496 activities =
497 ActivityPub.fetch_public_activities(params)
498 |> Enum.reverse()
499
500 conn
501 |> add_link_headers(:hashtag_timeline, activities, params["tag"], %{"local" => local_only})
502 |> render(StatusView, "index.json", %{activities: activities, for: user, as: :activity})
503 end
504
505 def followers(conn, %{"id" => id}) do
506 with %User{} = user <- Repo.get(User, id),
507 {:ok, followers} <- User.get_followers(user) do
508 followers = if(user.info.hide_network, do: [], else: followers)
509 render(conn, AccountView, "accounts.json", %{users: followers, as: :user})
510 end
511 end
512
513 def following(conn, %{"id" => id}) do
514 with %User{} = user <- Repo.get(User, id),
515 {:ok, followers} <- User.get_friends(user) do
516 followers = if(user.info.hide_network, do: [], else: followers)
517 render(conn, AccountView, "accounts.json", %{users: followers, as: :user})
518 end
519 end
520
521 def follow_requests(%{assigns: %{user: followed}} = conn, _params) do
522 with {:ok, follow_requests} <- User.get_follow_requests(followed) do
523 render(conn, AccountView, "accounts.json", %{users: follow_requests, as: :user})
524 end
525 end
526
527 def authorize_follow_request(%{assigns: %{user: followed}} = conn, %{"id" => id}) do
528 with %User{} = follower <- Repo.get(User, id),
529 {:ok, follower} <- User.maybe_follow(follower, followed),
530 %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
531 {:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "accept"),
532 {:ok, _activity} <-
533 ActivityPub.accept(%{
534 to: [follower.ap_id],
535 actor: followed.ap_id,
536 object: follow_activity.data["id"],
537 type: "Accept"
538 }) do
539 render(conn, AccountView, "relationship.json", %{user: followed, target: follower})
540 else
541 {:error, message} ->
542 conn
543 |> put_resp_content_type("application/json")
544 |> send_resp(403, Jason.encode!(%{"error" => message}))
545 end
546 end
547
548 def reject_follow_request(%{assigns: %{user: followed}} = conn, %{"id" => id}) do
549 with %User{} = follower <- Repo.get(User, id),
550 %Activity{} = follow_activity <- Utils.fetch_latest_follow(follower, followed),
551 {:ok, follow_activity} <- Utils.update_follow_state(follow_activity, "reject"),
552 {:ok, _activity} <-
553 ActivityPub.reject(%{
554 to: [follower.ap_id],
555 actor: followed.ap_id,
556 object: follow_activity.data["id"],
557 type: "Reject"
558 }) do
559 render(conn, AccountView, "relationship.json", %{user: followed, target: follower})
560 else
561 {:error, message} ->
562 conn
563 |> put_resp_content_type("application/json")
564 |> send_resp(403, Jason.encode!(%{"error" => message}))
565 end
566 end
567
568 def follow(%{assigns: %{user: follower}} = conn, %{"id" => id}) do
569 with %User{} = followed <- Repo.get(User, id),
570 {:ok, follower} <- User.maybe_direct_follow(follower, followed),
571 {:ok, _activity} <- ActivityPub.follow(follower, followed),
572 {:ok, follower, followed} <-
573 User.wait_and_refresh(
574 Pleroma.Config.get([:activitypub, :follow_handshake_timeout]),
575 follower,
576 followed
577 ) do
578 render(conn, AccountView, "relationship.json", %{user: follower, target: followed})
579 else
580 {:error, message} ->
581 conn
582 |> put_resp_content_type("application/json")
583 |> send_resp(403, Jason.encode!(%{"error" => message}))
584 end
585 end
586
587 def follow(%{assigns: %{user: follower}} = conn, %{"uri" => uri}) do
588 with %User{} = followed <- Repo.get_by(User, nickname: uri),
589 {:ok, follower} <- User.maybe_direct_follow(follower, followed),
590 {:ok, _activity} <- ActivityPub.follow(follower, followed) do
591 render(conn, AccountView, "account.json", %{user: followed, for: follower})
592 else
593 {:error, message} ->
594 conn
595 |> put_resp_content_type("application/json")
596 |> send_resp(403, Jason.encode!(%{"error" => message}))
597 end
598 end
599
600 def unfollow(%{assigns: %{user: follower}} = conn, %{"id" => id}) do
601 with %User{} = followed <- Repo.get(User, id),
602 {:ok, _activity} <- ActivityPub.unfollow(follower, followed),
603 {:ok, follower, _} <- User.unfollow(follower, followed) do
604 render(conn, AccountView, "relationship.json", %{user: follower, target: followed})
605 end
606 end
607
608 def block(%{assigns: %{user: blocker}} = conn, %{"id" => id}) do
609 with %User{} = blocked <- Repo.get(User, id),
610 {:ok, blocker} <- User.block(blocker, blocked),
611 {:ok, _activity} <- ActivityPub.block(blocker, blocked) do
612 render(conn, AccountView, "relationship.json", %{user: blocker, target: blocked})
613 else
614 {:error, message} ->
615 conn
616 |> put_resp_content_type("application/json")
617 |> send_resp(403, Jason.encode!(%{"error" => message}))
618 end
619 end
620
621 def unblock(%{assigns: %{user: blocker}} = conn, %{"id" => id}) do
622 with %User{} = blocked <- Repo.get(User, id),
623 {:ok, blocker} <- User.unblock(blocker, blocked),
624 {:ok, _activity} <- ActivityPub.unblock(blocker, blocked) do
625 render(conn, AccountView, "relationship.json", %{user: blocker, target: blocked})
626 else
627 {:error, message} ->
628 conn
629 |> put_resp_content_type("application/json")
630 |> send_resp(403, Jason.encode!(%{"error" => message}))
631 end
632 end
633
634 # TODO: Use proper query
635 def blocks(%{assigns: %{user: user}} = conn, _) do
636 with blocked_users <- user.info.blocks || [],
637 accounts <- Enum.map(blocked_users, fn ap_id -> User.get_cached_by_ap_id(ap_id) end) do
638 res = AccountView.render("accounts.json", users: accounts, for: user, as: :user)
639 json(conn, res)
640 end
641 end
642
643 def domain_blocks(%{assigns: %{user: %{info: info}}} = conn, _) do
644 json(conn, info.domain_blocks || [])
645 end
646
647 def block_domain(%{assigns: %{user: blocker}} = conn, %{"domain" => domain}) do
648 User.block_domain(blocker, domain)
649 json(conn, %{})
650 end
651
652 def unblock_domain(%{assigns: %{user: blocker}} = conn, %{"domain" => domain}) do
653 User.unblock_domain(blocker, domain)
654 json(conn, %{})
655 end
656
657 def status_search(query) do
658 fetched =
659 if Regex.match?(~r/https?:/, query) do
660 with {:ok, object} <- ActivityPub.fetch_object_from_id(query) do
661 [Activity.get_create_activity_by_object_ap_id(object.data["id"])]
662 else
663 _e -> []
664 end
665 end || []
666
667 q =
668 from(
669 a in Activity,
670 where: fragment("?->>'type' = 'Create'", a.data),
671 where: "https://www.w3.org/ns/activitystreams#Public" in a.recipients,
672 where:
673 fragment(
674 "to_tsvector('english', ?->'object'->>'content') @@ plainto_tsquery('english', ?)",
675 a.data,
676 ^query
677 ),
678 limit: 20,
679 order_by: [desc: :id]
680 )
681
682 Repo.all(q) ++ fetched
683 end
684
685 def search2(%{assigns: %{user: user}} = conn, %{"q" => query} = params) do
686 accounts = User.search(query, params["resolve"] == "true")
687
688 statuses = status_search(query)
689
690 tags_path = Web.base_url() <> "/tag/"
691
692 tags =
693 String.split(query)
694 |> Enum.uniq()
695 |> Enum.filter(fn tag -> String.starts_with?(tag, "#") end)
696 |> Enum.map(fn tag -> String.slice(tag, 1..-1) end)
697 |> Enum.map(fn tag -> %{name: tag, url: tags_path <> tag} end)
698
699 res = %{
700 "accounts" => AccountView.render("accounts.json", users: accounts, for: user, as: :user),
701 "statuses" =>
702 StatusView.render("index.json", activities: statuses, for: user, as: :activity),
703 "hashtags" => tags
704 }
705
706 json(conn, res)
707 end
708
709 def search(%{assigns: %{user: user}} = conn, %{"q" => query} = params) do
710 accounts = User.search(query, params["resolve"] == "true")
711
712 statuses = status_search(query)
713
714 tags =
715 String.split(query)
716 |> Enum.uniq()
717 |> Enum.filter(fn tag -> String.starts_with?(tag, "#") end)
718 |> Enum.map(fn tag -> String.slice(tag, 1..-1) end)
719
720 res = %{
721 "accounts" => AccountView.render("accounts.json", users: accounts, for: user, as: :user),
722 "statuses" =>
723 StatusView.render("index.json", activities: statuses, for: user, as: :activity),
724 "hashtags" => tags
725 }
726
727 json(conn, res)
728 end
729
730 def account_search(%{assigns: %{user: user}} = conn, %{"q" => query} = params) do
731 accounts = User.search(query, params["resolve"] == "true")
732
733 res = AccountView.render("accounts.json", users: accounts, for: user, as: :user)
734
735 json(conn, res)
736 end
737
738 def favourites(%{assigns: %{user: user}} = conn, _) do
739 params =
740 %{}
741 |> Map.put("type", "Create")
742 |> Map.put("favorited_by", user.ap_id)
743 |> Map.put("blocking_user", user)
744
745 activities =
746 ActivityPub.fetch_public_activities(params)
747 |> Enum.reverse()
748
749 conn
750 |> render(StatusView, "index.json", %{activities: activities, for: user, as: :activity})
751 end
752
753 def get_lists(%{assigns: %{user: user}} = conn, opts) do
754 lists = Pleroma.List.for_user(user, opts)
755 res = ListView.render("lists.json", lists: lists)
756 json(conn, res)
757 end
758
759 def get_list(%{assigns: %{user: user}} = conn, %{"id" => id}) do
760 with %Pleroma.List{} = list <- Pleroma.List.get(id, user) do
761 res = ListView.render("list.json", list: list)
762 json(conn, res)
763 else
764 _e -> json(conn, "error")
765 end
766 end
767
768 def account_lists(%{assigns: %{user: user}} = conn, %{"id" => account_id}) do
769 lists = Pleroma.List.get_lists_account_belongs(user, account_id)
770 res = ListView.render("lists.json", lists: lists)
771 json(conn, res)
772 end
773
774 def delete_list(%{assigns: %{user: user}} = conn, %{"id" => id}) do
775 with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
776 {:ok, _list} <- Pleroma.List.delete(list) do
777 json(conn, %{})
778 else
779 _e ->
780 json(conn, "error")
781 end
782 end
783
784 def create_list(%{assigns: %{user: user}} = conn, %{"title" => title}) do
785 with {:ok, %Pleroma.List{} = list} <- Pleroma.List.create(title, user) do
786 res = ListView.render("list.json", list: list)
787 json(conn, res)
788 end
789 end
790
791 def add_to_list(%{assigns: %{user: user}} = conn, %{"id" => id, "account_ids" => accounts}) do
792 accounts
793 |> Enum.each(fn account_id ->
794 with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
795 %User{} = followed <- Repo.get(User, account_id) do
796 Pleroma.List.follow(list, followed)
797 end
798 end)
799
800 json(conn, %{})
801 end
802
803 def remove_from_list(%{assigns: %{user: user}} = conn, %{"id" => id, "account_ids" => accounts}) do
804 accounts
805 |> Enum.each(fn account_id ->
806 with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
807 %User{} = followed <- Repo.get(Pleroma.User, account_id) do
808 Pleroma.List.unfollow(list, followed)
809 end
810 end)
811
812 json(conn, %{})
813 end
814
815 def list_accounts(%{assigns: %{user: user}} = conn, %{"id" => id}) do
816 with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
817 {:ok, users} = Pleroma.List.get_following(list) do
818 render(conn, AccountView, "accounts.json", %{users: users, as: :user})
819 end
820 end
821
822 def rename_list(%{assigns: %{user: user}} = conn, %{"id" => id, "title" => title}) do
823 with %Pleroma.List{} = list <- Pleroma.List.get(id, user),
824 {:ok, list} <- Pleroma.List.rename(list, title) do
825 res = ListView.render("list.json", list: list)
826 json(conn, res)
827 else
828 _e ->
829 json(conn, "error")
830 end
831 end
832
833 def list_timeline(%{assigns: %{user: user}} = conn, %{"list_id" => id} = params) do
834 with %Pleroma.List{title: title, following: following} <- Pleroma.List.get(id, user) do
835 params =
836 params
837 |> Map.put("type", "Create")
838 |> Map.put("blocking_user", user)
839
840 # we must filter the following list for the user to avoid leaking statuses the user
841 # does not actually have permission to see (for more info, peruse security issue #270).
842 following_to =
843 following
844 |> Enum.filter(fn x -> x in user.following end)
845
846 activities =
847 ActivityPub.fetch_activities_bounded(following_to, following, params)
848 |> Enum.reverse()
849
850 conn
851 |> render(StatusView, "index.json", %{activities: activities, for: user, as: :activity})
852 else
853 _e ->
854 conn
855 |> put_status(403)
856 |> json(%{error: "Error."})
857 end
858 end
859
860 def index(%{assigns: %{user: user}} = conn, _params) do
861 token =
862 conn
863 |> get_session(:oauth_token)
864
865 if user && token do
866 mastodon_emoji = mastodonized_emoji()
867
868 limit = Pleroma.Config.get([:instance, :limit])
869
870 accounts =
871 Map.put(%{}, user.id, AccountView.render("account.json", %{user: user, for: user}))
872
873 initial_state =
874 %{
875 meta: %{
876 streaming_api_base_url:
877 String.replace(Pleroma.Web.Endpoint.static_url(), "http", "ws"),
878 access_token: token,
879 locale: "en",
880 domain: Pleroma.Web.Endpoint.host(),
881 admin: "1",
882 me: "#{user.id}",
883 unfollow_modal: false,
884 boost_modal: false,
885 delete_modal: true,
886 auto_play_gif: false,
887 display_sensitive_media: false,
888 reduce_motion: false,
889 max_toot_chars: limit
890 },
891 rights: %{
892 delete_others_notice: !!user.info.is_moderator
893 },
894 compose: %{
895 me: "#{user.id}",
896 default_privacy: user.info.default_scope,
897 default_sensitive: false
898 },
899 media_attachments: %{
900 accept_content_types: [
901 ".jpg",
902 ".jpeg",
903 ".png",
904 ".gif",
905 ".webm",
906 ".mp4",
907 ".m4v",
908 "image\/jpeg",
909 "image\/png",
910 "image\/gif",
911 "video\/webm",
912 "video\/mp4"
913 ]
914 },
915 settings:
916 Map.get(user.info, :settings) ||
917 %{
918 onboarded: true,
919 home: %{
920 shows: %{
921 reblog: true,
922 reply: true
923 }
924 },
925 notifications: %{
926 alerts: %{
927 follow: true,
928 favourite: true,
929 reblog: true,
930 mention: true
931 },
932 shows: %{
933 follow: true,
934 favourite: true,
935 reblog: true,
936 mention: true
937 },
938 sounds: %{
939 follow: true,
940 favourite: true,
941 reblog: true,
942 mention: true
943 }
944 }
945 },
946 push_subscription: nil,
947 accounts: accounts,
948 custom_emojis: mastodon_emoji,
949 char_limit: limit
950 }
951 |> Jason.encode!()
952
953 conn
954 |> put_layout(false)
955 |> render(MastodonView, "index.html", %{initial_state: initial_state})
956 else
957 conn
958 |> redirect(to: "/web/login")
959 end
960 end
961
962 def put_settings(%{assigns: %{user: user}} = conn, %{"data" => settings} = _params) do
963 with new_info <- Map.put(user.info, "settings", settings),
964 change <- User.info_changeset(user, %{info: new_info}),
965 {:ok, _user} <- User.update_and_set_cache(change) do
966 conn
967 |> json(%{})
968 else
969 e ->
970 conn
971 |> json(%{error: inspect(e)})
972 end
973 end
974
975 def login(conn, %{"code" => code}) do
976 with {:ok, app} <- get_or_make_app(),
977 %Authorization{} = auth <- Repo.get_by(Authorization, token: code, app_id: app.id),
978 {:ok, token} <- Token.exchange_token(app, auth) do
979 conn
980 |> put_session(:oauth_token, token.token)
981 |> redirect(to: "/web/getting-started")
982 end
983 end
984
985 def login(conn, _) do
986 with {:ok, app} <- get_or_make_app() do
987 path =
988 o_auth_path(conn, :authorize,
989 response_type: "code",
990 client_id: app.client_id,
991 redirect_uri: ".",
992 scope: app.scopes
993 )
994
995 conn
996 |> redirect(to: path)
997 end
998 end
999
1000 defp get_or_make_app() do
1001 with %App{} = app <- Repo.get_by(App, client_name: "Mastodon-Local") do
1002 {:ok, app}
1003 else
1004 _e ->
1005 cs =
1006 App.register_changeset(%App{}, %{
1007 client_name: "Mastodon-Local",
1008 redirect_uris: ".",
1009 scopes: "read,write,follow"
1010 })
1011
1012 Repo.insert(cs)
1013 end
1014 end
1015
1016 def logout(conn, _) do
1017 conn
1018 |> clear_session
1019 |> redirect(to: "/")
1020 end
1021
1022 def relationship_noop(%{assigns: %{user: user}} = conn, %{"id" => id}) do
1023 Logger.debug("Unimplemented, returning unmodified relationship")
1024
1025 with %User{} = target <- Repo.get(User, id) do
1026 render(conn, AccountView, "relationship.json", %{user: user, target: target})
1027 end
1028 end
1029
1030 def empty_array(conn, _) do
1031 Logger.debug("Unimplemented, returning an empty array")
1032 json(conn, [])
1033 end
1034
1035 def empty_object(conn, _) do
1036 Logger.debug("Unimplemented, returning an empty object")
1037 json(conn, %{})
1038 end
1039
1040 def render_notification(user, %{id: id, activity: activity, inserted_at: created_at} = _params) do
1041 actor = User.get_cached_by_ap_id(activity.data["actor"])
1042
1043 created_at =
1044 NaiveDateTime.to_iso8601(created_at)
1045 |> String.replace(~r/(\.\d+)?$/, ".000Z", global: false)
1046
1047 id = id |> to_string
1048
1049 case activity.data["type"] do
1050 "Create" ->
1051 %{
1052 id: id,
1053 type: "mention",
1054 created_at: created_at,
1055 account: AccountView.render("account.json", %{user: actor, for: user}),
1056 status: StatusView.render("status.json", %{activity: activity, for: user})
1057 }
1058
1059 "Like" ->
1060 liked_activity = Activity.get_create_activity_by_object_ap_id(activity.data["object"])
1061
1062 %{
1063 id: id,
1064 type: "favourite",
1065 created_at: created_at,
1066 account: AccountView.render("account.json", %{user: actor, for: user}),
1067 status: StatusView.render("status.json", %{activity: liked_activity, for: user})
1068 }
1069
1070 "Announce" ->
1071 announced_activity = Activity.get_create_activity_by_object_ap_id(activity.data["object"])
1072
1073 %{
1074 id: id,
1075 type: "reblog",
1076 created_at: created_at,
1077 account: AccountView.render("account.json", %{user: actor, for: user}),
1078 status: StatusView.render("status.json", %{activity: announced_activity, for: user})
1079 }
1080
1081 "Follow" ->
1082 %{
1083 id: id,
1084 type: "follow",
1085 created_at: created_at,
1086 account: AccountView.render("account.json", %{user: actor, for: user})
1087 }
1088
1089 _ ->
1090 nil
1091 end
1092 end
1093
1094 def get_filters(%{assigns: %{user: user}} = conn, _) do
1095 filters = Pleroma.Filter.get_filters(user)
1096 res = FilterView.render("filters.json", filters: filters)
1097 json(conn, res)
1098 end
1099
1100 def create_filter(
1101 %{assigns: %{user: user}} = conn,
1102 %{"phrase" => phrase, "context" => context} = params
1103 ) do
1104 query = %Pleroma.Filter{
1105 user_id: user.id,
1106 phrase: phrase,
1107 context: context,
1108 hide: Map.get(params, "irreversible", nil),
1109 whole_word: Map.get(params, "boolean", true)
1110 # expires_at
1111 }
1112
1113 {:ok, response} = Pleroma.Filter.create(query)
1114 res = FilterView.render("filter.json", filter: response)
1115 json(conn, res)
1116 end
1117
1118 def get_filter(%{assigns: %{user: user}} = conn, %{"id" => filter_id}) do
1119 filter = Pleroma.Filter.get(filter_id, user)
1120 res = FilterView.render("filter.json", filter: filter)
1121 json(conn, res)
1122 end
1123
1124 def update_filter(
1125 %{assigns: %{user: user}} = conn,
1126 %{"phrase" => phrase, "context" => context, "id" => filter_id} = params
1127 ) do
1128 query = %Pleroma.Filter{
1129 user_id: user.id,
1130 filter_id: filter_id,
1131 phrase: phrase,
1132 context: context,
1133 hide: Map.get(params, "irreversible", nil),
1134 whole_word: Map.get(params, "boolean", true)
1135 # expires_at
1136 }
1137
1138 {:ok, response} = Pleroma.Filter.update(query)
1139 res = FilterView.render("filter.json", filter: response)
1140 json(conn, res)
1141 end
1142
1143 def delete_filter(%{assigns: %{user: user}} = conn, %{"id" => filter_id}) do
1144 query = %Pleroma.Filter{
1145 user_id: user.id,
1146 filter_id: filter_id
1147 }
1148
1149 {:ok, _} = Pleroma.Filter.delete(query)
1150 json(conn, %{})
1151 end
1152
1153 def errors(conn, _) do
1154 conn
1155 |> put_status(500)
1156 |> json("Something went wrong")
1157 end
1158
1159 def suggestions(%{assigns: %{user: user}} = conn, _) do
1160 suggestions = Pleroma.Config.get(:suggestions)
1161
1162 if Keyword.get(suggestions, :enabled, false) do
1163 api = Keyword.get(suggestions, :third_party_engine, "")
1164 timeout = Keyword.get(suggestions, :timeout, 5000)
1165 limit = Keyword.get(suggestions, :limit, 23)
1166
1167 host = Pleroma.Config.get([Pleroma.Web.Endpoint, :url, :host])
1168
1169 user = user.nickname
1170 url = String.replace(api, "{{host}}", host) |> String.replace("{{user}}", user)
1171
1172 with {:ok, %{status_code: 200, body: body}} <-
1173 @httpoison.get(url, [], timeout: timeout, recv_timeout: timeout),
1174 {:ok, data} <- Jason.decode(body) do
1175 data2 =
1176 Enum.slice(data, 0, limit)
1177 |> Enum.map(fn x ->
1178 Map.put(
1179 x,
1180 "id",
1181 case User.get_or_fetch(x["acct"]) do
1182 %{id: id} -> id
1183 _ -> 0
1184 end
1185 )
1186 end)
1187 |> Enum.map(fn x ->
1188 Map.put(x, "avatar", MediaProxy.url(x["avatar"]))
1189 end)
1190 |> Enum.map(fn x ->
1191 Map.put(x, "avatar_static", MediaProxy.url(x["avatar_static"]))
1192 end)
1193
1194 conn
1195 |> json(data2)
1196 else
1197 e -> Logger.error("Could not retrieve suggestions at fetch #{url}, #{inspect(e)}")
1198 end
1199 else
1200 json(conn, [])
1201 end
1202 end
1203
1204 def try_render(conn, renderer, target, params)
1205 when is_binary(target) do
1206 res = render(conn, renderer, target, params)
1207
1208 if res == nil do
1209 conn
1210 |> put_status(501)
1211 |> json(%{error: "Can't display this activity"})
1212 else
1213 res
1214 end
1215 end
1216
1217 def try_render(conn, _, _, _) do
1218 conn
1219 |> put_status(501)
1220 |> json(%{error: "Can't display this activity"})
1221 end
1222 end