forked from AkkomaGang/akkoma
127 lines
3.7 KiB
Elixir
127 lines
3.7 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.AccountView do
|
|
use Pleroma.Web, :view
|
|
alias Pleroma.User
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
|
alias Pleroma.Web.CommonAPI.Utils
|
|
alias Pleroma.Web.MediaProxy
|
|
alias Pleroma.HTML
|
|
|
|
def render("accounts.json", %{users: users} = opts) do
|
|
users
|
|
|> render_many(AccountView, "account.json", opts)
|
|
|> Enum.filter(&Enum.any?/1)
|
|
end
|
|
|
|
def render("account.json", %{user: user} = opts) do
|
|
if User.visible_for?(user, opts[:for]),
|
|
do: do_render("account.json", opts),
|
|
else: %{}
|
|
end
|
|
|
|
def render("mention.json", %{user: user}) do
|
|
%{
|
|
id: to_string(user.id),
|
|
acct: user.nickname,
|
|
username: username_from_nickname(user.nickname),
|
|
url: user.ap_id
|
|
}
|
|
end
|
|
|
|
def render("relationship.json", %{user: user, target: target}) do
|
|
follow_activity = Pleroma.Web.ActivityPub.Utils.fetch_latest_follow(user, target)
|
|
|
|
requested =
|
|
if follow_activity do
|
|
follow_activity.data["state"] == "pending"
|
|
else
|
|
false
|
|
end
|
|
|
|
%{
|
|
id: to_string(target.id),
|
|
following: User.following?(user, target),
|
|
followed_by: User.following?(target, user),
|
|
blocking: User.blocks?(user, target),
|
|
muting: false,
|
|
muting_notifications: false,
|
|
requested: requested,
|
|
domain_blocking: false,
|
|
showing_reblogs: false,
|
|
endorsed: false
|
|
}
|
|
end
|
|
|
|
def render("relationships.json", %{user: user, targets: targets}) do
|
|
render_many(targets, AccountView, "relationship.json", user: user, as: :target)
|
|
end
|
|
|
|
defp do_render("account.json", %{user: user} = opts) do
|
|
image = User.avatar_url(user) |> MediaProxy.url()
|
|
header = User.banner_url(user) |> MediaProxy.url()
|
|
user_info = User.user_info(user)
|
|
bot = (user.info.source_data["type"] || "Person") in ["Application", "Service"]
|
|
|
|
emojis =
|
|
(user.info.source_data["tag"] || [])
|
|
|> Enum.filter(fn %{"type" => t} -> t == "Emoji" end)
|
|
|> Enum.map(fn %{"icon" => %{"url" => url}, "name" => name} ->
|
|
%{
|
|
"shortcode" => String.trim(name, ":"),
|
|
"url" => MediaProxy.url(url),
|
|
"static_url" => MediaProxy.url(url),
|
|
"visible_in_picker" => false
|
|
}
|
|
end)
|
|
|
|
fields =
|
|
(user.info.source_data["attachment"] || [])
|
|
|> Enum.filter(fn %{"type" => t} -> t == "PropertyValue" end)
|
|
|> Enum.map(fn fields -> Map.take(fields, ["name", "value"]) end)
|
|
|
|
bio = HTML.filter_tags(user.bio, User.html_filter_policy(opts[:for]))
|
|
|
|
%{
|
|
id: to_string(user.id),
|
|
username: username_from_nickname(user.nickname),
|
|
acct: user.nickname,
|
|
display_name: user.name || user.nickname,
|
|
locked: user_info.locked,
|
|
created_at: Utils.to_masto_date(user.inserted_at),
|
|
followers_count: user_info.follower_count,
|
|
following_count: user_info.following_count,
|
|
statuses_count: user_info.note_count,
|
|
note: bio || "",
|
|
url: user.ap_id,
|
|
avatar: image,
|
|
avatar_static: image,
|
|
header: header,
|
|
header_static: header,
|
|
emojis: emojis,
|
|
fields: fields,
|
|
bot: bot,
|
|
source: %{
|
|
note: "",
|
|
privacy: user_info.default_scope,
|
|
sensitive: false
|
|
},
|
|
|
|
# Pleroma extension
|
|
pleroma: %{
|
|
confirmation_pending: user_info.confirmation_pending,
|
|
tags: user.tags,
|
|
is_moderator: user.info.is_moderator,
|
|
is_admin: user.info.is_admin
|
|
}
|
|
}
|
|
end
|
|
|
|
defp username_from_nickname(string) when is_binary(string) do
|
|
hd(String.split(string, "@"))
|
|
end
|
|
|
|
defp username_from_nickname(_), do: nil
|
|
end
|