2018-12-24 13:34:45 +01:00
|
|
|
# Portions of this file are derived from Pleroma:
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
2018-12-27 11:24:04 +01:00
|
|
|
# Upstream: https://git.pleroma.social/pleroma/pleroma/blob/develop/lib/pleroma/web/web_finger/web_finger.ex
|
2018-12-24 13:34:45 +01:00
|
|
|
|
2018-10-11 17:37:39 +02:00
|
|
|
defmodule Mobilizon.Service.WebFinger do
|
2018-06-14 18:15:27 +02:00
|
|
|
@moduledoc """
|
|
|
|
# WebFinger
|
|
|
|
|
2018-12-27 11:24:04 +01:00
|
|
|
Performs the WebFinger requests and responses (JSON only)
|
2018-06-14 18:15:27 +02:00
|
|
|
"""
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2018-10-11 17:37:39 +02:00
|
|
|
alias Mobilizon.Actors
|
2018-11-28 10:49:16 +01:00
|
|
|
alias Mobilizon.Actors.Actor
|
2018-10-11 17:37:39 +02:00
|
|
|
alias Mobilizon.Service.XmlBuilder
|
2018-05-17 11:32:23 +02:00
|
|
|
require Jason
|
|
|
|
require Logger
|
|
|
|
|
|
|
|
def host_meta do
|
2018-10-11 17:37:39 +02:00
|
|
|
base_url = MobilizonWeb.Endpoint.url()
|
2018-05-17 11:32:23 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
:XRD,
|
|
|
|
%{xmlns: "http://docs.oasis-open.org/ns/xri/xrd-1.0"},
|
|
|
|
{
|
|
|
|
:Link,
|
|
|
|
%{
|
|
|
|
rel: "lrdd",
|
|
|
|
type: "application/xrd+xml",
|
|
|
|
template: "#{base_url}/.well-known/webfinger?resource={uri}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|> XmlBuilder.to_doc()
|
|
|
|
end
|
|
|
|
|
|
|
|
def webfinger(resource, "JSON") do
|
2018-10-11 17:37:39 +02:00
|
|
|
host = MobilizonWeb.Endpoint.host()
|
2018-05-18 09:56:21 +02:00
|
|
|
regex = ~r/(acct:)?(?<name>\w+)@#{host}/
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2018-11-28 10:49:16 +01:00
|
|
|
with %{"name" => name} <- Regex.named_captures(regex, resource),
|
|
|
|
%Actor{} = actor <- Actors.get_local_actor_by_name(name) do
|
2018-11-27 18:42:56 +01:00
|
|
|
{:ok, represent_actor(actor, "JSON")}
|
2018-05-17 11:32:23 +02:00
|
|
|
else
|
|
|
|
_e ->
|
2019-07-23 18:06:22 +02:00
|
|
|
case Actors.get_actor_by_url(resource) do
|
|
|
|
{:ok, %Actor{} = actor} when not is_nil(actor) ->
|
|
|
|
{:ok, represent_actor(actor, "JSON")}
|
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
_e ->
|
2018-11-27 18:42:56 +01:00
|
|
|
{:error, "Couldn't find actor"}
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-27 18:42:56 +01:00
|
|
|
@spec represent_actor(Actor.t()) :: struct()
|
|
|
|
def represent_actor(actor), do: represent_actor(actor, "JSON")
|
|
|
|
|
2019-02-22 16:11:57 +01:00
|
|
|
@spec represent_actor(Actor.t(), String.t()) :: struct()
|
2018-11-27 18:42:56 +01:00
|
|
|
def represent_actor(actor, "JSON") do
|
2018-05-17 11:32:23 +02:00
|
|
|
%{
|
2018-11-27 18:42:56 +01:00
|
|
|
"subject" => "acct:#{actor.preferred_username}@#{MobilizonWeb.Endpoint.host()}",
|
|
|
|
"aliases" => [actor.url],
|
2018-05-17 11:32:23 +02:00
|
|
|
"links" => [
|
2018-11-27 18:42:56 +01:00
|
|
|
%{"rel" => "self", "type" => "application/activity+json", "href" => actor.url},
|
2018-11-07 16:45:11 +01:00
|
|
|
%{
|
|
|
|
"rel" => "https://webfinger.net/rel/profile-page/",
|
|
|
|
"type" => "text/html",
|
2018-11-27 18:42:56 +01:00
|
|
|
"href" => actor.url
|
2018-11-07 16:45:11 +01:00
|
|
|
}
|
2018-05-17 11:32:23 +02:00
|
|
|
]
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
defp webfinger_from_json(doc) 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, "url", link["href"])
|
2018-07-27 10:45:35 +02:00
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
_ ->
|
2018-07-27 10:45:35 +02:00
|
|
|
Logger.debug(fn ->
|
2018-06-14 18:15:27 +02:00
|
|
|
"Unhandled type: #{inspect(link["type"])}"
|
2018-07-27 10:45:35 +02:00
|
|
|
end)
|
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
data
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
{:ok, data}
|
|
|
|
end
|
|
|
|
|
2018-05-18 09:56:21 +02:00
|
|
|
def finger(actor) do
|
|
|
|
actor = String.trim_leading(actor, "@")
|
2018-05-17 11:32:23 +02:00
|
|
|
|
|
|
|
domain =
|
2019-07-23 18:06:22 +02:00
|
|
|
case String.split(actor, "@") do
|
|
|
|
[_name, domain] ->
|
|
|
|
domain
|
|
|
|
|
2018-05-17 11:32:23 +02:00
|
|
|
_e ->
|
2018-05-18 09:56:21 +02:00
|
|
|
URI.parse(actor).host
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|
|
|
|
|
2018-07-27 10:45:35 +02:00
|
|
|
address = "http://#{domain}/.well-known/webfinger?resource=acct:#{actor}"
|
|
|
|
|
|
|
|
Logger.debug(inspect(address))
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2018-11-07 16:19:44 +01:00
|
|
|
with false <- is_nil(domain),
|
|
|
|
{:ok, %HTTPoison.Response{} = response} <-
|
2018-07-27 10:45:35 +02:00
|
|
|
HTTPoison.get(
|
|
|
|
address,
|
|
|
|
[Accept: "application/json, application/activity+json, application/jrd+json"],
|
|
|
|
follow_redirect: true
|
|
|
|
),
|
2018-11-07 16:30:55 +01:00
|
|
|
%{status_code: status_code, body: body} when status_code in 200..299 <- response,
|
|
|
|
{:ok, doc} <- Jason.decode(body) do
|
2018-07-27 10:45:35 +02:00
|
|
|
webfinger_from_json(doc)
|
2018-05-17 11:32:23 +02:00
|
|
|
else
|
|
|
|
e ->
|
2018-05-18 09:56:21 +02:00
|
|
|
Logger.debug(fn -> "Couldn't finger #{actor}" end)
|
2018-05-17 11:32:23 +02:00
|
|
|
Logger.debug(fn -> inspect(e) end)
|
|
|
|
{:error, e}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|