forked from AkkomaGang/akkoma
b93856874d
# Conflicts: # CHANGELOG.md # lib/pleroma/web/mastodon_api/controllers/mastodon_api_controller.ex # lib/pleroma/web/router.ex
39 lines
1.1 KiB
Elixir
39 lines
1.1 KiB
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
defmodule Pleroma.Web.MastodonAPI.DomainBlockController do
|
|
use Pleroma.Web, :controller
|
|
|
|
alias Pleroma.Plugs.OAuthScopesPlug
|
|
alias Pleroma.User
|
|
|
|
plug(
|
|
OAuthScopesPlug,
|
|
%{scopes: ["follow", "read:blocks"]} when action == :index
|
|
)
|
|
|
|
plug(
|
|
OAuthScopesPlug,
|
|
%{scopes: ["follow", "write:blocks"]} when action != :index
|
|
)
|
|
|
|
plug(Pleroma.Plugs.EnsurePublicOrAuthenticatedPlug)
|
|
|
|
@doc "GET /api/v1/domain_blocks"
|
|
def index(%{assigns: %{user: %{info: info}}} = conn, _) do
|
|
json(conn, Map.get(info, :domain_blocks, []))
|
|
end
|
|
|
|
@doc "POST /api/v1/domain_blocks"
|
|
def create(%{assigns: %{user: blocker}} = conn, %{"domain" => domain}) do
|
|
User.block_domain(blocker, domain)
|
|
json(conn, %{})
|
|
end
|
|
|
|
@doc "DELETE /api/v1/domain_blocks"
|
|
def delete(%{assigns: %{user: blocker}} = conn, %{"domain" => domain}) do
|
|
User.unblock_domain(blocker, domain)
|
|
json(conn, %{})
|
|
end
|
|
end
|