summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/api_spec/operations/admin/relay_operation.ex
blob: e06b2d1645cc8af739de6a3937c45184e336e75e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.ApiSpec.Admin.RelayOperation do
  alias OpenApiSpex.Operation
  alias OpenApiSpex.Schema

  import Pleroma.Web.ApiSpec.Helpers

  def open_api_operation(action) do
    operation = String.to_existing_atom("#{action}_operation")
    apply(__MODULE__, operation, [])
  end

  def index_operation do
    %Operation{
      tags: ["Admin", "Relays"],
      summary: "List Relays",
      operationId: "AdminAPI.RelayController.index",
      security: [%{"oAuth" => ["read"]}],
      parameters: admin_api_params(),
      responses: %{
        200 =>
          Operation.response("Response", "application/json", %Schema{
            type: :object,
            properties: %{
              relays: %Schema{
                type: :array,
                items: relay()
              }
            }
          })
      }
    }
  end

  def follow_operation do
    %Operation{
      tags: ["Admin", "Relays"],
      summary: "Follow a Relay",
      operationId: "AdminAPI.RelayController.follow",
      security: [%{"oAuth" => ["write:follows"]}],
      parameters: admin_api_params(),
      requestBody: request_body("Parameters", relay_url()),
      responses: %{
        200 => Operation.response("Status", "application/json", relay())
      }
    }
  end

  def unfollow_operation do
    %Operation{
      tags: ["Admin", "Relays"],
      summary: "Unfollow a Relay",
      operationId: "AdminAPI.RelayController.unfollow",
      security: [%{"oAuth" => ["write:follows"]}],
      parameters: admin_api_params(),
      requestBody: request_body("Parameters", relay_url()),
      responses: %{
        200 =>
          Operation.response("Status", "application/json", %Schema{
            type: :string,
            example: "http://mastodon.example.org/users/admin"
          })
      }
    }
  end

  defp relay do
    %Schema{
      type: :object,
      properties: %{
        actor: %Schema{
          type: :string,
          example: "https://example.com/relay"
        },
        followed_back: %Schema{
          type: :boolean,
          description: "Is relay followed back by this actor?"
        }
      }
    }
  end

  defp relay_url do
    %Schema{
      type: :object,
      properties: %{
        relay_url: %Schema{type: :string, format: :uri}
      }
    }
  end
end