2017-09-07 06:58:10 +00:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.AccountView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
alias Pleroma.User
|
|
|
|
|
2017-09-10 08:37:34 +00:00
|
|
|
defp image_url(%{"url" => [ %{ "href" => href } | t ]}), do: href
|
|
|
|
defp image_url(_), do: nil
|
|
|
|
|
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,
|
|
|
|
username: user.nickname,
|
|
|
|
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,
|
|
|
|
note: user.bio,
|
|
|
|
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,
|
|
|
|
username: user.nickname,
|
|
|
|
url: user.ap_id
|
|
|
|
}
|
|
|
|
end
|
2017-09-07 06:58:10 +00:00
|
|
|
end
|