pleroma/lib/pleroma/web/web_finger.ex

256 lines
7.3 KiB
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
2017-04-17 11:44:41 +00:00
defmodule Pleroma.Web.WebFinger do
2019-05-25 04:24:21 +00:00
alias Pleroma.HTTP
2019-02-09 15:16:26 +00:00
alias Pleroma.User
alias Pleroma.Web.ActivityPub.Publisher
alias Pleroma.Web.Endpoint
alias Pleroma.Web.XML
alias Pleroma.XmlBuilder
2018-03-27 14:45:38 +00:00
require Jason
2017-04-28 15:41:12 +00:00
require Logger
2017-04-17 11:44:41 +00:00
def host_meta do
base_url = Endpoint.url()
2018-03-30 13:01:53 +00:00
2017-04-17 11:44:41 +00:00
{
2018-03-30 13:01:53 +00:00
:XRD,
%{xmlns: "http://docs.oasis-open.org/ns/xri/xrd-1.0"},
2017-04-17 11:44:41 +00:00
{
2018-03-30 13:01:53 +00:00
:Link,
%{
rel: "lrdd",
type: "application/xrd+xml",
template: "#{base_url}/.well-known/webfinger?resource={uri}"
}
2017-04-17 11:44:41 +00:00
}
}
2018-03-30 13:01:53 +00:00
|> XmlBuilder.to_doc()
2017-04-17 11:44:41 +00:00
end
def webfinger(resource, fmt) when fmt in ["XML", "JSON"] do
2018-03-30 13:01:53 +00:00
host = Pleroma.Web.Endpoint.host()
2021-03-04 10:06:12 +00:00
regex =
if webfinger_domain = Pleroma.Config.get([__MODULE__, :domain]) do
~r/(acct:)?(?<username>[a-z0-9A-Z_\.-]+)@(#{host}|#{webfinger_domain})/
else
~r/(acct:)?(?<username>[a-z0-9A-Z_\.-]+)@#{host}/
end
2018-03-30 13:01:53 +00:00
with %{"username" => username} <- Regex.named_captures(regex, resource),
2019-04-22 07:20:43 +00:00
%User{} = user <- User.get_cached_by_nickname(username) do
{:ok, represent_user(user, fmt)}
2018-03-30 13:01:53 +00:00
else
_e ->
with %User{} = user <- User.get_cached_by_ap_id(resource) do
{:ok, represent_user(user, fmt)}
2018-03-30 13:01:53 +00:00
else
_e ->
{:error, "Couldn't find user"}
end
2018-03-21 17:58:31 +00:00
end
end
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 03:19:17 +00:00
defp gather_aliases(%User{} = user) do
2020-12-31 18:51:57 +00:00
[user.ap_id | user.also_known_as]
2020-07-17 03:19:17 +00:00
end
2018-03-21 17:58:31 +00:00
def represent_user(user, "JSON") do
%{
"subject" => "acct:#{user.nickname}@#{host()}",
2020-07-17 03:19:17 +00:00
"aliases" => gather_aliases(user),
"links" => gather_links(user)
2018-03-21 17:58:31 +00:00
}
end
def represent_user(user, "XML") do
2020-08-07 21:48:03 +00:00
aliases =
2020-12-31 18:51:57 +00:00
user
|> gather_aliases()
|> Enum.map(&{:Alias, &1})
2020-08-07 21:48:03 +00:00
links =
gather_links(user)
|> Enum.map(fn link -> {:Link, link} end)
2018-03-30 13:01:53 +00:00
2017-04-17 11:44:41 +00:00
{
2018-03-30 13:01:53 +00:00
:XRD,
%{xmlns: "http://docs.oasis-open.org/ns/xri/xrd-1.0"},
2017-04-17 11:44:41 +00:00
[
{:Subject, "acct:#{user.nickname}@#{host()}"}
2020-08-07 21:48:03 +00:00
] ++ aliases ++ links
2017-04-17 11:44:41 +00:00
}
2018-03-30 13:01:53 +00:00
|> XmlBuilder.to_doc()
2017-04-17 11:44:41 +00:00
end
2017-04-28 15:41:12 +00:00
def host do
Pleroma.Config.get([__MODULE__, :domain]) || Pleroma.Web.Endpoint.host()
end
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
}
{:ok, data}
end
2017-04-28 15:41:12 +00:00
end
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 13:01:53 +00:00
{"application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"", "self"} ->
Map.put(data, "ap_id", link["href"])
{nil, "http://ostatus.org/schema/1.0/subscribe"} ->
Map.put(data, "subscribe_address", link["template"])
_ ->
Logger.debug("Unhandled type: #{inspect(link["type"])}")
data
end
end)
2018-03-30 13:01:53 +00:00
{:ok, data}
end
end
2017-08-24 10:54:53 +00:00
def get_template_from_xml(body) do
xpath = "//Link[@rel='lrdd']/@template"
2018-03-30 13:01:53 +00:00
with {:ok, doc} <- XML.parse_document(body),
2018-03-30 13:01:53 +00:00
template when template != nil <- XML.string_from_xpath(xpath, doc) do
2017-08-24 10:54:53 +00:00
{:ok, template}
end
end
@cachex Pleroma.Config.get([:cachex, :provider], Cachex)
2017-08-24 10:54:53 +00:00
def find_lrdd_template(domain) do
@cachex.fetch!(:host_meta_cache, domain, fn _ ->
{:commit, fetch_lrdd_template(domain)}
end)
rescue
e -> {:error, "Cachex error: #{inspect(e)}"}
end
defp fetch_lrdd_template(domain) do
2021-03-04 10:06:12 +00:00
# WebFinger is restricted to HTTPS - https://tools.ietf.org/html/rfc7033#section-9.1
meta_url = "https://#{domain}/.well-known/host-meta"
with {:ok, %{status: status, body: body}} when status in 200..299 <- HTTP.get(meta_url) do
2017-08-24 10:54:53 +00:00
get_template_from_xml(body)
else
2021-03-04 10:06:12 +00:00
error ->
Logger.warning("Can't find LRDD template in #{inspect(meta_url)}: #{inspect(error)}")
2021-03-04 10:06:12 +00:00
{:error, :lrdd_not_found}
2017-08-24 10:54:53 +00:00
end
end
defp get_address_from_domain(domain, "acct:" <> _ = encoded_account) when is_binary(domain) do
2020-08-25 15:35:59 +00:00
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(domain, account) when is_binary(domain) do
encoded_account = URI.encode("acct:#{account}")
get_address_from_domain(domain, encoded_account)
end
2021-03-04 10:06:12 +00:00
defp get_address_from_domain(_, _), do: {:error, :webfinger_no_domain}
2020-08-25 15:35:59 +00:00
2019-07-24 15:13:10 +00:00
@spec finger(String.t()) :: {:ok, map()} | {:error, any()}
2017-08-24 10:54:53 +00:00
def finger(account) do
2018-02-23 15:55:12 +00:00
account = String.trim_leading(account, "@")
2018-03-30 13:01:53 +00:00
domain =
with [_name, domain] <- String.split(account, "@") do
domain
else
_e ->
URI.parse(account).host
end
2017-04-29 17:06:01 +00:00
with address when is_binary(address) <- get_address_from_domain(domain, account),
2021-03-04 10:06:12 +00:00
{:ok, %{status: status, body: body, headers: headers}} when status in 200..299 <-
2019-05-25 04:24:21 +00:00
HTTP.get(
2018-03-30 13:01:53 +00:00
address,
2020-02-11 07:12:57 +00:00
[{"accept", "application/xrd+xml,application/jrd+json"}]
2021-03-04 10:06:12 +00:00
) 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 13:01:53 +00:00
end
2023-08-23 18:10:19 +00:00
|> case do
{:ok, data} -> validate_webfinger(address, data)
error -> error
end
2017-04-28 15:41:12 +00:00
else
2021-03-04 10:06:12 +00:00
error ->
Logger.debug("Couldn't finger #{account}: #{inspect(error)}")
error
2017-04-28 15:41:12 +00:00
end
end
2023-08-23 18:10:19 +00:00
defp validate_webfinger(request_url, %{"subject" => "acct:" <> acct = subject} = data) do
with [_name, acct_host] <- String.split(acct, "@"),
{_, url} <- {:address, get_address_from_domain(acct_host, subject)},
%URI{host: request_host} <- URI.parse(request_url),
%URI{host: acct_host} <- URI.parse(url),
{_, true} <- {:hosts_match, acct_host == request_host} do
2023-08-23 18:10:19 +00:00
{:ok, data}
else
_ -> {:error, {:webfinger_invalid, request_url, data}}
2023-08-23 18:10:19 +00:00
end
end
defp validate_webfinger(url, data), do: {:error, {:webfinger_invalid, url, data}}
2017-04-17 11:44:41 +00:00
end