2020-05-19 17:52:26 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
|
|
|
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-05-20 11:14:11 +00:00
|
|
|
defmodule Pleroma.Web.ApiSpec.PleromaNotificationOperation do
|
2020-05-19 17:52:26 +00:00
|
|
|
alias OpenApiSpex.Operation
|
|
|
|
alias OpenApiSpex.Schema
|
2020-05-19 19:50:49 +00:00
|
|
|
alias Pleroma.Web.ApiSpec.NotificationOperation
|
2020-05-19 17:52:26 +00:00
|
|
|
alias Pleroma.Web.ApiSpec.Schemas.ApiError
|
|
|
|
|
2020-05-22 14:15:36 +00:00
|
|
|
import Pleroma.Web.ApiSpec.Helpers
|
|
|
|
|
2020-05-19 17:52:26 +00:00
|
|
|
def open_api_operation(action) do
|
|
|
|
operation = String.to_existing_atom("#{action}_operation")
|
|
|
|
apply(__MODULE__, operation, [])
|
|
|
|
end
|
|
|
|
|
2020-05-20 11:14:11 +00:00
|
|
|
def mark_as_read_operation do
|
2020-05-19 17:52:26 +00:00
|
|
|
%Operation{
|
|
|
|
tags: ["Notifications"],
|
|
|
|
summary: "Mark notifications as read. Query parameters are mutually exclusive.",
|
2020-05-22 14:15:36 +00:00
|
|
|
requestBody:
|
|
|
|
request_body("Parameters", %Schema{
|
|
|
|
type: :object,
|
|
|
|
properties: %{
|
|
|
|
id: %Schema{type: :integer, description: "A single notification ID to read"},
|
|
|
|
max_id: %Schema{type: :integer, description: "Read all notifications up to this ID"}
|
|
|
|
}
|
|
|
|
}),
|
2020-05-19 17:52:26 +00:00
|
|
|
security: [%{"oAuth" => ["write:notifications"]}],
|
2020-05-20 11:14:11 +00:00
|
|
|
operationId: "PleromaAPI.NotificationController.mark_as_read",
|
2020-05-19 17:52:26 +00:00
|
|
|
responses: %{
|
|
|
|
200 =>
|
|
|
|
Operation.response(
|
|
|
|
"A Notification or array of Motifications",
|
|
|
|
"application/json",
|
|
|
|
%Schema{
|
|
|
|
anyOf: [
|
|
|
|
%Schema{type: :array, items: NotificationOperation.notification()},
|
|
|
|
NotificationOperation.notification()
|
|
|
|
]
|
|
|
|
}
|
|
|
|
),
|
|
|
|
400 => Operation.response("Bad Request", "application/json", ApiError)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|