2017-09-07 06:58:10 +00:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.AccountView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
alias Pleroma.User
|
2017-09-13 13:55:10 +00:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2017-09-07 06:58:10 +00:00
|
|
|
|
2017-09-10 08:37:34 +00:00
|
|
|
defp image_url(%{"url" => [ %{ "href" => href } | t ]}), do: href
|
|
|
|
defp image_url(_), do: nil
|
|
|
|
|
2017-09-14 07:50:49 +00:00
|
|
|
def render("accounts.json", %{users: users} = opts) do
|
|
|
|
render_many(users, AccountView, "account.json", opts)
|
|
|
|
end
|
|
|
|
|
2017-09-07 06:58:10 +00:00
|
|
|
def render("account.json", %{user: user}) do
|
|
|
|
image = User.avatar_url(user)
|
|
|
|
user_info = User.user_info(user)
|
|
|
|
|
2017-09-10 08:37:34 +00:00
|
|
|
header = image_url(user.info["banner"]) || "https://placehold.it/700x335"
|
|
|
|
|
2017-09-07 06:58:10 +00:00
|
|
|
%{
|
|
|
|
id: user.id,
|
2017-09-12 07:34:39 +00:00
|
|
|
username: hd(String.split(user.nickname, "@")),
|
2017-09-07 06:58:10 +00:00
|
|
|
acct: user.nickname,
|
|
|
|
display_name: user.name,
|
|
|
|
locked: false,
|
|
|
|
created_at: user.inserted_at,
|
|
|
|
followers_count: user_info.follower_count,
|
|
|
|
following_count: user_info.following_count,
|
|
|
|
statuses_count: user_info.note_count,
|
2017-09-13 15:45:59 +00:00
|
|
|
note: user.bio || "",
|
2017-09-07 06:58:10 +00:00
|
|
|
url: user.ap_id,
|
|
|
|
avatar: image,
|
|
|
|
avatar_static: image,
|
2017-09-10 08:37:34 +00:00
|
|
|
header: header,
|
|
|
|
header_static: header
|
2017-09-07 06:58:10 +00:00
|
|
|
}
|
|
|
|
end
|
2017-09-09 10:09:53 +00:00
|
|
|
|
|
|
|
def render("mention.json", %{user: user}) do
|
|
|
|
%{
|
|
|
|
id: user.id,
|
|
|
|
acct: user.nickname,
|
2017-09-12 07:34:39 +00:00
|
|
|
username: hd(String.split(user.nickname, "@")),
|
2017-09-09 10:09:53 +00:00
|
|
|
url: user.ap_id
|
|
|
|
}
|
|
|
|
end
|
2017-09-13 13:55:10 +00:00
|
|
|
|
|
|
|
def render("relationship.json", %{user: user, target: target}) do
|
|
|
|
%{
|
|
|
|
id: target.id,
|
2017-09-13 14:05:39 +00:00
|
|
|
following: User.following?(user, target),
|
|
|
|
followed_by: User.following?(target, user),
|
2017-09-13 13:55:10 +00:00
|
|
|
blocking: false,
|
|
|
|
muting: false,
|
|
|
|
requested: false,
|
|
|
|
domain_blocking: false
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("relationships.json", %{user: user, targets: targets}) do
|
|
|
|
render_many(targets, AccountView, "relationship.json", user: user, as: :target)
|
|
|
|
end
|
2017-09-07 06:58:10 +00:00
|
|
|
end
|