diff options
author | Roger Braun <rbraun@Bobble.local> | 2017-09-13 11:59:56 +0200 |
---|---|---|
committer | Roger Braun <rbraun@Bobble.local> | 2017-09-13 11:59:56 +0200 |
commit | f03524805fdc95b9681f59a68a1edb2885f2e7ba (patch) | |
tree | 45c3fb1802151750c152f7873c6cddb7b6a00da2 /lib | |
parent | 07b694814ee98c1062c12140245c48ddc22275ec (diff) | |
download | pleroma-f03524805fdc95b9681f59a68a1edb2885f2e7ba.tar.gz |
Try host-meta call over https.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/web_finger/web_finger.ex | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/pleroma/web/web_finger/web_finger.ex b/lib/pleroma/web/web_finger/web_finger.ex index da38f662c..5a8cfbe99 100644 --- a/lib/pleroma/web/web_finger/web_finger.ex +++ b/lib/pleroma/web/web_finger/web_finger.ex @@ -62,11 +62,6 @@ defmodule Pleroma.Web.WebFinger do end end - # FIXME: Make this call the host-meta to find the actual address. - defp webfinger_address(domain) do - "//#{domain}/.well-known/webfinger" - end - defp webfinger_from_xml(doc) do magic_key = XML.string_from_xpath(~s{//Link[@rel="magic-public-key"]/@href}, doc) "data:application/magic-public-key," <> magic_key = magic_key @@ -91,10 +86,15 @@ defmodule Pleroma.Web.WebFinger do end def find_lrdd_template(domain) do - with {:ok, %{status_code: status_code, body: body}} <- @httpoison.get("http://#{domain}/.well-known/host-meta", [], follow_redirect: true) do + with {:ok, %{status_code: status_code, body: body}} when status_code in 200..299 <- @httpoison.get("http://#{domain}/.well-known/host-meta", [], follow_redirect: true) do get_template_from_xml(body) else - e -> {:error, "Can't find lrdd template: #{inspect(e)}"} + e -> + with {:ok, %{body: body}} <- @httpoison.get("https://#{domain}/.well-known/host-meta", []) do + get_template_from_xml(body) + else + e -> {:error, "Can't find lrdd template: #{inspect(e)}"} + end end end |