forked from AkkomaGang/akkoma
run mix format
This commit is contained in:
parent
ff8922f292
commit
ed58a6b070
8 changed files with 73 additions and 53 deletions
|
@ -50,7 +50,8 @@ def reload do
|
||||||
@doc "Returns the path of the emoji `name`."
|
@doc "Returns the path of the emoji `name`."
|
||||||
@spec get(String.t()) :: String.t() | nil
|
@spec get(String.t()) :: String.t() | nil
|
||||||
def get(name) do
|
def get(name) do
|
||||||
name = if String.starts_with?(name, ":") do
|
name =
|
||||||
|
if String.starts_with?(name, ":") do
|
||||||
name
|
name
|
||||||
|> String.replace_leading(":", "")
|
|> String.replace_leading(":", "")
|
||||||
|> String.replace_trailing(":", "")
|
|> String.replace_trailing(":", "")
|
||||||
|
|
|
@ -58,7 +58,8 @@ def follow(follower, followed) do
|
||||||
@spec emoji_react(User.t(), Object.t(), String.t()) :: {:ok, map(), keyword()}
|
@spec emoji_react(User.t(), Object.t(), String.t()) :: {:ok, map(), keyword()}
|
||||||
def emoji_react(actor, object, emoji) do
|
def emoji_react(actor, object, emoji) do
|
||||||
with {:ok, data, meta} <- object_action(actor, object) do
|
with {:ok, data, meta} <- object_action(actor, object) do
|
||||||
data = if Emoji.is_unicode_emoji?(emoji) do
|
data =
|
||||||
|
if Emoji.is_unicode_emoji?(emoji) do
|
||||||
data
|
data
|
||||||
|> Map.put("content", emoji)
|
|> Map.put("content", emoji)
|
||||||
|> Map.put("type", "EmojiReact")
|
|> Map.put("type", "EmojiReact")
|
||||||
|
@ -66,6 +67,7 @@ def emoji_react(actor, object, emoji) do
|
||||||
emojo = Emoji.get(emoji)
|
emojo = Emoji.get(emoji)
|
||||||
path = emojo |> Map.get(:file)
|
path = emojo |> Map.get(:file)
|
||||||
url = "#{Endpoint.url()}#{path}"
|
url = "#{Endpoint.url()}#{path}"
|
||||||
|
|
||||||
data
|
data
|
||||||
|> Map.put("content", emoji)
|
|> Map.put("content", emoji)
|
||||||
|> Map.put("type", "EmojiReact")
|
|> Map.put("type", "EmojiReact")
|
||||||
|
@ -74,7 +76,8 @@ def emoji_react(actor, object, emoji) do
|
||||||
|> Map.put("id", url)
|
|> Map.put("id", url)
|
||||||
|> Map.put("type", "Emoji")
|
|> Map.put("type", "Emoji")
|
||||||
|> Map.put("name", emojo.code)
|
|> Map.put("name", emojo.code)
|
||||||
|> Map.put("icon",
|
|> Map.put(
|
||||||
|
"icon",
|
||||||
%{}
|
%{}
|
||||||
|> Map.put("type", "Image")
|
|> Map.put("type", "Image")
|
||||||
|> Map.put("url", url)
|
|> Map.put("url", url)
|
||||||
|
|
|
@ -55,7 +55,8 @@ defp fix(data) do
|
||||||
|> CommonFixes.fix_actor()
|
|> CommonFixes.fix_actor()
|
||||||
|> CommonFixes.fix_activity_addressing()
|
|> CommonFixes.fix_activity_addressing()
|
||||||
|
|
||||||
data = if Map.has_key?(data, "tag") do
|
data =
|
||||||
|
if Map.has_key?(data, "tag") do
|
||||||
data
|
data
|
||||||
else
|
else
|
||||||
Map.put(data, "tag", [])
|
Map.put(data, "tag", [])
|
||||||
|
@ -72,6 +73,7 @@ defp fix(data) do
|
||||||
|
|
||||||
defp validate_emoji(cng) do
|
defp validate_emoji(cng) do
|
||||||
content = get_field(cng, :content)
|
content = get_field(cng, :content)
|
||||||
|
|
||||||
if Pleroma.Emoji.is_unicode_emoji?(content) || Regex.match?(@emoji_regex, content) do
|
if Pleroma.Emoji.is_unicode_emoji?(content) || Regex.match?(@emoji_regex, content) do
|
||||||
cng
|
cng
|
||||||
else
|
else
|
||||||
|
|
|
@ -433,7 +433,7 @@ def handle_incoming(
|
||||||
def handle_incoming(
|
def handle_incoming(
|
||||||
%{
|
%{
|
||||||
"type" => "Like",
|
"type" => "Like",
|
||||||
"_misskey_reaction" => reaction,
|
"_misskey_reaction" => reaction
|
||||||
} = data,
|
} = data,
|
||||||
options
|
options
|
||||||
) do
|
) do
|
||||||
|
|
|
@ -350,6 +350,7 @@ def add_emoji_reaction_to_object(
|
||||||
reactions = get_cached_emoji_reactions(object)
|
reactions = get_cached_emoji_reactions(object)
|
||||||
emoji = stripped_emoji_name(emoji)
|
emoji = stripped_emoji_name(emoji)
|
||||||
url = emoji_url(emoji, activity)
|
url = emoji_url(emoji, activity)
|
||||||
|
|
||||||
new_reactions =
|
new_reactions =
|
||||||
case Enum.find_index(reactions, fn [candidate, _, candidate_url] ->
|
case Enum.find_index(reactions, fn [candidate, _, candidate_url] ->
|
||||||
if is_nil(candidate_url) do
|
if is_nil(candidate_url) do
|
||||||
|
@ -380,12 +381,18 @@ defp stripped_emoji_name(name) do
|
||||||
|> String.replace_trailing(":", "")
|
|> String.replace_trailing(":", "")
|
||||||
end
|
end
|
||||||
|
|
||||||
defp emoji_url(name,
|
defp emoji_url(
|
||||||
|
name,
|
||||||
%Activity{
|
%Activity{
|
||||||
data: %{"tag" => [
|
data: %{
|
||||||
|
"tag" => [
|
||||||
%{"type" => "Emoji", "name" => name, "icon" => %{"url" => url}}
|
%{"type" => "Emoji", "name" => name, "icon" => %{"url" => url}}
|
||||||
]}
|
]
|
||||||
}), do: url
|
}
|
||||||
|
}
|
||||||
|
),
|
||||||
|
do: url
|
||||||
|
|
||||||
defp emoji_url(_, _), do: nil
|
defp emoji_url(_, _), do: nil
|
||||||
|
|
||||||
def emoji_count(reactions_list) do
|
def emoji_count(reactions_list) do
|
||||||
|
@ -399,6 +406,7 @@ def remove_emoji_reaction_from_object(
|
||||||
emoji = stripped_emoji_name(emoji)
|
emoji = stripped_emoji_name(emoji)
|
||||||
reactions = get_cached_emoji_reactions(object)
|
reactions = get_cached_emoji_reactions(object)
|
||||||
url = emoji_url(emoji, activity)
|
url = emoji_url(emoji, activity)
|
||||||
|
|
||||||
new_reactions =
|
new_reactions =
|
||||||
case Enum.find_index(reactions, fn [candidate, _, candidate_url] ->
|
case Enum.find_index(reactions, fn [candidate, _, candidate_url] ->
|
||||||
if is_nil(candidate_url) do
|
if is_nil(candidate_url) do
|
||||||
|
@ -536,7 +544,9 @@ def fetch_latest_undo(%User{ap_id: ap_id}) do
|
||||||
|
|
||||||
def get_latest_reaction(internal_activity_id, %{ap_id: ap_id}, emoji) do
|
def get_latest_reaction(internal_activity_id, %{ap_id: ap_id}, emoji) do
|
||||||
%{data: %{"object" => object_ap_id}} = Activity.get_by_id(internal_activity_id)
|
%{data: %{"object" => object_ap_id}} = Activity.get_by_id(internal_activity_id)
|
||||||
emoji = if String.starts_with?(emoji, ":") do
|
|
||||||
|
emoji =
|
||||||
|
if String.starts_with?(emoji, ":") do
|
||||||
emoji
|
emoji
|
||||||
else
|
else
|
||||||
":#{emoji}:"
|
":#{emoji}:"
|
||||||
|
|
|
@ -304,6 +304,7 @@ def render("show.json", %{activity: %{data: %{"object" => _object}} = activity}
|
||||||
_e ->
|
_e ->
|
||||||
nil
|
nil
|
||||||
end
|
end
|
||||||
|
|
||||||
emoji_reactions =
|
emoji_reactions =
|
||||||
object.data
|
object.data
|
||||||
|> Map.get("reactions", [])
|
|> Map.get("reactions", [])
|
||||||
|
|
|
@ -14,6 +14,7 @@ def render("index.json", %{emoji_reactions: emoji_reactions} = opts) do
|
||||||
|
|
||||||
def render("show.json", %{emoji_reaction: {emoji, user_ap_ids, url}, user: user}) do
|
def render("show.json", %{emoji_reaction: {emoji, user_ap_ids, url}, user: user}) do
|
||||||
users = fetch_users(user_ap_ids)
|
users = fetch_users(user_ap_ids)
|
||||||
|
|
||||||
%{
|
%{
|
||||||
name: emoji,
|
name: emoji,
|
||||||
count: length(users),
|
count: length(users),
|
||||||
|
|
4
mix.exs
4
mix.exs
|
@ -157,7 +157,9 @@ defp deps do
|
||||||
{:floki, "~> 0.27"},
|
{:floki, "~> 0.27"},
|
||||||
{:timex, "~> 3.6"},
|
{:timex, "~> 3.6"},
|
||||||
{:ueberauth, "~> 0.4"},
|
{:ueberauth, "~> 0.4"},
|
||||||
{:linkify, git: "https://git.ihatebeinga.live/floatingghost/linkify.git", branch: "bugfix/line-ending-buffer"},
|
{:linkify,
|
||||||
|
git: "https://git.ihatebeinga.live/floatingghost/linkify.git",
|
||||||
|
branch: "bugfix/line-ending-buffer"},
|
||||||
{:http_signatures, "~> 0.1.1"},
|
{:http_signatures, "~> 0.1.1"},
|
||||||
{:telemetry, "~> 0.3"},
|
{:telemetry, "~> 0.3"},
|
||||||
{:poolboy, "~> 1.5"},
|
{:poolboy, "~> 1.5"},
|
||||||
|
|
Loading…
Reference in a new issue