2018-12-27 10:24:04 +00:00
|
|
|
# Portions of this file are derived from Pleroma:
|
|
|
|
# Copyright © 2017-2018 Pleroma Authors <https://pleroma.social>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
# Upstream: https://git.pleroma.social/pleroma/pleroma/blob/develop/lib/pleroma/web/web_finger/web_finger_controller.ex
|
|
|
|
|
2020-01-26 20:36:50 +00:00
|
|
|
defmodule Mobilizon.Web.WebFingerController do
|
2018-12-27 10:31:06 +00:00
|
|
|
@moduledoc """
|
|
|
|
Handles Webfinger requests
|
|
|
|
"""
|
2020-01-22 01:14:42 +00:00
|
|
|
|
2020-01-26 20:36:50 +00:00
|
|
|
use Mobilizon.Web, :controller
|
2018-05-17 09:32:23 +00:00
|
|
|
|
2020-01-22 21:40:40 +00:00
|
|
|
alias Mobilizon.Federation.WebFinger
|
2020-01-22 01:14:42 +00:00
|
|
|
|
2020-01-26 20:36:50 +00:00
|
|
|
plug(Mobilizon.Web.Plugs.Federating)
|
2018-05-17 09:32:23 +00:00
|
|
|
|
2018-12-27 10:31:06 +00:00
|
|
|
@doc """
|
|
|
|
Provides /.well-known/host-meta
|
|
|
|
"""
|
2018-05-17 09:32:23 +00:00
|
|
|
def host_meta(conn, _params) do
|
|
|
|
xml = WebFinger.host_meta()
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_resp_content_type("application/xrd+xml")
|
|
|
|
|> send_resp(200, xml)
|
|
|
|
end
|
|
|
|
|
2018-12-27 10:31:06 +00:00
|
|
|
@doc """
|
|
|
|
Provides /.well-known/webfinger
|
|
|
|
"""
|
2018-05-17 09:32:23 +00:00
|
|
|
def webfinger(conn, %{"resource" => resource}) do
|
2019-04-16 10:50:56 +00:00
|
|
|
case WebFinger.webfinger(resource, "JSON") do
|
|
|
|
{:ok, response} -> json(conn, response)
|
2018-05-17 09:32:23 +00:00
|
|
|
_e -> send_resp(conn, 404, "Couldn't find user")
|
|
|
|
end
|
|
|
|
end
|
2018-11-06 09:30:27 +00:00
|
|
|
|
2018-12-27 10:31:06 +00:00
|
|
|
def webfinger(conn, _), do: send_resp(conn, 400, "No query provided")
|
2018-05-17 09:32:23 +00:00
|
|
|
end
|