2018-12-27 11:24:04 +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
|
|
|
|
# Upstream: https://git.pleroma.social/pleroma/pleroma/blob/develop/lib/pleroma/web/web_finger/web_finger_controller.ex
|
|
|
|
|
2018-10-11 17:37:39 +02:00
|
|
|
defmodule MobilizonWeb.WebFingerController do
|
2018-12-27 11:31:06 +01:00
|
|
|
@moduledoc """
|
|
|
|
Handles Webfinger requests
|
|
|
|
"""
|
2018-10-11 17:37:39 +02:00
|
|
|
use MobilizonWeb, :controller
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2018-10-11 17:37:39 +02:00
|
|
|
alias Mobilizon.Service.WebFinger
|
2018-05-17 11:32:23 +02:00
|
|
|
|
2018-12-27 11:31:06 +01:00
|
|
|
@doc """
|
|
|
|
Provides /.well-known/host-meta
|
|
|
|
"""
|
2018-05-17 11:32:23 +02: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 11:31:06 +01:00
|
|
|
@doc """
|
|
|
|
Provides /.well-known/webfinger
|
|
|
|
"""
|
2018-05-17 11:32:23 +02:00
|
|
|
def webfinger(conn, %{"resource" => resource}) do
|
2019-04-16 12:50:56 +02:00
|
|
|
case WebFinger.webfinger(resource, "JSON") do
|
|
|
|
{:ok, response} -> json(conn, response)
|
2018-05-17 11:32:23 +02:00
|
|
|
_e -> send_resp(conn, 404, "Couldn't find user")
|
|
|
|
end
|
|
|
|
end
|
2018-11-06 10:30:27 +01:00
|
|
|
|
2018-12-27 11:31:06 +01:00
|
|
|
def webfinger(conn, _), do: send_resp(conn, 400, "No query provided")
|
2018-05-17 11:32:23 +02:00
|
|
|
end
|