matches https://docs.joinmastodon.org/methods/follow_requests/#get mostly Co-authored-by: FloatingGhost <hannah@coffee-and-dreams.uk> Reviewed-on: https://akkoma.dev/AkkomaGang/akkoma/pulls/460
		
			
				
	
	
		
			68 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			68 lines
		
	
	
	
		
			2.2 KiB
		
	
	
	
		
			Elixir
		
	
	
	
	
	
# Pleroma: A lightweight social networking server
 | 
						|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
 | 
						|
# SPDX-License-Identifier: AGPL-3.0-only
 | 
						|
 | 
						|
defmodule Pleroma.Web.MastodonAPI.FollowRequestController do
 | 
						|
  use Pleroma.Web, :controller
 | 
						|
 | 
						|
  import Pleroma.Web.ControllerHelper,
 | 
						|
    only: [add_link_headers: 2]
 | 
						|
 | 
						|
  alias Pleroma.User
 | 
						|
  alias Pleroma.Web.CommonAPI
 | 
						|
  alias Pleroma.Web.Plugs.OAuthScopesPlug
 | 
						|
  alias Pleroma.Pagination
 | 
						|
 | 
						|
  plug(Pleroma.Web.ApiSpec.CastAndValidate)
 | 
						|
  plug(:assign_follower when action != :index)
 | 
						|
 | 
						|
  action_fallback(:errors)
 | 
						|
 | 
						|
  plug(OAuthScopesPlug, %{scopes: ["follow", "read:follows"]} when action == :index)
 | 
						|
 | 
						|
  plug(
 | 
						|
    OAuthScopesPlug,
 | 
						|
    %{scopes: ["follow", "write:follows"]} when action != :index
 | 
						|
  )
 | 
						|
 | 
						|
  defdelegate open_api_operation(action), to: Pleroma.Web.ApiSpec.FollowRequestOperation
 | 
						|
 | 
						|
  @doc "GET /api/v1/follow_requests"
 | 
						|
  def index(%{assigns: %{user: followed}} = conn, params) do
 | 
						|
    follow_requests =
 | 
						|
      followed
 | 
						|
      |> User.get_follow_requests_query()
 | 
						|
      |> Pagination.fetch_paginated(params, :keyset, :follower)
 | 
						|
 | 
						|
    conn
 | 
						|
    |> add_link_headers(follow_requests)
 | 
						|
    |> render("index.json", for: followed, users: follow_requests, as: :user)
 | 
						|
  end
 | 
						|
 | 
						|
  @doc "POST /api/v1/follow_requests/:id/authorize"
 | 
						|
  def authorize(%{assigns: %{user: followed, follower: follower}} = conn, _params) do
 | 
						|
    with {:ok, follower} <- CommonAPI.accept_follow_request(follower, followed) do
 | 
						|
      render(conn, "relationship.json", user: followed, target: follower)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  @doc "POST /api/v1/follow_requests/:id/reject"
 | 
						|
  def reject(%{assigns: %{user: followed, follower: follower}} = conn, _params) do
 | 
						|
    with {:ok, follower} <- CommonAPI.reject_follow_request(follower, followed) do
 | 
						|
      render(conn, "relationship.json", user: followed, target: follower)
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  defp assign_follower(%{params: %{id: id}} = conn, _) do
 | 
						|
    case User.get_cached_by_id(id) do
 | 
						|
      %User{} = follower -> assign(conn, :follower, follower)
 | 
						|
      nil -> Pleroma.Web.MastodonAPI.FallbackController.call(conn, {:error, :not_found}) |> halt()
 | 
						|
    end
 | 
						|
  end
 | 
						|
 | 
						|
  defp errors(conn, {:error, message}) do
 | 
						|
    conn
 | 
						|
    |> put_status(:forbidden)
 | 
						|
    |> json(%{error: message})
 | 
						|
  end
 | 
						|
end
 |