2017-09-07 00:58:10 -06:00
|
|
|
defmodule Pleroma.Web.MastodonAPI.AccountView do
|
|
|
|
use Pleroma.Web, :view
|
|
|
|
alias Pleroma.User
|
2017-09-13 07:55:10 -06:00
|
|
|
alias Pleroma.Web.MastodonAPI.AccountView
|
2017-09-15 09:50:47 -06:00
|
|
|
alias Pleroma.Web.CommonAPI.Utils
|
2017-11-22 11:06:07 -07:00
|
|
|
alias Pleroma.Web.MediaProxy
|
2017-09-07 00:58:10 -06:00
|
|
|
|
2017-09-14 01:50:49 -06:00
|
|
|
def render("accounts.json", %{users: users} = opts) do
|
|
|
|
render_many(users, AccountView, "account.json", opts)
|
|
|
|
end
|
|
|
|
|
2017-09-07 00:58:10 -06:00
|
|
|
def render("account.json", %{user: user}) do
|
2017-11-22 11:06:07 -07:00
|
|
|
image = User.avatar_url(user) |> MediaProxy.url()
|
2018-01-15 13:18:17 -07:00
|
|
|
header = User.banner_url(user) |> MediaProxy.url()
|
2017-09-07 00:58:10 -06:00
|
|
|
user_info = User.user_info(user)
|
|
|
|
|
|
|
|
%{
|
2017-11-10 09:18:19 -07:00
|
|
|
id: to_string(user.id),
|
2017-09-12 01:34:39 -06:00
|
|
|
username: hd(String.split(user.nickname, "@")),
|
2017-09-07 00:58:10 -06:00
|
|
|
acct: user.nickname,
|
2018-02-22 11:22:10 -07:00
|
|
|
display_name: user.name || user.nickname,
|
2018-05-24 22:15:42 -06:00
|
|
|
locked: user_info.locked,
|
2017-09-15 09:50:47 -06:00
|
|
|
created_at: Utils.to_masto_date(user.inserted_at),
|
2017-09-07 00:58:10 -06:00
|
|
|
followers_count: user_info.follower_count,
|
|
|
|
following_count: user_info.following_count,
|
|
|
|
statuses_count: user_info.note_count,
|
2017-09-13 09:45:59 -06:00
|
|
|
note: user.bio || "",
|
2017-09-07 00:58:10 -06:00
|
|
|
url: user.ap_id,
|
|
|
|
avatar: image,
|
|
|
|
avatar_static: image,
|
2017-09-10 02:37:34 -06:00
|
|
|
header: header,
|
2017-09-16 03:52:33 -06:00
|
|
|
header_static: header,
|
|
|
|
source: %{
|
|
|
|
note: "",
|
|
|
|
privacy: "public",
|
|
|
|
sensitive: "false"
|
|
|
|
}
|
2017-09-07 00:58:10 -06:00
|
|
|
}
|
|
|
|
end
|
2017-09-09 04:09:53 -06:00
|
|
|
|
|
|
|
def render("mention.json", %{user: user}) do
|
|
|
|
%{
|
2017-11-10 09:18:19 -07:00
|
|
|
id: to_string(user.id),
|
2017-09-09 04:09:53 -06:00
|
|
|
acct: user.nickname,
|
2017-09-12 01:34:39 -06:00
|
|
|
username: hd(String.split(user.nickname, "@")),
|
2017-09-09 04:09:53 -06:00
|
|
|
url: user.ap_id
|
|
|
|
}
|
|
|
|
end
|
2017-09-13 07:55:10 -06:00
|
|
|
|
|
|
|
def render("relationship.json", %{user: user, target: target}) do
|
|
|
|
%{
|
2017-11-10 09:18:19 -07:00
|
|
|
id: to_string(target.id),
|
2017-09-13 08:05:39 -06:00
|
|
|
following: User.following?(user, target),
|
|
|
|
followed_by: User.following?(target, user),
|
2017-11-03 01:23:31 -06:00
|
|
|
blocking: User.blocks?(user, target),
|
2017-09-13 07:55:10 -06: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 00:58:10 -06:00
|
|
|
end
|