2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-06-19 21:12:37 +00:00
|
|
|
defmodule Pleroma.Web.TwitterAPI.UserView do
|
|
|
|
use Pleroma.Web, :view
|
2017-03-23 14:51:34 +00:00
|
|
|
alias Pleroma.User
|
2018-08-08 05:38:25 +00:00
|
|
|
alias Pleroma.Formatter
|
2017-09-15 12:17:36 +00:00
|
|
|
alias Pleroma.Web.CommonAPI.Utils
|
2017-11-22 18:06:07 +00:00
|
|
|
alias Pleroma.Web.MediaProxy
|
2018-09-09 23:40:24 +00:00
|
|
|
alias Pleroma.HTML
|
2017-03-23 14:51:34 +00:00
|
|
|
|
2017-06-19 21:12:37 +00:00
|
|
|
def render("show.json", %{user: user = %User{}} = assigns) do
|
2017-07-20 18:29:15 +00:00
|
|
|
render_one(user, Pleroma.Web.TwitterAPI.UserView, "user.json", assigns)
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("index.json", %{users: users, for: user}) do
|
2018-12-27 12:46:18 +00:00
|
|
|
users
|
|
|
|
|> render_many(Pleroma.Web.TwitterAPI.UserView, "user.json", for: user)
|
|
|
|
|> Enum.filter(&Enum.any?/1)
|
2017-07-20 18:29:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def render("user.json", %{user: user = %User{}} = assigns) do
|
2018-12-28 11:35:25 +00:00
|
|
|
if User.visible_for?(user, assigns[:for]),
|
2018-12-28 19:47:42 +00:00
|
|
|
do: do_render("user.json", assigns),
|
|
|
|
else: %{}
|
2018-12-27 12:46:18 +00:00
|
|
|
end
|
|
|
|
|
2018-12-28 19:47:42 +00:00
|
|
|
def render("short.json", %{
|
|
|
|
user: %User{
|
|
|
|
nickname: nickname,
|
|
|
|
id: id,
|
|
|
|
ap_id: ap_id,
|
|
|
|
name: name
|
|
|
|
}
|
|
|
|
}) do
|
|
|
|
%{
|
|
|
|
"fullname" => name,
|
|
|
|
"id" => id,
|
|
|
|
"ostatus_uri" => ap_id,
|
|
|
|
"profile_url" => ap_id,
|
|
|
|
"screen_name" => nickname
|
|
|
|
}
|
2018-12-27 12:46:18 +00:00
|
|
|
end
|
|
|
|
|
2018-12-28 19:47:42 +00:00
|
|
|
defp do_render("user.json", %{user: user = %User{}} = assigns) do
|
2018-12-27 12:46:18 +00:00
|
|
|
for_user = assigns[:for]
|
2017-11-22 18:06:07 +00:00
|
|
|
image = User.avatar_url(user) |> MediaProxy.url()
|
2018-03-30 13:01:53 +00:00
|
|
|
|
|
|
|
{following, follows_you, statusnet_blocking} =
|
2018-12-27 12:46:18 +00:00
|
|
|
if for_user do
|
2018-03-30 13:01:53 +00:00
|
|
|
{
|
2018-12-27 12:46:18 +00:00
|
|
|
User.following?(for_user, user),
|
|
|
|
User.following?(user, for_user),
|
|
|
|
User.blocks?(for_user, user)
|
2018-03-30 13:01:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{false, false, false}
|
|
|
|
end
|
2017-03-23 14:51:34 +00:00
|
|
|
|
2017-04-30 08:04:54 +00:00
|
|
|
user_info = User.get_cached_user_info(user)
|
2017-04-20 22:51:09 +00:00
|
|
|
|
2018-08-08 05:38:25 +00:00
|
|
|
emoji =
|
2018-11-18 21:36:47 +00:00
|
|
|
(user.info.source_data["tag"] || [])
|
2018-08-08 05:38:25 +00:00
|
|
|
|> Enum.filter(fn %{"type" => t} -> t == "Emoji" end)
|
|
|
|
|> Enum.map(fn %{"icon" => %{"url" => url}, "name" => name} ->
|
|
|
|
{String.trim(name, ":"), url}
|
|
|
|
end)
|
|
|
|
|
2018-09-27 18:17:44 +00:00
|
|
|
# ``fields`` is an array of mastodon profile field, containing ``{"name": "…", "value": "…"}``.
|
|
|
|
# For example: [{"name": "Pronoun", "value": "she/her"}, …]
|
|
|
|
fields =
|
2018-11-18 21:36:47 +00:00
|
|
|
(user.info.source_data["attachment"] || [])
|
2018-09-27 18:17:44 +00:00
|
|
|
|> Enum.filter(fn %{"type" => t} -> t == "PropertyValue" end)
|
|
|
|
|> Enum.map(fn fields -> Map.take(fields, ["name", "value"]) end)
|
|
|
|
|
2017-12-04 18:10:15 +00:00
|
|
|
data = %{
|
2018-03-30 13:01:53 +00:00
|
|
|
"created_at" => user.inserted_at |> Utils.format_naive_asctime(),
|
2018-09-10 00:28:40 +00:00
|
|
|
"description" => HTML.strip_tags((user.bio || "") |> String.replace("<br>", "\n")),
|
2018-12-27 12:46:18 +00:00
|
|
|
"description_html" => HTML.filter_tags(user.bio, User.html_filter_policy(for_user)),
|
2017-03-20 20:30:18 +00:00
|
|
|
"favourites_count" => 0,
|
2017-04-20 22:51:09 +00:00
|
|
|
"followers_count" => user_info[:follower_count],
|
2017-06-19 21:12:37 +00:00
|
|
|
"following" => following,
|
2017-11-08 17:13:03 +00:00
|
|
|
"follows_you" => follows_you,
|
2017-11-08 11:02:00 +00:00
|
|
|
"statusnet_blocking" => statusnet_blocking,
|
2017-06-19 21:12:37 +00:00
|
|
|
"friends_count" => user_info[:following_count],
|
|
|
|
"id" => user.id,
|
2018-11-12 15:38:39 +00:00
|
|
|
"name" => user.name || user.nickname,
|
|
|
|
"name_html" =>
|
|
|
|
if(user.name,
|
|
|
|
do: HTML.strip_tags(user.name) |> Formatter.emojify(emoji),
|
|
|
|
else: user.nickname
|
|
|
|
),
|
2017-03-20 20:30:18 +00:00
|
|
|
"profile_image_url" => image,
|
|
|
|
"profile_image_url_https" => image,
|
|
|
|
"profile_image_url_profile_size" => image,
|
|
|
|
"profile_image_url_original" => image,
|
2018-02-20 17:44:50 +00:00
|
|
|
"rights" => %{
|
2018-12-23 17:31:37 +00:00
|
|
|
"delete_others_notice" => !!user.info.is_moderator,
|
|
|
|
"admin" => !!user.info.is_admin
|
2018-02-20 17:44:50 +00:00
|
|
|
},
|
2017-06-19 21:12:37 +00:00
|
|
|
"screen_name" => user.nickname,
|
|
|
|
"statuses_count" => user_info[:note_count],
|
2017-08-29 15:18:33 +00:00
|
|
|
"statusnet_profile_url" => user.ap_id,
|
2018-01-15 20:18:17 +00:00
|
|
|
"cover_photo" => User.banner_url(user) |> MediaProxy.url(),
|
2018-11-18 21:36:47 +00:00
|
|
|
"background_image" => image_url(user.info.background) |> MediaProxy.url(),
|
2018-05-29 14:13:34 +00:00
|
|
|
"is_local" => user.local,
|
2018-11-18 21:36:47 +00:00
|
|
|
"locked" => user.info.locked,
|
|
|
|
"default_scope" => user.info.default_scope,
|
|
|
|
"no_rich_text" => user.info.no_rich_text,
|
2019-01-28 18:31:08 +00:00
|
|
|
"hide_followers" => user.info.hide_followers,
|
|
|
|
"hide_followings" => user.info.hide_followings,
|
2018-12-06 17:06:50 +00:00
|
|
|
"fields" => fields,
|
2018-12-06 19:26:25 +00:00
|
|
|
|
2018-12-06 17:23:16 +00:00
|
|
|
# Pleroma extension
|
2018-12-06 19:26:25 +00:00
|
|
|
"pleroma" => %{
|
2018-12-18 11:07:05 +00:00
|
|
|
"confirmation_pending" => user_info.confirmation_pending,
|
2018-12-06 19:26:25 +00:00
|
|
|
"tags" => user.tags
|
|
|
|
}
|
2017-03-20 20:30:18 +00:00
|
|
|
}
|
2017-12-04 18:10:15 +00:00
|
|
|
|
|
|
|
if assigns[:token] do
|
2018-12-17 15:02:26 +00:00
|
|
|
Map.put(data, "token", token_string(assigns[:token]))
|
2017-12-04 18:10:15 +00:00
|
|
|
else
|
|
|
|
data
|
|
|
|
end
|
2017-06-19 21:12:37 +00:00
|
|
|
end
|
2017-03-20 20:30:18 +00:00
|
|
|
|
2018-03-30 13:01:53 +00:00
|
|
|
defp image_url(%{"url" => [%{"href" => href} | _]}), do: href
|
2017-11-19 01:22:07 +00:00
|
|
|
defp image_url(_), do: nil
|
2018-12-17 15:02:26 +00:00
|
|
|
|
|
|
|
defp token_string(%Pleroma.Web.OAuth.Token{token: token_str}), do: token_str
|
|
|
|
defp token_string(token), do: token
|
2017-03-20 20:30:18 +00:00
|
|
|
end
|