webfinger: interpret application/ld+json links as an alternate to application/activity+json
This commit is contained in:
parent
cce5a9cb1c
commit
d1f6ecf607
@ -166,6 +166,14 @@ defmodule Pleroma.Web.WebFinger do
|
||||
doc
|
||||
)
|
||||
|
||||
if ap_id == nil do
|
||||
ap_id =
|
||||
XML.string_from_xpath(
|
||||
~s{//Link[@rel="self" and @type="application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\""]/@href},
|
||||
doc
|
||||
)
|
||||
end
|
||||
|
||||
data = %{
|
||||
"magic_key" => magic_key,
|
||||
"topic" => topic,
|
||||
@ -185,6 +193,9 @@ defmodule Pleroma.Web.WebFinger do
|
||||
{"application/activity+json", "self"} ->
|
||||
Map.put(data, "ap_id", link["href"])
|
||||
|
||||
{"application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"", "self"} ->
|
||||
Map.put(data, "ap_id", link["href"])
|
||||
|
||||
{_, "magic-public-key"} ->
|
||||
"data:application/magic-public-key," <> magic_key = link["href"]
|
||||
Map.put(data, "magic_key", magic_key)
|
||||
|
Loading…
Reference in New Issue
Block a user