forked from AkkomaGang/akkoma
webfinger: attempt to fall back if LRDD template cannot be found
This commit is contained in:
parent
8aa639a450
commit
1decd2ecb2
1 changed files with 8 additions and 3 deletions
|
@ -146,9 +146,14 @@ def finger(account) do
|
||||||
URI.parse(account).host
|
URI.parse(account).host
|
||||||
end
|
end
|
||||||
|
|
||||||
with {:ok, template} <- find_lrdd_template(domain),
|
case find_lrdd_template(domain) do
|
||||||
address <- String.replace(template, "{uri}", URI.encode(account)),
|
{:ok, template} ->
|
||||||
response <- @httpoison.get(address, ["Accept": "application/xrd+xml"]),
|
address = String.replace(template, "{uri}", URI.encode(account))
|
||||||
|
_ ->
|
||||||
|
address = "http://#{domain}/.well-known/webfinger?resource=#{account}"
|
||||||
|
end
|
||||||
|
|
||||||
|
with response <- @httpoison.get(address, ["Accept": "application/xrd+xml"]),
|
||||||
{:ok, %{status_code: status_code, body: body}} when status_code in 200..299 <- response,
|
{:ok, %{status_code: status_code, body: body}} when status_code in 200..299 <- response,
|
||||||
doc when doc != :error<- XML.parse_document(body),
|
doc when doc != :error<- XML.parse_document(body),
|
||||||
{:ok, data} <- webfinger_from_xml(doc) do
|
{:ok, data} <- webfinger_from_xml(doc) do
|
||||||
|
|
Loading…
Reference in a new issue