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-15 15:50:47 +00:00
|
|
|
alias Pleroma.Web.CommonAPI.Utils
|
2017-11-22 18:06:07 +00:00
|
|
|
alias Pleroma.Web.MediaProxy
|
2017-09-07 06:58:10 +00:00
|
|
|
|
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
|
2017-11-22 18:06:07 +00:00
|
|
|
image = User.avatar_url(user) |> MediaProxy.url()
|
2018-01-15 20:18:17 +00:00
|
|
|
header = User.banner_url(user) |> MediaProxy.url()
|
2017-09-07 06:58:10 +00:00
|
|
|
user_info = User.user_info(user)
|
|
|
|
|
|
|
|
%{
|
2017-11-10 16:18:19 +00:00
|
|
|
id: to_string(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,
|
2018-02-22 18:22:10 +00:00
|
|
|
display_name: user.name || user.nickname,
|
2017-09-07 06:58:10 +00:00
|
|
|
locked: false,
|
2017-09-15 15:50:47 +00:00
|
|
|
created_at: Utils.to_masto_date(user.inserted_at),
|
2017-09-07 06:58:10 +00:00
|
|
|
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,
|
2017-09-16 09:52:33 +00:00
|
|
|
header_static: header,
|
|
|
|
source: %{
|
|
|
|
note: "",
|
|
|
|
privacy: "public",
|
|
|
|
sensitive: "false"
|
|
|
|
}
|
2017-09-07 06:58:10 +00:00
|
|
|
}
|
|
|
|
end
|
2017-09-09 10:09:53 +00:00
|
|
|
|
|
|
|
def render("mention.json", %{user: user}) do
|
|
|
|
%{
|
2017-11-10 16:18:19 +00:00
|
|
|
id: to_string(user.id),
|
2017-09-09 10:09:53 +00:00
|
|
|
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
|
|
|
|
%{
|
2017-11-10 16:18:19 +00:00
|
|
|
id: to_string(target.id),
|
2017-09-13 14:05:39 +00:00
|
|
|
following: User.following?(user, target),
|
|
|
|
followed_by: User.following?(target, user),
|
2017-11-03 07:23:31 +00:00
|
|
|
blocking: User.blocks?(user, target),
|
2017-09-13 13:55:10 +00:00
|
|
|
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
|