2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2019-01-04 15:35:41 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
defmodule Pleroma.Web.CommonAPI.Utils do
|
2019-07-10 09:25:58 +00:00
|
|
|
import Pleroma.Web.Gettext
|
|
|
|
|
2018-12-11 12:31:52 +00:00
|
|
|
alias Calendar.Strftime
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Activity
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Config
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Formatter
|
|
|
|
alias Pleroma.Object
|
2019-07-14 16:48:42 +00:00
|
|
|
alias Pleroma.Plugs.AuthenticationPlug
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Repo
|
2018-12-11 12:31:52 +00:00
|
|
|
alias Pleroma.User
|
2017-05-17 16:00:20 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-04-07 14:11:29 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.Visibility
|
2018-08-12 19:24:10 +00:00
|
|
|
alias Pleroma.Web.Endpoint
|
2018-10-29 17:26:15 +00:00
|
|
|
alias Pleroma.Web.MediaProxy
|
2017-05-17 16:00:20 +00:00
|
|
|
|
2019-04-02 09:25:51 +00:00
|
|
|
require Logger
|
2017-05-17 16:00:20 +00:00
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
# This is a hack for twidere.
|
|
|
|
def get_by_id_or_ap_id(id) do
|
2019-03-23 00:28:16 +00:00
|
|
|
activity =
|
|
|
|
Activity.get_by_id_with_object(id) || Activity.get_create_by_object_ap_id_with_object(id)
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-06-03 17:11:22 +00:00
|
|
|
activity &&
|
|
|
|
if activity.data["type"] == "Create" do
|
|
|
|
activity
|
|
|
|
else
|
2019-03-23 00:22:14 +00:00
|
|
|
Activity.get_create_by_object_ap_id_with_object(activity.data["object"])
|
2018-06-03 17:11:22 +00:00
|
|
|
end
|
2017-09-15 12:17:36 +00:00
|
|
|
end
|
|
|
|
|
2018-11-02 16:33:51 +00:00
|
|
|
def get_replied_to_activity(""), do: nil
|
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
def get_replied_to_activity(id) when not is_nil(id) do
|
2019-04-02 09:50:31 +00:00
|
|
|
Activity.get_by_id(id)
|
2017-09-15 12:17:36 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
def get_replied_to_activity(_), do: nil
|
|
|
|
|
2019-01-04 16:27:46 +00:00
|
|
|
def attachments_from_ids(data) do
|
|
|
|
if Map.has_key?(data, "descriptions") do
|
|
|
|
attachments_from_ids_descs(data["media_ids"], data["descriptions"])
|
|
|
|
else
|
|
|
|
attachments_from_ids_no_descs(data["media_ids"])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def attachments_from_ids_no_descs(ids) do
|
2018-03-30 13:01:53 +00:00
|
|
|
Enum.map(ids || [], fn media_id ->
|
2017-05-17 16:00:20 +00:00
|
|
|
Repo.get(Object, media_id).data
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-01-04 16:27:46 +00:00
|
|
|
def attachments_from_ids_descs(ids, descs_str) do
|
2019-01-04 15:35:41 +00:00
|
|
|
{_, descs} = Jason.decode(descs_str)
|
|
|
|
|
|
|
|
Enum.map(ids || [], fn media_id ->
|
|
|
|
Map.put(Repo.get(Object, media_id).data, "name", descs[media_id])
|
2017-05-17 16:00:20 +00:00
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2019-06-03 16:17:08 +00:00
|
|
|
@spec get_to_and_cc(User.t(), list(String.t()), Activity.t() | nil, String.t()) ::
|
|
|
|
{list(String.t()), list(String.t())}
|
|
|
|
def get_to_and_cc(user, mentioned_users, inReplyTo, "public") do
|
2018-11-08 19:17:01 +00:00
|
|
|
to = ["https://www.w3.org/ns/activitystreams#Public" | mentioned_users]
|
|
|
|
cc = [user.follower_address]
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
if inReplyTo do
|
2018-11-08 19:17:01 +00:00
|
|
|
{Enum.uniq([inReplyTo.data["actor"] | to]), cc}
|
2017-08-28 17:17:38 +00:00
|
|
|
else
|
2018-02-18 13:45:08 +00:00
|
|
|
{to, cc}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-06-03 16:17:08 +00:00
|
|
|
def get_to_and_cc(user, mentioned_users, inReplyTo, "unlisted") do
|
2018-11-08 19:17:01 +00:00
|
|
|
to = [user.follower_address | mentioned_users]
|
|
|
|
cc = ["https://www.w3.org/ns/activitystreams#Public"]
|
|
|
|
|
|
|
|
if inReplyTo do
|
|
|
|
{Enum.uniq([inReplyTo.data["actor"] | to]), cc}
|
|
|
|
else
|
|
|
|
{to, cc}
|
|
|
|
end
|
2018-02-18 13:45:08 +00:00
|
|
|
end
|
|
|
|
|
2019-06-03 16:17:08 +00:00
|
|
|
def get_to_and_cc(user, mentioned_users, inReplyTo, "private") do
|
|
|
|
{to, cc} = get_to_and_cc(user, mentioned_users, inReplyTo, "direct")
|
2018-02-18 13:45:08 +00:00
|
|
|
{[user.follower_address | to], cc}
|
|
|
|
end
|
|
|
|
|
2019-06-03 16:17:08 +00:00
|
|
|
def get_to_and_cc(_user, mentioned_users, inReplyTo, "direct") do
|
2018-02-18 13:45:08 +00:00
|
|
|
if inReplyTo do
|
|
|
|
{Enum.uniq([inReplyTo.data["actor"] | mentioned_users]), []}
|
|
|
|
else
|
|
|
|
{mentioned_users, []}
|
2017-08-28 17:17:38 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-15 07:54:40 +00:00
|
|
|
def get_to_and_cc(_user, mentions, _inReplyTo, {:list, _}), do: {mentions, []}
|
2019-06-05 10:55:00 +00:00
|
|
|
|
2019-06-03 16:17:08 +00:00
|
|
|
def get_addressed_users(_, to) when is_list(to) do
|
|
|
|
User.get_ap_ids_by_nicknames(to)
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_addressed_users(mentioned_users, _), do: mentioned_users
|
2019-05-01 09:11:17 +00:00
|
|
|
|
2019-07-15 07:00:29 +00:00
|
|
|
def maybe_add_list_data(activity_params, user, {:list, list_id}) do
|
2019-07-11 09:36:08 +00:00
|
|
|
case Pleroma.List.get(list_id, user) do
|
|
|
|
%Pleroma.List{} = list ->
|
2019-07-15 07:00:29 +00:00
|
|
|
activity_params
|
|
|
|
|> put_in([:additional, "bcc"], [list.ap_id])
|
|
|
|
|> put_in([:additional, "listMessage"], list.ap_id)
|
|
|
|
|> put_in([:object, "listMessage"], list.ap_id)
|
2019-07-11 09:36:08 +00:00
|
|
|
|
|
|
|
_ ->
|
2019-07-15 07:00:29 +00:00
|
|
|
activity_params
|
2019-07-11 09:36:08 +00:00
|
|
|
end
|
2019-05-01 09:11:17 +00:00
|
|
|
end
|
|
|
|
|
2019-07-15 07:00:29 +00:00
|
|
|
def maybe_add_list_data(activity_params, _, _), do: activity_params
|
2019-05-01 09:11:17 +00:00
|
|
|
|
2019-05-19 14:06:44 +00:00
|
|
|
def make_poll_data(%{"poll" => %{"options" => options, "expires_in" => expires_in}} = data)
|
2019-05-21 14:30:51 +00:00
|
|
|
when is_list(options) do
|
2019-05-21 07:54:20 +00:00
|
|
|
%{max_expiration: max_expiration, min_expiration: min_expiration} =
|
|
|
|
limits = Pleroma.Config.get([:instance, :poll_limits])
|
|
|
|
|
|
|
|
# XXX: There is probably a cleaner way of doing this
|
|
|
|
try do
|
2019-05-21 14:30:51 +00:00
|
|
|
# In some cases mastofe sends out strings instead of integers
|
|
|
|
expires_in = if is_binary(expires_in), do: String.to_integer(expires_in), else: expires_in
|
|
|
|
|
2019-05-21 07:54:20 +00:00
|
|
|
if Enum.count(options) > limits.max_options do
|
|
|
|
raise ArgumentError, message: "Poll can't contain more than #{limits.max_options} options"
|
|
|
|
end
|
|
|
|
|
|
|
|
{poll, emoji} =
|
|
|
|
Enum.map_reduce(options, %{}, fn option, emoji ->
|
|
|
|
if String.length(option) > limits.max_option_chars do
|
|
|
|
raise ArgumentError,
|
|
|
|
message:
|
|
|
|
"Poll options cannot be longer than #{limits.max_option_chars} characters each"
|
|
|
|
end
|
|
|
|
|
|
|
|
{%{
|
|
|
|
"name" => option,
|
|
|
|
"type" => "Note",
|
|
|
|
"replies" => %{"type" => "Collection", "totalItems" => 0}
|
|
|
|
}, Map.merge(emoji, Formatter.get_emoji_map(option))}
|
|
|
|
end)
|
|
|
|
|
|
|
|
case expires_in do
|
|
|
|
expires_in when expires_in > max_expiration ->
|
|
|
|
raise ArgumentError, message: "Expiration date is too far in the future"
|
|
|
|
|
|
|
|
expires_in when expires_in < min_expiration ->
|
|
|
|
raise ArgumentError, message: "Expiration date is too soon"
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
:noop
|
2019-05-18 10:29:28 +00:00
|
|
|
end
|
|
|
|
|
2019-05-21 07:54:20 +00:00
|
|
|
end_time =
|
|
|
|
NaiveDateTime.utc_now()
|
|
|
|
|> NaiveDateTime.add(expires_in)
|
|
|
|
|> NaiveDateTime.to_iso8601()
|
|
|
|
|
|
|
|
poll =
|
|
|
|
if Pleroma.Web.ControllerHelper.truthy_param?(data["poll"]["multiple"]) do
|
|
|
|
%{"type" => "Question", "anyOf" => poll, "closed" => end_time}
|
|
|
|
else
|
|
|
|
%{"type" => "Question", "oneOf" => poll, "closed" => end_time}
|
|
|
|
end
|
|
|
|
|
|
|
|
{poll, emoji}
|
|
|
|
rescue
|
|
|
|
e in ArgumentError -> e.message
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-21 11:19:03 +00:00
|
|
|
def make_poll_data(%{"poll" => poll}) when is_map(poll) do
|
2019-05-21 07:54:20 +00:00
|
|
|
"Invalid poll"
|
2019-05-18 10:29:28 +00:00
|
|
|
end
|
|
|
|
|
2019-05-19 14:06:44 +00:00
|
|
|
def make_poll_data(_data) do
|
|
|
|
{%{}, %{}}
|
2019-05-18 10:29:28 +00:00
|
|
|
end
|
|
|
|
|
2018-09-02 00:14:25 +00:00
|
|
|
def make_content_html(
|
|
|
|
status,
|
|
|
|
attachments,
|
2019-03-20 20:09:36 +00:00
|
|
|
data,
|
|
|
|
visibility
|
2018-09-02 00:14:25 +00:00
|
|
|
) do
|
2019-02-26 23:32:26 +00:00
|
|
|
no_attachment_links =
|
|
|
|
data
|
|
|
|
|> Map.get("no_attachment_links", Config.get([:instance, :no_attachment_links]))
|
|
|
|
|> Kernel.in([true, "true"])
|
|
|
|
|
|
|
|
content_type = get_content_type(data["content_type"])
|
|
|
|
|
2019-03-20 20:09:36 +00:00
|
|
|
options =
|
|
|
|
if visibility == "direct" && Config.get([:instance, :safe_dm_mentions]) do
|
|
|
|
[safe_mention: true]
|
|
|
|
else
|
|
|
|
[]
|
|
|
|
end
|
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
status
|
2019-03-20 20:09:36 +00:00
|
|
|
|> format_input(content_type, options)
|
2017-12-07 18:44:09 +00:00
|
|
|
|> maybe_add_attachments(attachments, no_attachment_links)
|
2019-02-26 23:32:26 +00:00
|
|
|
|> maybe_add_nsfw_tag(data)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp get_content_type(content_type) do
|
|
|
|
if Enum.member?(Config.get([:instance, :allowed_post_formats]), content_type) do
|
|
|
|
content_type
|
|
|
|
else
|
|
|
|
"text/plain"
|
|
|
|
end
|
2017-09-15 12:17:36 +00:00
|
|
|
end
|
|
|
|
|
2019-02-26 23:32:26 +00:00
|
|
|
defp maybe_add_nsfw_tag({text, mentions, tags}, %{"sensitive" => sensitive})
|
|
|
|
when sensitive in [true, "True", "true", "1"] do
|
|
|
|
{text, mentions, [{"#nsfw", "nsfw"} | tags]}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_add_nsfw_tag(data, _), do: data
|
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
def make_context(%Activity{data: %{"context" => context}}), do: context
|
2018-03-30 13:01:53 +00:00
|
|
|
def make_context(_), do: Utils.generate_context_id()
|
2017-09-15 12:17:36 +00:00
|
|
|
|
2019-02-26 23:32:26 +00:00
|
|
|
def maybe_add_attachments(parsed, _attachments, true = _no_links), do: parsed
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-02-26 23:32:26 +00:00
|
|
|
def maybe_add_attachments({text, mentions, tags}, attachments, _no_links) do
|
|
|
|
text = add_attachments(text, attachments)
|
|
|
|
{text, mentions, tags}
|
2017-12-07 18:44:09 +00:00
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2017-05-17 16:00:20 +00:00
|
|
|
def add_attachments(text, attachments) do
|
2018-03-30 13:01:53 +00:00
|
|
|
attachment_text =
|
|
|
|
Enum.map(attachments, fn
|
2018-10-29 17:59:24 +00:00
|
|
|
%{"url" => [%{"href" => href} | _]} = attachment ->
|
|
|
|
name = attachment["name"] || URI.decode(Path.basename(href))
|
2018-10-29 17:26:15 +00:00
|
|
|
href = MediaProxy.url(href)
|
2018-03-30 13:01:53 +00:00
|
|
|
"<a href=\"#{href}\" class='attachment'>#{shortname(name)}</a>"
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
""
|
|
|
|
end)
|
|
|
|
|
2017-11-18 12:46:54 +00:00
|
|
|
Enum.join([text | attachment_text], "<br>")
|
2017-05-17 16:00:20 +00:00
|
|
|
end
|
|
|
|
|
2019-02-26 23:32:26 +00:00
|
|
|
def format_input(text, format, options \\ [])
|
2019-01-18 06:30:16 +00:00
|
|
|
|
2018-12-14 09:41:55 +00:00
|
|
|
@doc """
|
|
|
|
Formatting text to plain text.
|
|
|
|
"""
|
2019-02-26 23:32:26 +00:00
|
|
|
def format_input(text, "text/plain", options) do
|
2017-12-07 19:34:25 +00:00
|
|
|
text
|
2018-09-02 00:14:25 +00:00
|
|
|
|> Formatter.html_escape("text/plain")
|
2019-02-26 23:32:26 +00:00
|
|
|
|> Formatter.linkify(options)
|
|
|
|
|> (fn {text, mentions, tags} ->
|
|
|
|
{String.replace(text, ~r/\r?\n/, "<br>"), mentions, tags}
|
|
|
|
end).()
|
2017-09-17 13:21:44 +00:00
|
|
|
end
|
|
|
|
|
2019-04-26 10:17:57 +00:00
|
|
|
@doc """
|
|
|
|
Formatting text as BBCode.
|
|
|
|
"""
|
|
|
|
def format_input(text, "text/bbcode", options) do
|
|
|
|
text
|
|
|
|
|> String.replace(~r/\r/, "")
|
|
|
|
|> Formatter.html_escape("text/plain")
|
|
|
|
|> BBCode.to_html()
|
|
|
|
|> (fn {:ok, html} -> html end).()
|
|
|
|
|> Formatter.linkify(options)
|
|
|
|
end
|
|
|
|
|
2018-12-14 09:41:55 +00:00
|
|
|
@doc """
|
|
|
|
Formatting text to html.
|
|
|
|
"""
|
2019-02-26 23:32:26 +00:00
|
|
|
def format_input(text, "text/html", options) do
|
2018-09-02 00:14:25 +00:00
|
|
|
text
|
|
|
|
|> Formatter.html_escape("text/html")
|
2019-02-26 23:32:26 +00:00
|
|
|
|> Formatter.linkify(options)
|
2018-09-02 00:14:25 +00:00
|
|
|
end
|
|
|
|
|
2018-12-14 09:41:55 +00:00
|
|
|
@doc """
|
|
|
|
Formatting text to markdown.
|
|
|
|
"""
|
2019-02-26 23:32:26 +00:00
|
|
|
def format_input(text, "text/markdown", options) do
|
2018-09-02 00:14:25 +00:00
|
|
|
text
|
2019-04-12 19:25:53 +00:00
|
|
|
|> Formatter.mentions_escape(options)
|
2018-09-02 00:14:25 +00:00
|
|
|
|> Earmark.as_html!()
|
2019-02-26 23:32:26 +00:00
|
|
|
|> Formatter.linkify(options)
|
2018-09-02 00:14:25 +00:00
|
|
|
|> Formatter.html_escape("text/html")
|
2017-05-17 16:00:20 +00:00
|
|
|
end
|
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
def make_note_data(
|
|
|
|
actor,
|
|
|
|
to,
|
|
|
|
context,
|
|
|
|
content_html,
|
|
|
|
attachments,
|
2019-04-17 11:52:01 +00:00
|
|
|
in_reply_to,
|
2018-03-30 13:01:53 +00:00
|
|
|
tags,
|
|
|
|
cw \\ nil,
|
2019-05-17 20:42:51 +00:00
|
|
|
cc \\ [],
|
2019-05-18 10:37:38 +00:00
|
|
|
sensitive \\ false,
|
2019-05-18 10:29:28 +00:00
|
|
|
merge \\ %{}
|
2018-03-30 13:01:53 +00:00
|
|
|
) do
|
|
|
|
object = %{
|
|
|
|
"type" => "Note",
|
|
|
|
"to" => to,
|
|
|
|
"cc" => cc,
|
|
|
|
"content" => content_html,
|
|
|
|
"summary" => cw,
|
2019-05-17 20:43:31 +00:00
|
|
|
"sensitive" => !Enum.member?(["false", "False", "0", false], sensitive),
|
2018-03-30 13:01:53 +00:00
|
|
|
"context" => context,
|
|
|
|
"attachment" => attachments,
|
|
|
|
"actor" => actor,
|
2018-05-23 15:25:24 +00:00
|
|
|
"tag" => tags |> Enum.map(fn {_, tag} -> tag end) |> Enum.uniq()
|
2018-03-30 13:01:53 +00:00
|
|
|
}
|
2017-05-17 16:00:20 +00:00
|
|
|
|
2019-05-18 10:29:28 +00:00
|
|
|
object =
|
2019-05-18 10:37:38 +00:00
|
|
|
with false <- is_nil(in_reply_to),
|
|
|
|
%Object{} = in_reply_to_object <- Object.normalize(in_reply_to) do
|
|
|
|
Map.put(object, "inReplyTo", in_reply_to_object.data["id"])
|
2019-05-18 10:29:28 +00:00
|
|
|
else
|
2019-05-18 10:37:38 +00:00
|
|
|
_ -> object
|
2019-05-18 10:29:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
Map.merge(object, merge)
|
2017-05-17 16:00:20 +00:00
|
|
|
end
|
2017-06-19 21:12:37 +00:00
|
|
|
|
|
|
|
def format_naive_asctime(date) do
|
|
|
|
date |> DateTime.from_naive!("Etc/UTC") |> format_asctime
|
|
|
|
end
|
|
|
|
|
|
|
|
def format_asctime(date) do
|
|
|
|
Strftime.strftime!(date, "%a %b %d %H:%M:%S %z %Y")
|
|
|
|
end
|
|
|
|
|
2019-04-02 09:25:51 +00:00
|
|
|
def date_to_asctime(date) when is_binary(date) do
|
|
|
|
with {:ok, date, _offset} <- DateTime.from_iso8601(date) do
|
2017-06-19 21:12:37 +00:00
|
|
|
format_asctime(date)
|
2018-03-30 13:01:53 +00:00
|
|
|
else
|
|
|
|
_e ->
|
2019-04-02 09:25:51 +00:00
|
|
|
Logger.warn("Date #{date} in wrong format, must be ISO 8601")
|
2017-06-19 21:12:37 +00:00
|
|
|
""
|
|
|
|
end
|
|
|
|
end
|
2017-09-15 12:17:36 +00:00
|
|
|
|
2017-06-19 21:12:37 +00:00
|
|
|
def date_to_asctime(date) do
|
2019-04-02 09:25:51 +00:00
|
|
|
Logger.warn("Date #{date} in wrong format, must be ISO 8601")
|
|
|
|
""
|
2017-06-19 21:12:37 +00:00
|
|
|
end
|
2017-09-15 12:17:36 +00:00
|
|
|
|
2017-09-15 15:50:47 +00:00
|
|
|
def to_masto_date(%NaiveDateTime{} = date) do
|
|
|
|
date
|
2018-03-30 13:01:53 +00:00
|
|
|
|> NaiveDateTime.to_iso8601()
|
2017-09-15 15:50:47 +00:00
|
|
|
|> String.replace(~r/(\.\d+)?$/, ".000Z", global: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_masto_date(date) do
|
|
|
|
try do
|
|
|
|
date
|
2018-03-30 13:01:53 +00:00
|
|
|
|> NaiveDateTime.from_iso8601!()
|
|
|
|
|> NaiveDateTime.to_iso8601()
|
2017-09-15 15:50:47 +00:00
|
|
|
|> String.replace(~r/(\.\d+)?$/, ".000Z", global: false)
|
|
|
|
rescue
|
|
|
|
_e -> ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-15 12:17:36 +00:00
|
|
|
defp shortname(name) do
|
|
|
|
if String.length(name) < 30 do
|
|
|
|
name
|
|
|
|
else
|
|
|
|
String.slice(name, 0..30) <> "…"
|
|
|
|
end
|
|
|
|
end
|
2018-05-11 11:32:59 +00:00
|
|
|
|
2018-05-21 21:17:34 +00:00
|
|
|
def confirm_current_password(user, password) do
|
2019-04-22 07:20:43 +00:00
|
|
|
with %User{local: true} = db_user <- User.get_cached_by_id(user.id),
|
2019-07-14 16:48:42 +00:00
|
|
|
true <- AuthenticationPlug.checkpw(password, db_user.password_hash) do
|
2018-05-13 13:24:15 +00:00
|
|
|
{:ok, db_user}
|
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
_ -> {:error, dgettext("errors", "Invalid password.")}
|
2018-05-11 11:32:59 +00:00
|
|
|
end
|
|
|
|
end
|
2018-08-12 19:24:10 +00:00
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def emoji_from_profile(%{info: _info} = user) do
|
2018-08-12 19:24:10 +00:00
|
|
|
(Formatter.get_emoji(user.bio) ++ Formatter.get_emoji(user.name))
|
2019-04-01 10:17:57 +00:00
|
|
|
|> Enum.map(fn {shortcode, url, _} ->
|
2018-08-12 19:24:10 +00:00
|
|
|
%{
|
|
|
|
"type" => "Emoji",
|
2018-08-13 13:21:18 +00:00
|
|
|
"icon" => %{"type" => "Image", "url" => "#{Endpoint.url()}#{url}"},
|
2018-08-12 19:24:10 +00:00
|
|
|
"name" => ":#{shortcode}:"
|
|
|
|
}
|
|
|
|
end)
|
|
|
|
end
|
2019-01-24 20:30:43 +00:00
|
|
|
|
|
|
|
def maybe_notify_to_recipients(
|
|
|
|
recipients,
|
|
|
|
%Activity{data: %{"to" => to, "type" => _type}} = _activity
|
|
|
|
) do
|
|
|
|
recipients ++ to
|
|
|
|
end
|
|
|
|
|
|
|
|
def maybe_notify_mentioned_recipients(
|
|
|
|
recipients,
|
2019-03-23 00:22:14 +00:00
|
|
|
%Activity{data: %{"to" => _to, "type" => type} = data} = activity
|
2019-01-24 20:30:43 +00:00
|
|
|
)
|
|
|
|
when type == "Create" do
|
2019-03-23 00:22:14 +00:00
|
|
|
object = Object.normalize(activity)
|
2019-01-24 20:30:43 +00:00
|
|
|
|
|
|
|
object_data =
|
|
|
|
cond do
|
|
|
|
!is_nil(object) ->
|
|
|
|
object.data
|
|
|
|
|
|
|
|
is_map(data["object"]) ->
|
|
|
|
data["object"]
|
|
|
|
|
|
|
|
true ->
|
|
|
|
%{}
|
|
|
|
end
|
|
|
|
|
|
|
|
tagged_mentions = maybe_extract_mentions(object_data)
|
|
|
|
|
|
|
|
recipients ++ tagged_mentions
|
|
|
|
end
|
|
|
|
|
|
|
|
def maybe_notify_mentioned_recipients(recipients, _), do: recipients
|
|
|
|
|
2019-07-23 18:53:05 +00:00
|
|
|
# Do not notify subscribers if author is making a reply
|
|
|
|
def maybe_notify_subscribers(recipients, %Activity{
|
|
|
|
object: %Object{data: %{"inReplyTo" => _ap_id}}
|
2019-07-23 18:14:26 +00:00
|
|
|
}) do
|
2019-07-23 18:53:05 +00:00
|
|
|
recipients
|
2019-07-23 18:14:26 +00:00
|
|
|
end
|
|
|
|
|
2019-04-05 13:20:13 +00:00
|
|
|
def maybe_notify_subscribers(
|
2019-04-05 13:59:34 +00:00
|
|
|
recipients,
|
2019-04-07 14:11:29 +00:00
|
|
|
%Activity{data: %{"actor" => actor, "type" => type}} = activity
|
2019-04-05 13:59:34 +00:00
|
|
|
)
|
|
|
|
when type == "Create" do
|
2019-04-08 14:56:14 +00:00
|
|
|
with %User{} = user <- User.get_cached_by_ap_id(actor) do
|
2019-04-05 13:20:13 +00:00
|
|
|
subscriber_ids =
|
|
|
|
user
|
2019-04-05 15:51:45 +00:00
|
|
|
|> User.subscribers()
|
2019-04-07 14:11:29 +00:00
|
|
|
|> Enum.filter(&Visibility.visible_for_user?(activity, &1))
|
2019-04-05 13:20:13 +00:00
|
|
|
|> Enum.map(& &1.ap_id)
|
|
|
|
|
|
|
|
recipients ++ subscriber_ids
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def maybe_notify_subscribers(recipients, _), do: recipients
|
|
|
|
|
2019-01-24 20:30:43 +00:00
|
|
|
def maybe_extract_mentions(%{"tag" => tag}) do
|
|
|
|
tag
|
|
|
|
|> Enum.filter(fn x -> is_map(x) end)
|
|
|
|
|> Enum.filter(fn x -> x["type"] == "Mention" end)
|
|
|
|
|> Enum.map(fn x -> x["href"] end)
|
|
|
|
end
|
|
|
|
|
|
|
|
def maybe_extract_mentions(_), do: []
|
2019-02-20 16:51:25 +00:00
|
|
|
|
2019-02-26 23:32:26 +00:00
|
|
|
def make_report_content_html(nil), do: {:ok, {nil, [], []}}
|
2019-02-20 16:51:25 +00:00
|
|
|
|
|
|
|
def make_report_content_html(comment) do
|
|
|
|
max_size = Pleroma.Config.get([:instance, :max_report_comment_size], 1000)
|
|
|
|
|
|
|
|
if String.length(comment) <= max_size do
|
2019-02-26 23:32:26 +00:00
|
|
|
{:ok, format_input(comment, "text/plain")}
|
2019-02-20 16:51:25 +00:00
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
{:error,
|
|
|
|
dgettext("errors", "Comment must be up to %{max_size} characters", max_size: max_size)}
|
2019-02-20 16:51:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_report_statuses(%User{ap_id: actor}, %{"status_ids" => status_ids}) do
|
|
|
|
{:ok, Activity.all_by_actor_and_id(actor, status_ids)}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_report_statuses(_, _), do: {:ok, nil}
|
2019-03-21 23:17:53 +00:00
|
|
|
|
|
|
|
# DEPRECATED mostly, context objects are now created at insertion time.
|
|
|
|
def context_to_conversation_id(context) do
|
|
|
|
with %Object{id: id} <- Object.get_cached_by_ap_id(context) do
|
|
|
|
id
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
changeset = Object.context_mapping(context)
|
|
|
|
|
|
|
|
case Repo.insert(changeset) do
|
|
|
|
{:ok, %{id: id}} ->
|
|
|
|
id
|
|
|
|
|
|
|
|
# This should be solved by an upsert, but it seems ecto
|
|
|
|
# has problems accessing the constraint inside the jsonb.
|
|
|
|
{:error, _} ->
|
|
|
|
Object.get_cached_by_ap_id(context).id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def conversation_id_to_context(id) do
|
|
|
|
with %Object{data: %{"id" => context}} <- Repo.get(Object, id) do
|
|
|
|
context
|
|
|
|
else
|
|
|
|
_e ->
|
2019-07-10 09:25:58 +00:00
|
|
|
{:error, dgettext("errors", "No such conversation")}
|
2019-03-21 23:17:53 +00:00
|
|
|
end
|
|
|
|
end
|
2019-06-01 13:07:01 +00:00
|
|
|
|
|
|
|
def make_answer_data(%User{ap_id: ap_id}, object, name) do
|
|
|
|
%{
|
|
|
|
"type" => "Answer",
|
|
|
|
"actor" => ap_id,
|
|
|
|
"cc" => [object.data["actor"]],
|
|
|
|
"to" => [],
|
|
|
|
"name" => name,
|
|
|
|
"inReplyTo" => object.data["id"]
|
|
|
|
}
|
|
|
|
end
|
2019-06-18 02:05:05 +00:00
|
|
|
|
|
|
|
def validate_character_limit(full_payload, attachments, limit) do
|
|
|
|
length = String.length(full_payload)
|
|
|
|
|
|
|
|
if length < limit do
|
|
|
|
if length > 0 or Enum.count(attachments) > 0 do
|
|
|
|
:ok
|
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
{:error, dgettext("errors", "Cannot post an empty status without attachments")}
|
2019-06-18 02:05:05 +00:00
|
|
|
end
|
|
|
|
else
|
2019-07-10 09:25:58 +00:00
|
|
|
{:error, dgettext("errors", "The status is over the character limit")}
|
2019-06-18 02:05:05 +00:00
|
|
|
end
|
|
|
|
end
|
2017-05-17 16:00:20 +00:00
|
|
|
end
|