2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2017-04-17 13:44:41 +02:00
|
|
|
defmodule Pleroma.Web.WebFinger do
|
2019-05-25 06:24:21 +02:00
|
|
|
alias Pleroma.HTTP
|
2019-02-09 16:16:26 +01:00
|
|
|
alias Pleroma.User
|
2017-05-05 11:46:59 +02:00
|
|
|
alias Pleroma.Web
|
2019-05-12 21:05:03 +02:00
|
|
|
alias Pleroma.Web.Federator.Publisher
|
2019-03-05 03:52:23 +01:00
|
|
|
alias Pleroma.Web.XML
|
|
|
|
alias Pleroma.XmlBuilder
|
2018-03-27 16:45:38 +02:00
|
|
|
require Jason
|
2017-04-28 17:41:12 +02:00
|
|
|
require Logger
|
2017-04-17 13:44:41 +02:00
|
|
|
|
2017-04-27 15:18:50 +02:00
|
|
|
def host_meta do
|
2018-03-30 15:01:53 +02:00
|
|
|
base_url = Web.base_url()
|
|
|
|
|
2017-04-17 13:44:41 +02:00
|
|
|
{
|
2018-03-30 15:01:53 +02:00
|
|
|
:XRD,
|
|
|
|
%{xmlns: "http://docs.oasis-open.org/ns/xri/xrd-1.0"},
|
2017-04-17 13:44:41 +02:00
|
|
|
{
|
2018-03-30 15:01:53 +02:00
|
|
|
:Link,
|
|
|
|
%{
|
|
|
|
rel: "lrdd",
|
|
|
|
type: "application/xrd+xml",
|
|
|
|
template: "#{base_url}/.well-known/webfinger?resource={uri}"
|
|
|
|
}
|
2017-04-17 13:44:41 +02:00
|
|
|
}
|
|
|
|
}
|
2018-03-30 15:01:53 +02:00
|
|
|
|> XmlBuilder.to_doc()
|
2017-04-17 13:44:41 +02:00
|
|
|
end
|
|
|
|
|
2018-06-13 08:37:02 +02:00
|
|
|
def webfinger(resource, fmt) when fmt in ["XML", "JSON"] do
|
2018-03-30 15:01:53 +02:00
|
|
|
host = Pleroma.Web.Endpoint.host()
|
2019-07-17 18:59:29 +02:00
|
|
|
regex = ~r/(acct:)?(?<username>[a-z0-9A-Z_\.-]+)@#{host}/
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2018-06-13 08:37:02 +02:00
|
|
|
with %{"username" => username} <- Regex.named_captures(regex, resource),
|
2019-04-22 09:20:43 +02:00
|
|
|
%User{} = user <- User.get_cached_by_nickname(username) do
|
2018-06-13 08:37:02 +02:00
|
|
|
{:ok, represent_user(user, fmt)}
|
2018-03-30 15:01:53 +02:00
|
|
|
else
|
|
|
|
_e ->
|
2018-06-13 08:37:02 +02:00
|
|
|
with %User{} = user <- User.get_cached_by_ap_id(resource) do
|
|
|
|
{:ok, represent_user(user, fmt)}
|
2018-03-30 15:01:53 +02:00
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
{:error, "Couldn't find user"}
|
|
|
|
end
|
2018-03-21 18:58:31 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-12 21:05:03 +02:00
|
|
|
defp gather_links(%User{} = user) do
|
|
|
|
[
|
|
|
|
%{
|
|
|
|
"rel" => "http://webfinger.net/rel/profile-page",
|
|
|
|
"type" => "text/html",
|
|
|
|
"href" => user.ap_id
|
|
|
|
}
|
|
|
|
] ++ Publisher.gather_webfinger_links(user)
|
|
|
|
end
|
|
|
|
|
2020-07-17 05:19:17 +02:00
|
|
|
defp gather_aliases(%User{} = user) do
|
2020-12-31 19:51:57 +01:00
|
|
|
[user.ap_id | user.also_known_as]
|
2020-07-17 05:19:17 +02:00
|
|
|
end
|
|
|
|
|
2018-03-21 18:58:31 +01:00
|
|
|
def represent_user(user, "JSON") do
|
2019-05-22 05:58:15 +02:00
|
|
|
{:ok, user} = User.ensure_keys_present(user)
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2018-03-21 18:58:31 +01:00
|
|
|
%{
|
2018-03-30 15:01:53 +02:00
|
|
|
"subject" => "acct:#{user.nickname}@#{Pleroma.Web.Endpoint.host()}",
|
2020-07-17 05:19:17 +02:00
|
|
|
"aliases" => gather_aliases(user),
|
2019-05-12 21:05:03 +02:00
|
|
|
"links" => gather_links(user)
|
2018-03-21 18:58:31 +01:00
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def represent_user(user, "XML") do
|
2019-05-22 05:58:15 +02:00
|
|
|
{:ok, user} = User.ensure_keys_present(user)
|
2019-05-12 21:05:03 +02:00
|
|
|
|
2020-08-07 23:48:03 +02:00
|
|
|
aliases =
|
2020-12-31 19:51:57 +01:00
|
|
|
user
|
|
|
|
|> gather_aliases()
|
|
|
|
|> Enum.map(&{:Alias, &1})
|
2020-08-07 23:48:03 +02:00
|
|
|
|
2019-05-12 21:05:03 +02:00
|
|
|
links =
|
|
|
|
gather_links(user)
|
|
|
|
|> Enum.map(fn link -> {:Link, link} end)
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2017-04-17 13:44:41 +02:00
|
|
|
{
|
2018-03-30 15:01:53 +02:00
|
|
|
:XRD,
|
|
|
|
%{xmlns: "http://docs.oasis-open.org/ns/xri/xrd-1.0"},
|
2017-04-17 13:44:41 +02:00
|
|
|
[
|
2020-08-07 23:48:03 +02:00
|
|
|
{:Subject, "acct:#{user.nickname}@#{Pleroma.Web.Endpoint.host()}"}
|
|
|
|
] ++ aliases ++ links
|
2017-04-17 13:44:41 +02:00
|
|
|
}
|
2018-03-30 15:01:53 +02:00
|
|
|
|> XmlBuilder.to_doc()
|
2017-04-17 13:44:41 +02:00
|
|
|
end
|
2017-04-28 17:41:12 +02:00
|
|
|
|
2021-03-18 11:49:03 +01:00
|
|
|
defp webfinger_from_xml(body) do
|
|
|
|
with {:ok, doc} <- XML.parse_document(body) do
|
|
|
|
subject = XML.string_from_xpath("//Subject", doc)
|
|
|
|
|
|
|
|
subscribe_address =
|
|
|
|
~s{//Link[@rel="http://ostatus.org/schema/1.0/subscribe"]/@template}
|
|
|
|
|> XML.string_from_xpath(doc)
|
|
|
|
|
|
|
|
ap_id =
|
|
|
|
~s{//Link[@rel="self" and @type="application/activity+json"]/@href}
|
|
|
|
|> XML.string_from_xpath(doc)
|
|
|
|
|
|
|
|
data = %{
|
|
|
|
"subject" => subject,
|
|
|
|
"subscribe_address" => subscribe_address,
|
|
|
|
"ap_id" => ap_id
|
|
|
|
}
|
2020-05-05 13:17:44 +02:00
|
|
|
|
2021-03-18 11:49:03 +01:00
|
|
|
{:ok, data}
|
|
|
|
end
|
2017-04-28 17:41:12 +02:00
|
|
|
end
|
|
|
|
|
2021-03-18 11:49:03 +01:00
|
|
|
defp webfinger_from_json(body) do
|
|
|
|
with {:ok, doc} <- Jason.decode(body) do
|
|
|
|
data =
|
|
|
|
Enum.reduce(doc["links"], %{"subject" => doc["subject"]}, fn link, data ->
|
|
|
|
case {link["type"], link["rel"]} do
|
|
|
|
{"application/activity+json", "self"} ->
|
|
|
|
Map.put(data, "ap_id", link["href"])
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2021-03-18 11:49:03 +01:00
|
|
|
{"application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"", "self"} ->
|
|
|
|
Map.put(data, "ap_id", link["href"])
|
2018-05-19 07:46:13 +02:00
|
|
|
|
2021-03-18 11:49:03 +01:00
|
|
|
{nil, "http://ostatus.org/schema/1.0/subscribe"} ->
|
|
|
|
Map.put(data, "subscribe_address", link["template"])
|
2020-12-18 14:48:38 +01:00
|
|
|
|
2021-03-18 11:49:03 +01:00
|
|
|
_ ->
|
|
|
|
Logger.debug("Unhandled type: #{inspect(link["type"])}")
|
|
|
|
data
|
|
|
|
end
|
|
|
|
end)
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2021-03-18 11:49:03 +01:00
|
|
|
{:ok, data}
|
|
|
|
end
|
2018-03-21 19:53:36 +01:00
|
|
|
end
|
|
|
|
|
2017-08-24 12:54:53 +02:00
|
|
|
def get_template_from_xml(body) do
|
2018-05-21 14:38:12 +02:00
|
|
|
xpath = "//Link[@rel='lrdd']/@template"
|
2018-03-30 15:01:53 +02:00
|
|
|
|
2021-03-18 11:49:03 +01:00
|
|
|
with {:ok, doc} <- XML.parse_document(body),
|
2018-03-30 15:01:53 +02:00
|
|
|
template when template != nil <- XML.string_from_xpath(xpath, doc) do
|
2017-08-24 12:54:53 +02:00
|
|
|
{:ok, template}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_lrdd_template(domain) do
|
2018-12-02 15:08:36 +01:00
|
|
|
with {:ok, %{status: status, body: body}} when status in 200..299 <-
|
2020-09-02 08:16:51 +02:00
|
|
|
HTTP.get("http://#{domain}/.well-known/host-meta") do
|
2017-08-24 12:54:53 +02:00
|
|
|
get_template_from_xml(body)
|
|
|
|
else
|
2017-11-19 02:22:07 +01:00
|
|
|
_ ->
|
2020-03-05 15:31:06 +01:00
|
|
|
with {:ok, %{body: body, status: status}} when status in 200..299 <-
|
2020-09-02 08:16:51 +02:00
|
|
|
HTTP.get("https://#{domain}/.well-known/host-meta") do
|
2017-09-13 11:59:56 +02:00
|
|
|
get_template_from_xml(body)
|
|
|
|
else
|
2018-03-19 19:05:53 +01:00
|
|
|
e -> {:error, "Can't find LRDD template: #{inspect(e)}"}
|
2017-09-13 11:59:56 +02:00
|
|
|
end
|
2017-08-24 12:54:53 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-25 17:35:59 +02:00
|
|
|
defp get_address_from_domain(domain, encoded_account) when is_binary(domain) do
|
|
|
|
case find_lrdd_template(domain) do
|
|
|
|
{:ok, template} ->
|
|
|
|
String.replace(template, "{uri}", encoded_account)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
"https://#{domain}/.well-known/webfinger?resource=#{encoded_account}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp get_address_from_domain(_, _), do: nil
|
|
|
|
|
2019-07-24 17:13:10 +02:00
|
|
|
@spec finger(String.t()) :: {:ok, map()} | {:error, any()}
|
2017-08-24 12:54:53 +02:00
|
|
|
def finger(account) do
|
2018-02-23 16:55:12 +01:00
|
|
|
account = String.trim_leading(account, "@")
|
2018-03-30 15:01:53 +02:00
|
|
|
|
|
|
|
domain =
|
|
|
|
with [_name, domain] <- String.split(account, "@") do
|
|
|
|
domain
|
|
|
|
else
|
|
|
|
_e ->
|
|
|
|
URI.parse(account).host
|
|
|
|
end
|
2017-04-29 19:06:01 +02:00
|
|
|
|
2020-05-03 13:48:01 +02:00
|
|
|
encoded_account = URI.encode("acct:#{account}")
|
|
|
|
|
2020-08-25 17:35:59 +02:00
|
|
|
with address when is_binary(address) <- get_address_from_domain(domain, encoded_account),
|
|
|
|
response <-
|
2019-05-25 06:24:21 +02:00
|
|
|
HTTP.get(
|
2018-03-30 15:01:53 +02:00
|
|
|
address,
|
2020-02-11 08:12:57 +01:00
|
|
|
[{"accept", "application/xrd+xml,application/jrd+json"}]
|
2018-03-30 15:01:53 +02:00
|
|
|
),
|
2021-03-18 11:49:03 +01:00
|
|
|
{:ok, %{status: status, body: body, headers: headers}} when status in 200..299 <-
|
|
|
|
response do
|
|
|
|
case List.keyfind(headers, "content-type", 0) do
|
|
|
|
{_, content_type} ->
|
|
|
|
case Plug.Conn.Utils.media_type(content_type) do
|
|
|
|
{:ok, "application", subtype, _} when subtype in ~w(xrd+xml xml) ->
|
|
|
|
webfinger_from_xml(body)
|
|
|
|
|
|
|
|
{:ok, "application", subtype, _} when subtype in ~w(jrd+json json) ->
|
|
|
|
webfinger_from_json(body)
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, {:content_type, content_type}}
|
|
|
|
end
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:error, {:content_type, nil}}
|
2018-03-30 15:01:53 +02:00
|
|
|
end
|
2017-04-28 17:41:12 +02:00
|
|
|
else
|
|
|
|
e ->
|
2018-03-19 18:31:58 +01:00
|
|
|
Logger.debug(fn -> "Couldn't finger #{account}" end)
|
2017-05-05 12:07:38 +02:00
|
|
|
Logger.debug(fn -> inspect(e) end)
|
2017-04-28 17:41:12 +02:00
|
|
|
{:error, e}
|
|
|
|
end
|
|
|
|
end
|
2017-04-17 13:44:41 +02:00
|
|
|
end
|