2020-05-05 13:44:46 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2020-05-05 13:44:46 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
defmodule Pleroma.Web.ApiSpec.ConversationOperation do
|
|
|
|
alias OpenApiSpex.Operation
|
|
|
|
alias OpenApiSpex.Schema
|
|
|
|
alias Pleroma.Web.ApiSpec.Schemas.Conversation
|
|
|
|
alias Pleroma.Web.ApiSpec.Schemas.FlakeID
|
|
|
|
|
|
|
|
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: ["Conversations"],
|
2021-02-03 12:38:59 +00:00
|
|
|
summary: "List of conversations",
|
2020-05-05 13:44:46 +00:00
|
|
|
security: [%{"oAuth" => ["read:statuses"]}],
|
|
|
|
operationId: "ConversationController.index",
|
|
|
|
parameters: [
|
|
|
|
Operation.parameter(
|
|
|
|
:recipients,
|
|
|
|
:query,
|
|
|
|
%Schema{type: :array, items: FlakeID},
|
|
|
|
"Only return conversations with the given recipients (a list of user ids)"
|
|
|
|
)
|
|
|
|
| pagination_params()
|
|
|
|
],
|
|
|
|
responses: %{
|
|
|
|
200 =>
|
|
|
|
Operation.response("Array of Conversation", "application/json", %Schema{
|
|
|
|
type: :array,
|
|
|
|
items: Conversation,
|
|
|
|
example: [Conversation.schema().example]
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def mark_as_read_operation do
|
|
|
|
%Operation{
|
|
|
|
tags: ["Conversations"],
|
2021-02-03 12:38:59 +00:00
|
|
|
summary: "Mark conversation as read",
|
2020-05-05 13:44:46 +00:00
|
|
|
operationId: "ConversationController.mark_as_read",
|
2021-02-15 17:48:13 +00:00
|
|
|
parameters: [id_param()],
|
2020-05-05 13:44:46 +00:00
|
|
|
security: [%{"oAuth" => ["write:conversations"]}],
|
|
|
|
responses: %{
|
|
|
|
200 => Operation.response("Conversation", "application/json", Conversation)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
2021-02-15 17:48:13 +00:00
|
|
|
|
|
|
|
def delete_operation do
|
|
|
|
%Operation{
|
|
|
|
tags: ["Conversations"],
|
|
|
|
summary: "Remove conversation",
|
|
|
|
operationId: "ConversationController.delete",
|
|
|
|
parameters: [id_param()],
|
|
|
|
security: [%{"oAuth" => ["write:conversations"]}],
|
|
|
|
responses: %{
|
|
|
|
200 => empty_object_response()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def id_param do
|
|
|
|
Operation.parameter(:id, :path, :string, "Conversation ID",
|
|
|
|
example: "123",
|
|
|
|
required: true
|
|
|
|
)
|
|
|
|
end
|
2020-05-05 13:44:46 +00:00
|
|
|
end
|