1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ApiSpec.ChatOperation do
6 alias OpenApiSpex.Operation
7 alias OpenApiSpex.Schema
8 alias Pleroma.Web.ApiSpec.Schemas.ApiError
9 alias Pleroma.Web.ApiSpec.Schemas.Chat
10 alias Pleroma.Web.ApiSpec.Schemas.ChatMessage
12 import Pleroma.Web.ApiSpec.Helpers
14 @spec open_api_operation(atom) :: Operation.t()
15 def open_api_operation(action) do
16 operation = String.to_existing_atom("#{action}_operation")
17 apply(__MODULE__, operation, [])
20 def mark_as_read_operation do
23 summary: "Mark all messages in the chat as read",
24 operationId: "ChatController.mark_as_read",
25 parameters: [Operation.parameter(:id, :path, :string, "The ID of the Chat")],
26 requestBody: request_body("Parameters", mark_as_read()),
37 "oAuth" => ["write:chats"]
43 def mark_message_as_read_operation do
46 summary: "Mark one message in the chat as read",
47 operationId: "ChatController.mark_message_as_read",
49 Operation.parameter(:id, :path, :string, "The ID of the Chat"),
50 Operation.parameter(:message_id, :path, :string, "The ID of the message")
55 "The read ChatMessage",
62 "oAuth" => ["write:chats"]
71 summary: "Create a chat",
72 operationId: "ChatController.show",
99 def create_operation do
102 summary: "Create a chat",
103 operationId: "ChatController.create",
109 "The account id of the recipient of this chat",
111 example: "someflakeid"
117 "The created or existing chat",
124 "oAuth" => ["write:chats"]
130 def index_operation do
133 summary: "Get a list of chats that you participated in",
134 operationId: "ChatController.index",
135 parameters: pagination_params(),
137 200 => Operation.response("The chats of the user", "application/json", chats_response())
141 "oAuth" => ["read:chats"]
147 def messages_operation do
150 summary: "Get the most recent messages of the chat",
151 operationId: "ChatController.messages",
153 [Operation.parameter(:id, :path, :string, "The ID of the Chat")] ++
158 "The messages in the chat",
160 chat_messages_response()
165 "oAuth" => ["read:chats"]
171 def post_chat_message_operation do
174 summary: "Post a message to the chat",
175 operationId: "ChatController.post_chat_message",
177 Operation.parameter(:id, :path, :string, "The ID of the Chat")
179 requestBody: request_body("Parameters", chat_message_create()),
183 "The newly created ChatMessage",
187 400 => Operation.response("Bad Request", "application/json", ApiError)
191 "oAuth" => ["write:chats"]
197 def delete_message_operation do
200 summary: "delete_message",
201 operationId: "ChatController.delete_message",
203 Operation.parameter(:id, :path, :string, "The ID of the Chat"),
204 Operation.parameter(:message_id, :path, :string, "The ID of the message")
209 "The deleted ChatMessage",
216 "oAuth" => ["write:chats"]
222 def chats_response do
224 title: "ChatsResponse",
225 description: "Response schema for multiple Chats",
233 "confirmation_pending" => false,
234 "hide_followers_count" => false,
235 "is_moderator" => false,
236 "hide_favorites" => true,
237 "ap_id" => "https://dontbulling.me/users/lain",
238 "hide_follows_count" => false,
239 "hide_follows" => false,
240 "background_image" => nil,
241 "skip_thread_containment" => false,
242 "hide_followers" => false,
243 "relationship" => %{},
247 "https://dontbulling.me/media/065a4dd3c6740dab13ff9c71ec7d240bb9f8be9205c9e7467fb2202117da1e32.jpg",
248 "following_count" => 0,
249 "header_static" => "https://originalpatchou.li/images/banner.png",
251 "sensitive" => false,
254 "discoverable" => false,
255 "actor_type" => "Person"
259 "statuses_count" => 1,
261 "created_at" => "2020-04-16T13:40:15.000Z",
262 "display_name" => "lain",
264 "acct" => "lain@dontbulling.me",
265 "id" => "9u6Qw6TAZANpqokMkK",
268 "https://dontbulling.me/media/065a4dd3c6740dab13ff9c71ec7d240bb9f8be9205c9e7467fb2202117da1e32.jpg",
269 "username" => "lain",
270 "followers_count" => 0,
271 "header" => "https://originalpatchou.li/images/banner.png",
274 "url" => "https://dontbulling.me/users/lain"
283 def chat_messages_response do
285 title: "ChatMessagesResponse",
286 description: "Response schema for multiple ChatMessages",
293 "static_url" => "https://dontbulling.me/emoji/Firefox.gif",
294 "visible_in_picker" => false,
295 "shortcode" => "firefox",
296 "url" => "https://dontbulling.me/emoji/Firefox.gif"
299 "created_at" => "2020-04-21T15:11:46.000Z",
300 "content" => "Check this out :firefox:",
303 "actor_id" => "someflakeid",
307 "actor_id" => "someflakeid",
308 "content" => "Whats' up?",
312 "created_at" => "2020-04-21T15:06:45.000Z",
319 def chat_message_create do
321 title: "ChatMessageCreateRequest",
322 description: "POST body for creating an chat message",
327 description: "The content of your message. Optional if media_id is present"
329 media_id: %Schema{type: :string, description: "The id of an upload"}
332 "content" => "Hey wanna buy feet pics?",
333 "media_id" => "134234"
340 title: "MarkAsReadRequest",
341 description: "POST body for marking a number of chat messages as read",
343 required: [:last_read_id],
345 last_read_id: %Schema{
347 description: "The content of your message."
351 "last_read_id" => "abcdef12456"