mobilizon.chapril.org-mobil.../lib/web/controllers/web_finger_controller.ex

42 lines
1.2 KiB
Elixir
Raw Permalink Normal View History

# 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 21:36:50 +01:00
defmodule Mobilizon.Web.WebFingerController do
@moduledoc """
Handles Webfinger requests
"""
2020-01-22 02:14:42 +01:00
2020-01-26 21:36:50 +01:00
use Mobilizon.Web, :controller
alias Mobilizon.Federation.WebFinger
2020-01-22 02:14:42 +01:00
2020-01-26 21:36:50 +01:00
plug(Mobilizon.Web.Plugs.Federating)
@doc """
Provides /.well-known/host-meta
"""
@spec host_meta(Plug.Conn.t(), any()) :: Plug.Conn.t() | no_return
def host_meta(conn, _params) do
xml = WebFinger.host_meta()
conn
|> put_resp_content_type("application/xrd+xml")
|> send_resp(200, xml)
end
@doc """
Provides /.well-known/webfinger
"""
@spec webfinger(Plug.Conn.t(), any()) :: Plug.Conn.t() | no_return
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)
_e -> send_resp(conn, 404, "Couldn't find user")
end
end
def webfinger(conn, _), do: send_resp(conn, 400, "No query provided")
end