1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.CommonAPI.Utils do
6 alias Calendar.Strftime
10 alias Pleroma.Formatter
14 alias Pleroma.Web.ActivityPub.Utils
15 alias Pleroma.Web.ActivityPub.Visibility
16 alias Pleroma.Web.Endpoint
17 alias Pleroma.Web.MediaProxy
21 # This is a hack for twidere.
22 def get_by_id_or_ap_id(id) do
24 Activity.get_by_id_with_object(id) || Activity.get_create_by_object_ap_id_with_object(id)
27 if activity.data["type"] == "Create" do
30 Activity.get_create_by_object_ap_id_with_object(activity.data["object"])
34 def get_replied_to_activity(""), do: nil
36 def get_replied_to_activity(id) when not is_nil(id) do
37 Activity.get_by_id(id)
40 def get_replied_to_activity(_), do: nil
42 def attachments_from_ids(data) do
43 if Map.has_key?(data, "descriptions") do
44 attachments_from_ids_descs(data["media_ids"], data["descriptions"])
46 attachments_from_ids_no_descs(data["media_ids"])
50 def attachments_from_ids_no_descs(ids) do
51 Enum.map(ids || [], fn media_id ->
52 Repo.get(Object, media_id).data
56 def attachments_from_ids_descs(ids, descs_str) do
57 {_, descs} = Jason.decode(descs_str)
59 Enum.map(ids || [], fn media_id ->
60 Map.put(Repo.get(Object, media_id).data, "name", descs[media_id])
64 def to_for_user_and_mentions(user, mentions, inReplyTo, "public") do
65 mentioned_users = Enum.map(mentions, fn {_, %{ap_id: ap_id}} -> ap_id end)
67 to = ["https://www.w3.org/ns/activitystreams#Public" | mentioned_users]
68 cc = [user.follower_address]
71 {Enum.uniq([inReplyTo.data["actor"] | to]), cc}
77 def to_for_user_and_mentions(user, mentions, inReplyTo, "unlisted") do
78 mentioned_users = Enum.map(mentions, fn {_, %{ap_id: ap_id}} -> ap_id end)
80 to = [user.follower_address | mentioned_users]
81 cc = ["https://www.w3.org/ns/activitystreams#Public"]
84 {Enum.uniq([inReplyTo.data["actor"] | to]), cc}
90 def to_for_user_and_mentions(user, mentions, inReplyTo, "private") do
91 {to, cc} = to_for_user_and_mentions(user, mentions, inReplyTo, "direct")
92 {[user.follower_address | to], cc}
95 def to_for_user_and_mentions(_user, mentions, inReplyTo, "direct") do
96 mentioned_users = Enum.map(mentions, fn {_, %{ap_id: ap_id}} -> ap_id end)
99 {Enum.uniq([inReplyTo.data["actor"] | mentioned_users]), []}
101 {mentioned_users, []}
105 def make_content_html(
111 no_attachment_links =
113 |> Map.get("no_attachment_links", Config.get([:instance, :no_attachment_links]))
114 |> Kernel.in([true, "true"])
116 content_type = get_content_type(data["content_type"])
119 if visibility == "direct" && Config.get([:instance, :safe_dm_mentions]) do
126 |> format_input(content_type, options)
127 |> maybe_add_attachments(attachments, no_attachment_links)
128 |> maybe_add_nsfw_tag(data)
131 defp get_content_type(content_type) do
132 if Enum.member?(Config.get([:instance, :allowed_post_formats]), content_type) do
139 defp maybe_add_nsfw_tag({text, mentions, tags}, %{"sensitive" => sensitive})
140 when sensitive in [true, "True", "true", "1"] do
141 {text, mentions, [{"#nsfw", "nsfw"} | tags]}
144 defp maybe_add_nsfw_tag(data, _), do: data
146 def make_context(%Activity{data: %{"context" => context}}), do: context
147 def make_context(_), do: Utils.generate_context_id()
149 def maybe_add_attachments(parsed, _attachments, true = _no_links), do: parsed
151 def maybe_add_attachments({text, mentions, tags}, attachments, _no_links) do
152 text = add_attachments(text, attachments)
153 {text, mentions, tags}
156 def add_attachments(text, attachments) do
158 Enum.map(attachments, fn
159 %{"url" => [%{"href" => href} | _]} = attachment ->
160 name = attachment["name"] || URI.decode(Path.basename(href))
161 href = MediaProxy.url(href)
162 "<a href=\"#{href}\" class='attachment'>#{shortname(name)}</a>"
168 Enum.join([text | attachment_text], "<br>")
171 def format_input(text, format, options \\ [])
174 Formatting text to plain text.
176 def format_input(text, "text/plain", options) do
178 |> Formatter.html_escape("text/plain")
179 |> Formatter.linkify(options)
180 |> (fn {text, mentions, tags} ->
181 {String.replace(text, ~r/\r?\n/, "<br>"), mentions, tags}
186 Formatting text to html.
188 def format_input(text, "text/html", options) do
190 |> Formatter.html_escape("text/html")
191 |> Formatter.linkify(options)
195 Formatting text to markdown.
197 def format_input(text, "text/markdown", options) do
198 options = Keyword.put(options, :mentions_escape, true)
201 |> Formatter.linkify(options)
202 |> (fn {text, mentions, tags} -> {Earmark.as_html!(text), mentions, tags} end).()
203 |> Formatter.html_escape("text/html")
221 "content" => content_html,
223 "context" => context,
224 "attachment" => attachments,
226 "tag" => tags |> Enum.map(fn {_, tag} -> tag end) |> Enum.uniq()
231 |> Map.put("inReplyTo", inReplyTo.data["object"]["id"])
232 |> Map.put("inReplyToStatusId", inReplyTo.id)
238 def format_naive_asctime(date) do
239 date |> DateTime.from_naive!("Etc/UTC") |> format_asctime
242 def format_asctime(date) do
243 Strftime.strftime!(date, "%a %b %d %H:%M:%S %z %Y")
246 def date_to_asctime(date) when is_binary(date) do
247 with {:ok, date, _offset} <- DateTime.from_iso8601(date) do
251 Logger.warn("Date #{date} in wrong format, must be ISO 8601")
256 def date_to_asctime(date) do
257 Logger.warn("Date #{date} in wrong format, must be ISO 8601")
261 def to_masto_date(%NaiveDateTime{} = date) do
263 |> NaiveDateTime.to_iso8601()
264 |> String.replace(~r/(\.\d+)?$/, ".000Z", global: false)
267 def to_masto_date(date) do
270 |> NaiveDateTime.from_iso8601!()
271 |> NaiveDateTime.to_iso8601()
272 |> String.replace(~r/(\.\d+)?$/, ".000Z", global: false)
278 defp shortname(name) do
279 if String.length(name) < 30 do
282 String.slice(name, 0..30) <> "…"
286 def confirm_current_password(user, password) do
287 with %User{local: true} = db_user <- User.get_by_id(user.id),
288 true <- Pbkdf2.checkpw(password, db_user.password_hash) do
291 _ -> {:error, "Invalid password."}
295 def emoji_from_profile(%{info: _info} = user) do
296 (Formatter.get_emoji(user.bio) ++ Formatter.get_emoji(user.name))
297 |> Enum.map(fn {shortcode, url, _} ->
300 "icon" => %{"type" => "Image", "url" => "#{Endpoint.url()}#{url}"},
301 "name" => ":#{shortcode}:"
306 def maybe_notify_to_recipients(
308 %Activity{data: %{"to" => to, "type" => _type}} = _activity
313 def maybe_notify_mentioned_recipients(
315 %Activity{data: %{"to" => _to, "type" => type} = data} = activity
317 when type == "Create" do
318 object = Object.normalize(activity)
325 is_map(data["object"]) ->
332 tagged_mentions = maybe_extract_mentions(object_data)
334 recipients ++ tagged_mentions
337 def maybe_notify_mentioned_recipients(recipients, _), do: recipients
339 def maybe_notify_subscribers(
341 %Activity{data: %{"actor" => actor, "type" => type}} = activity
343 when type == "Create" do
344 with %User{} = user <- User.get_cached_by_ap_id(actor) do
347 |> User.subscribers()
348 |> Enum.filter(&Visibility.visible_for_user?(activity, &1))
349 |> Enum.map(& &1.ap_id)
351 recipients ++ subscriber_ids
355 def maybe_notify_subscribers(recipients, _), do: recipients
357 def maybe_extract_mentions(%{"tag" => tag}) do
359 |> Enum.filter(fn x -> is_map(x) end)
360 |> Enum.filter(fn x -> x["type"] == "Mention" end)
361 |> Enum.map(fn x -> x["href"] end)
364 def maybe_extract_mentions(_), do: []
366 def make_report_content_html(nil), do: {:ok, {nil, [], []}}
368 def make_report_content_html(comment) do
369 max_size = Pleroma.Config.get([:instance, :max_report_comment_size], 1000)
371 if String.length(comment) <= max_size do
372 {:ok, format_input(comment, "text/plain")}
374 {:error, "Comment must be up to #{max_size} characters"}
378 def get_report_statuses(%User{ap_id: actor}, %{"status_ids" => status_ids}) do
379 {:ok, Activity.all_by_actor_and_id(actor, status_ids)}
382 def get_report_statuses(_, _), do: {:ok, nil}
384 # DEPRECATED mostly, context objects are now created at insertion time.
385 def context_to_conversation_id(context) do
386 with %Object{id: id} <- Object.get_cached_by_ap_id(context) do
390 changeset = Object.context_mapping(context)
392 case Repo.insert(changeset) do
396 # This should be solved by an upsert, but it seems ecto
397 # has problems accessing the constraint inside the jsonb.
399 Object.get_cached_by_ap_id(context).id
404 def conversation_id_to_context(id) do
405 with %Object{data: %{"id" => context}} <- Repo.get(Object, id) do
409 {:error, "No such conversation"}