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-12-11 09:37:22 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.UserView do
|
|
|
|
use Pleroma.Web, :view
|
2019-02-06 19:20:02 +00:00
|
|
|
|
2019-05-22 03:58:15 +00:00
|
|
|
alias Pleroma.Keys
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Repo
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.User
|
2019-02-09 15:16:26 +00:00
|
|
|
alias Pleroma.Web.ActivityPub.ActivityPub
|
|
|
|
alias Pleroma.Web.ActivityPub.Transmogrifier
|
|
|
|
alias Pleroma.Web.ActivityPub.Utils
|
2019-02-13 19:20:41 +00:00
|
|
|
alias Pleroma.Web.Endpoint
|
2019-03-05 02:52:23 +00:00
|
|
|
alias Pleroma.Web.Router.Helpers
|
2019-02-06 19:20:02 +00:00
|
|
|
|
2018-03-31 18:02:09 +00:00
|
|
|
import Ecto.Query
|
2017-12-11 09:37:22 +00:00
|
|
|
|
2019-02-14 02:41:21 +00:00
|
|
|
def render("endpoints.json", %{user: %User{nickname: nil, local: true} = _user}) do
|
|
|
|
%{"sharedInbox" => Helpers.activity_pub_url(Endpoint, :inbox)}
|
|
|
|
end
|
|
|
|
|
|
|
|
def render("endpoints.json", %{user: %User{local: true} = _user}) do
|
2019-02-12 21:28:11 +00:00
|
|
|
%{
|
2019-02-13 19:20:41 +00:00
|
|
|
"oauthAuthorizationEndpoint" => Helpers.o_auth_url(Endpoint, :authorize),
|
|
|
|
"oauthRegistrationEndpoint" => Helpers.mastodon_api_url(Endpoint, :create_app),
|
|
|
|
"oauthTokenEndpoint" => Helpers.o_auth_url(Endpoint, :token_exchange),
|
|
|
|
"sharedInbox" => Helpers.activity_pub_url(Endpoint, :inbox)
|
2019-02-12 21:28:11 +00:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2019-02-13 19:20:41 +00:00
|
|
|
def render("endpoints.json", _), do: %{}
|
2019-02-12 21:28:11 +00:00
|
|
|
|
2019-07-17 17:34:57 +00:00
|
|
|
def render("service.json", %{user: user}) do
|
2019-05-22 03:58:15 +00:00
|
|
|
{:ok, user} = User.ensure_keys_present(user)
|
|
|
|
{:ok, _, public_key} = Keys.keys_from_pem(user.info.keys)
|
2018-08-06 06:11:51 +00:00
|
|
|
public_key = :public_key.pem_entry_encode(:SubjectPublicKeyInfo, public_key)
|
|
|
|
public_key = :public_key.pem_encode([public_key])
|
|
|
|
|
2019-02-12 21:28:11 +00:00
|
|
|
endpoints = render("endpoints.json", %{user: user})
|
|
|
|
|
2018-08-06 06:11:51 +00:00
|
|
|
%{
|
|
|
|
"id" => user.ap_id,
|
|
|
|
"type" => "Application",
|
2018-08-06 08:15:18 +00:00
|
|
|
"following" => "#{user.ap_id}/following",
|
|
|
|
"followers" => "#{user.ap_id}/followers",
|
2018-08-06 06:11:51 +00:00
|
|
|
"inbox" => "#{user.ap_id}/inbox",
|
|
|
|
"name" => "Pleroma",
|
2019-07-17 17:34:57 +00:00
|
|
|
"summary" =>
|
|
|
|
"An internal service actor for this Pleroma instance. No user-serviceable parts inside.",
|
2018-08-06 06:11:51 +00:00
|
|
|
"url" => user.ap_id,
|
|
|
|
"manuallyApprovesFollowers" => false,
|
|
|
|
"publicKey" => %{
|
|
|
|
"id" => "#{user.ap_id}#main-key",
|
|
|
|
"owner" => user.ap_id,
|
|
|
|
"publicKeyPem" => public_key
|
|
|
|
},
|
2019-02-12 21:28:11 +00:00
|
|
|
"endpoints" => endpoints
|
2018-08-06 06:11:51 +00:00
|
|
|
}
|
2018-11-08 16:51:48 +00:00
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
2018-08-06 06:11:51 +00:00
|
|
|
end
|
|
|
|
|
2019-07-17 17:34:57 +00:00
|
|
|
# the instance itself is not a Person, but instead an Application
|
|
|
|
def render("user.json", %{user: %User{nickname: nil} = user}),
|
|
|
|
do: render("service.json", %{user: user})
|
|
|
|
|
|
|
|
def render("user.json", %{user: %User{nickname: "internal." <> _} = user}),
|
2019-08-03 18:37:20 +00:00
|
|
|
do: render("service.json", %{user: user}) |> Map.put("preferredUsername", user.nickname)
|
2019-07-17 17:34:57 +00:00
|
|
|
|
2017-12-11 09:37:22 +00:00
|
|
|
def render("user.json", %{user: user}) do
|
2019-05-22 03:58:15 +00:00
|
|
|
{:ok, user} = User.ensure_keys_present(user)
|
|
|
|
{:ok, _, public_key} = Keys.keys_from_pem(user.info.keys)
|
2018-07-12 02:45:48 +00:00
|
|
|
public_key = :public_key.pem_entry_encode(:SubjectPublicKeyInfo, public_key)
|
2017-12-11 09:37:22 +00:00
|
|
|
public_key = :public_key.pem_encode([public_key])
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-02-12 21:28:11 +00:00
|
|
|
endpoints = render("endpoints.json", %{user: user})
|
|
|
|
|
2019-02-12 13:59:34 +00:00
|
|
|
user_tags =
|
|
|
|
user
|
|
|
|
|> Transmogrifier.add_emoji_tags()
|
|
|
|
|> Map.get("tag", [])
|
|
|
|
|
2019-07-25 12:35:34 +00:00
|
|
|
fields =
|
|
|
|
user.info
|
|
|
|
|> User.Info.fields()
|
2019-08-06 11:21:25 +00:00
|
|
|
|> Enum.map(fn %{"name" => name, "value" => value} ->
|
|
|
|
%{
|
|
|
|
"name" => Pleroma.HTML.strip_tags(name),
|
|
|
|
"value" => Pleroma.HTML.filter_tags(value, Pleroma.HTML.Scrubber.LinksOnly)
|
|
|
|
}
|
|
|
|
end)
|
2019-07-25 12:35:34 +00:00
|
|
|
|> Enum.map(&Map.put(&1, "type", "PropertyValue"))
|
|
|
|
|
2017-12-11 09:37:22 +00:00
|
|
|
%{
|
2017-12-11 17:20:41 +00:00
|
|
|
"id" => user.ap_id,
|
|
|
|
"type" => "Person",
|
|
|
|
"following" => "#{user.ap_id}/following",
|
|
|
|
"followers" => "#{user.ap_id}/followers",
|
|
|
|
"inbox" => "#{user.ap_id}/inbox",
|
|
|
|
"outbox" => "#{user.ap_id}/outbox",
|
|
|
|
"preferredUsername" => user.nickname,
|
|
|
|
"name" => user.name,
|
|
|
|
"summary" => user.bio,
|
|
|
|
"url" => user.ap_id,
|
2018-11-20 19:12:39 +00:00
|
|
|
"manuallyApprovesFollowers" => user.info.locked,
|
2017-12-11 17:20:41 +00:00
|
|
|
"publicKey" => %{
|
|
|
|
"id" => "#{user.ap_id}#main-key",
|
|
|
|
"owner" => user.ap_id,
|
|
|
|
"publicKeyPem" => public_key
|
2017-12-11 09:37:22 +00:00
|
|
|
},
|
2019-02-12 21:28:11 +00:00
|
|
|
"endpoints" => endpoints,
|
2019-07-25 12:35:34 +00:00
|
|
|
"attachment" => fields,
|
2019-02-12 13:59:34 +00:00
|
|
|
"tag" => (user.info.source_data["tag"] || []) ++ user_tags
|
2017-12-11 09:37:22 +00:00
|
|
|
}
|
2019-03-26 15:40:09 +00:00
|
|
|
|> Map.merge(maybe_make_image(&User.avatar_url/2, "icon", user))
|
|
|
|
|> Map.merge(maybe_make_image(&User.banner_url/2, "image", user))
|
2018-03-21 17:23:27 +00:00
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
|
|
|
end
|
|
|
|
|
2019-07-12 16:41:05 +00:00
|
|
|
def render("following.json", %{user: user, page: page} = opts) do
|
2019-09-13 14:37:30 +00:00
|
|
|
showing_items = (opts[:for] && opts[:for] == user) || !user.info.hide_follows
|
|
|
|
showing_count = showing_items || !user.info.hide_follows_count
|
|
|
|
|
2018-03-31 18:02:09 +00:00
|
|
|
query = User.get_friends_query(user)
|
|
|
|
query = from(user in query, select: [:ap_id])
|
|
|
|
following = Repo.all(query)
|
2019-02-14 03:13:07 +00:00
|
|
|
|
2019-02-14 03:03:41 +00:00
|
|
|
total =
|
2019-09-13 14:37:30 +00:00
|
|
|
if showing_count do
|
2019-02-14 03:03:41 +00:00
|
|
|
length(following)
|
|
|
|
else
|
|
|
|
0
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-09-13 14:37:30 +00:00
|
|
|
collection(following, "#{user.ap_id}/following", page, showing_items, total)
|
2018-03-21 17:23:27 +00:00
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
|
|
|
end
|
|
|
|
|
2019-07-12 16:41:05 +00:00
|
|
|
def render("following.json", %{user: user} = opts) do
|
2019-09-13 14:37:30 +00:00
|
|
|
showing_items = (opts[:for] && opts[:for] == user) || !user.info.hide_follows
|
|
|
|
showing_count = showing_items || !user.info.hide_follows_count
|
|
|
|
|
2018-03-31 18:02:09 +00:00
|
|
|
query = User.get_friends_query(user)
|
|
|
|
query = from(user in query, select: [:ap_id])
|
|
|
|
following = Repo.all(query)
|
2019-02-14 03:13:07 +00:00
|
|
|
|
2019-02-14 03:03:41 +00:00
|
|
|
total =
|
2019-09-13 14:37:30 +00:00
|
|
|
if showing_count do
|
2019-02-14 03:03:41 +00:00
|
|
|
length(following)
|
|
|
|
else
|
|
|
|
0
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-21 17:23:27 +00:00
|
|
|
%{
|
|
|
|
"id" => "#{user.ap_id}/following",
|
|
|
|
"type" => "OrderedCollection",
|
2019-02-14 03:03:41 +00:00
|
|
|
"totalItems" => total,
|
2019-07-12 16:41:05 +00:00
|
|
|
"first" =>
|
2019-09-13 14:37:30 +00:00
|
|
|
if showing_items do
|
2019-07-12 16:41:05 +00:00
|
|
|
collection(following, "#{user.ap_id}/following", 1, !user.info.hide_follows)
|
|
|
|
else
|
|
|
|
"#{user.ap_id}/following?page=1"
|
|
|
|
end
|
2018-03-21 17:23:27 +00:00
|
|
|
}
|
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
|
|
|
end
|
|
|
|
|
2019-07-12 16:41:05 +00:00
|
|
|
def render("followers.json", %{user: user, page: page} = opts) do
|
2019-09-13 14:37:30 +00:00
|
|
|
showing_items = (opts[:for] && opts[:for] == user) || !user.info.hide_followers
|
|
|
|
showing_count = showing_items || !user.info.hide_followers_count
|
2019-07-12 16:41:05 +00:00
|
|
|
|
2018-03-31 18:02:09 +00:00
|
|
|
query = User.get_followers_query(user)
|
|
|
|
query = from(user in query, select: [:ap_id])
|
|
|
|
followers = Repo.all(query)
|
2019-02-14 03:13:07 +00:00
|
|
|
|
2019-02-14 03:03:41 +00:00
|
|
|
total =
|
2019-09-13 14:37:30 +00:00
|
|
|
if showing_count do
|
2019-02-14 03:03:41 +00:00
|
|
|
length(followers)
|
|
|
|
else
|
|
|
|
0
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2019-09-13 14:37:30 +00:00
|
|
|
collection(followers, "#{user.ap_id}/followers", page, showing_items, total)
|
2018-03-21 17:23:27 +00:00
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
|
|
|
end
|
|
|
|
|
2019-07-12 16:41:05 +00:00
|
|
|
def render("followers.json", %{user: user} = opts) do
|
2019-09-13 14:37:30 +00:00
|
|
|
showing_items = (opts[:for] && opts[:for] == user) || !user.info.hide_followers
|
|
|
|
showing_count = showing_items || !user.info.hide_followers_count
|
2019-07-12 16:41:05 +00:00
|
|
|
|
2018-03-31 18:02:09 +00:00
|
|
|
query = User.get_followers_query(user)
|
|
|
|
query = from(user in query, select: [:ap_id])
|
|
|
|
followers = Repo.all(query)
|
2019-02-14 03:13:07 +00:00
|
|
|
|
2019-02-14 03:03:41 +00:00
|
|
|
total =
|
2019-09-13 14:37:30 +00:00
|
|
|
if showing_count do
|
2019-02-14 03:03:41 +00:00
|
|
|
length(followers)
|
|
|
|
else
|
|
|
|
0
|
|
|
|
end
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-21 17:23:27 +00:00
|
|
|
%{
|
2018-03-25 17:34:33 +00:00
|
|
|
"id" => "#{user.ap_id}/followers",
|
2018-03-21 17:23:27 +00:00
|
|
|
"type" => "OrderedCollection",
|
2019-02-14 03:03:41 +00:00
|
|
|
"totalItems" => total,
|
2019-02-14 03:13:07 +00:00
|
|
|
"first" =>
|
2019-09-13 14:37:30 +00:00
|
|
|
if showing_items do
|
|
|
|
collection(followers, "#{user.ap_id}/followers", 1, showing_items, total)
|
2019-07-12 16:41:05 +00:00
|
|
|
else
|
|
|
|
"#{user.ap_id}/followers?page=1"
|
|
|
|
end
|
2018-03-21 17:23:27 +00:00
|
|
|
}
|
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
2017-12-11 09:37:22 +00:00
|
|
|
end
|
2018-03-22 05:23:05 +00:00
|
|
|
|
|
|
|
def render("outbox.json", %{user: user, max_id: max_qid}) do
|
|
|
|
params = %{
|
|
|
|
"limit" => "10"
|
|
|
|
}
|
|
|
|
|
2018-05-06 06:58:59 +00:00
|
|
|
params =
|
|
|
|
if max_qid != nil do
|
|
|
|
Map.put(params, "max_id", max_qid)
|
|
|
|
else
|
|
|
|
params
|
|
|
|
end
|
2018-03-22 05:23:05 +00:00
|
|
|
|
2018-05-26 05:10:12 +00:00
|
|
|
activities = ActivityPub.fetch_user_activities(user, nil, params)
|
2019-02-22 04:37:48 +00:00
|
|
|
|
|
|
|
{max_id, min_id, collection} =
|
|
|
|
if length(activities) > 0 do
|
|
|
|
{
|
|
|
|
Enum.at(Enum.reverse(activities), 0).id,
|
|
|
|
Enum.at(activities, 0).id,
|
|
|
|
Enum.map(activities, fn act ->
|
|
|
|
{:ok, data} = Transmogrifier.prepare_outgoing(act.data)
|
|
|
|
data
|
|
|
|
end)
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
[]
|
|
|
|
}
|
|
|
|
end
|
2018-03-22 05:23:05 +00:00
|
|
|
|
|
|
|
iri = "#{user.ap_id}/outbox"
|
2018-03-30 13:01:53 +00:00
|
|
|
|
2018-03-22 05:23:05 +00:00
|
|
|
page = %{
|
|
|
|
"id" => "#{iri}?max_id=#{max_id}",
|
|
|
|
"type" => "OrderedCollectionPage",
|
|
|
|
"partOf" => iri,
|
|
|
|
"orderedItems" => collection,
|
2019-01-09 15:08:24 +00:00
|
|
|
"next" => "#{iri}?max_id=#{min_id}"
|
2018-03-22 05:23:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if max_qid == nil do
|
|
|
|
%{
|
|
|
|
"id" => iri,
|
|
|
|
"type" => "OrderedCollection",
|
|
|
|
"first" => page
|
|
|
|
}
|
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
|
|
|
else
|
|
|
|
page |> Map.merge(Utils.make_json_ld_header())
|
|
|
|
end
|
|
|
|
end
|
2018-05-04 22:31:46 +00:00
|
|
|
|
2018-12-29 17:15:28 +00:00
|
|
|
def render("inbox.json", %{user: user, max_id: max_qid}) do
|
|
|
|
params = %{
|
|
|
|
"limit" => "10"
|
|
|
|
}
|
|
|
|
|
|
|
|
params =
|
|
|
|
if max_qid != nil do
|
|
|
|
Map.put(params, "max_id", max_qid)
|
|
|
|
else
|
|
|
|
params
|
|
|
|
end
|
|
|
|
|
|
|
|
activities = ActivityPub.fetch_activities([user.ap_id | user.following], params)
|
|
|
|
|
|
|
|
min_id = Enum.at(Enum.reverse(activities), 0).id
|
|
|
|
max_id = Enum.at(activities, 0).id
|
|
|
|
|
|
|
|
collection =
|
|
|
|
Enum.map(activities, fn act ->
|
|
|
|
{:ok, data} = Transmogrifier.prepare_outgoing(act.data)
|
|
|
|
data
|
|
|
|
end)
|
|
|
|
|
|
|
|
iri = "#{user.ap_id}/inbox"
|
|
|
|
|
|
|
|
page = %{
|
|
|
|
"id" => "#{iri}?max_id=#{max_id}",
|
|
|
|
"type" => "OrderedCollectionPage",
|
|
|
|
"partOf" => iri,
|
|
|
|
"orderedItems" => collection,
|
2019-01-09 15:08:24 +00:00
|
|
|
"next" => "#{iri}?max_id=#{min_id}"
|
2018-12-29 17:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if max_qid == nil do
|
|
|
|
%{
|
|
|
|
"id" => iri,
|
|
|
|
"type" => "OrderedCollection",
|
|
|
|
"first" => page
|
|
|
|
}
|
|
|
|
|> Map.merge(Utils.make_json_ld_header())
|
|
|
|
else
|
|
|
|
page |> Map.merge(Utils.make_json_ld_header())
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-12-02 16:35:32 +00:00
|
|
|
def collection(collection, iri, page, show_items \\ true, total \\ nil) do
|
2018-05-04 22:31:46 +00:00
|
|
|
offset = (page - 1) * 10
|
|
|
|
items = Enum.slice(collection, offset, 10)
|
|
|
|
items = Enum.map(items, fn user -> user.ap_id end)
|
2018-05-07 16:11:37 +00:00
|
|
|
total = total || length(collection)
|
2018-05-04 22:31:46 +00:00
|
|
|
|
|
|
|
map = %{
|
|
|
|
"id" => "#{iri}?page=#{page}",
|
|
|
|
"type" => "OrderedCollectionPage",
|
|
|
|
"partOf" => iri,
|
2018-05-07 16:11:37 +00:00
|
|
|
"totalItems" => total,
|
2018-12-02 16:35:32 +00:00
|
|
|
"orderedItems" => if(show_items, do: items, else: [])
|
2018-05-04 22:31:46 +00:00
|
|
|
}
|
|
|
|
|
2018-05-07 16:11:37 +00:00
|
|
|
if offset < total do
|
2018-05-04 22:31:46 +00:00
|
|
|
Map.put(map, "next", "#{iri}?page=#{page + 1}")
|
2019-02-06 17:42:19 +00:00
|
|
|
else
|
|
|
|
map
|
2018-05-04 22:31:46 +00:00
|
|
|
end
|
|
|
|
end
|
2019-03-26 15:40:09 +00:00
|
|
|
|
|
|
|
defp maybe_make_image(func, key, user) do
|
|
|
|
if image = func.(user, no_default: true) do
|
|
|
|
%{
|
|
|
|
key => %{
|
|
|
|
"type" => "Image",
|
|
|
|
"url" => image
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
%{}
|
|
|
|
end
|
|
|
|
end
|
2017-12-11 09:37:22 +00:00
|
|
|
end
|