36 lines
		
	
	
	
		
			980 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			980 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
defmodule Pleroma.Web.WebFinger.WebFingerController do
 | 
						|
  use Pleroma.Web, :controller
 | 
						|
 | 
						|
  alias Pleroma.Web.WebFinger
 | 
						|
 | 
						|
  def host_meta(conn, _params) do
 | 
						|
    xml = WebFinger.host_meta()
 | 
						|
 | 
						|
    conn
 | 
						|
    |> put_resp_content_type("application/xrd+xml")
 | 
						|
    |> send_resp(200, xml)
 | 
						|
  end
 | 
						|
 | 
						|
  def webfinger(conn, %{"resource" => resource}) do
 | 
						|
    case get_format(conn) do
 | 
						|
      n when n in ["xml", "xrd+xml"] ->
 | 
						|
        with {:ok, response} <- WebFinger.webfinger(resource, "XML") do
 | 
						|
          conn
 | 
						|
          |> put_resp_content_type("application/xrd+xml")
 | 
						|
          |> send_resp(200, response)
 | 
						|
        else
 | 
						|
          _e -> send_resp(conn, 404, "Couldn't find user")
 | 
						|
        end
 | 
						|
 | 
						|
      n when n in ["json", "jrd+json"] ->
 | 
						|
        with {:ok, response} <- WebFinger.webfinger(resource, "JSON") do
 | 
						|
          json(conn, response)
 | 
						|
        else
 | 
						|
          _e -> send_resp(conn, 404, "Couldn't find user")
 | 
						|
        end
 | 
						|
 | 
						|
      _ ->
 | 
						|
        send_resp(conn, 404, "Unsupported format")
 | 
						|
    end
 | 
						|
  end
 | 
						|
end
 |