1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
5 defmodule Pleroma.Web.ApiSpec.Schemas.Status do
6 alias OpenApiSpex.Schema
7 alias Pleroma.Web.ApiSpec.Schemas.Account
8 alias Pleroma.Web.ApiSpec.Schemas.Attachment
9 alias Pleroma.Web.ApiSpec.Schemas.Emoji
10 alias Pleroma.Web.ApiSpec.Schemas.FlakeID
11 alias Pleroma.Web.ApiSpec.Schemas.Poll
12 alias Pleroma.Web.ApiSpec.Schemas.Tag
13 alias Pleroma.Web.ApiSpec.Schemas.VisibilityScope
19 description: "Response schema for a status",
22 account: %Schema{allOf: [Account], description: "The account that authored this status"},
24 description: "The application used to post this status",
28 name: %Schema{type: :string},
29 website: %Schema{type: :string, format: :uri}
32 bookmarked: %Schema{type: :boolean, description: "Have you bookmarked this status?"},
36 description: "Preview card for links included within status content",
37 required: [:url, :title, :description, :type],
41 enum: ["link", "photo", "video", "rich"],
42 description: "The type of the preview card"
44 provider_name: %Schema{
47 description: "The provider of the original resource"
49 provider_url: %Schema{
52 description: "A link to the provider of the original resource"
54 url: %Schema{type: :string, format: :uri, description: "Location of linked resource"},
59 description: "Preview thumbnail"
61 title: %Schema{type: :string, description: "Title of linked resource"},
62 description: %Schema{type: :string, description: "Description of preview"}
65 content: %Schema{type: :string, format: :html, description: "HTML-encoded status content"},
68 description: "Original unformatted content in plain text",
74 description: "The date when this status was created"
79 description: "Custom emoji to be used when rendering status content"
81 favourited: %Schema{type: :boolean, description: "Have you favourited this status?"},
82 favourites_count: %Schema{
84 description: "How many favourites this status has received"
87 in_reply_to_account_id: %Schema{
90 description: "ID of the account being replied to"
92 in_reply_to_id: %Schema{
95 description: "ID of the status being replied"
100 description: "Primary language of this status"
102 media_attachments: %Schema{
105 description: "Media that is attached to this status"
109 description: "Mentions of users within the status content",
113 id: %Schema{allOf: [FlakeID], description: "The account id of the mentioned user"},
117 "The webfinger acct: URI of the mentioned user. Equivalent to `username` for local users, or `username@domain` for remote users."
119 username: %Schema{type: :string, description: "The username of the mentioned user"},
123 description: "The location of the mentioned user's profile"
130 description: "Have you muted notifications for this status's conversation?"
134 description: "Have you pinned this status? Only appears if the status is pinnable."
141 additionalProperties: %Schema{type: :string},
143 "A map consisting of alternate representations of the `content` property with the key being it's mimetype. Currently the only alternate representation supported is `text/plain`"
145 conversation_id: %Schema{
147 description: "The ID of the AP context the status is associated with (if any)"
149 direct_conversation_id: %Schema{
153 "The ID of the Mastodon direct message conversation the status is associated with (if any)"
155 emoji_reactions: %Schema{
158 "A list with emoji / reaction maps. Contains no information about the reacting users, for that use the /statuses/:id/reactions endpoint.",
162 name: %Schema{type: :string},
163 count: %Schema{type: :integer},
164 me: %Schema{type: :boolean}
173 "A datetime (ISO 8601) that states when the post will expire (be deleted automatically), or empty if the post won't expire"
175 in_reply_to_account_acct: %Schema{
178 description: "The `acct` property of User entity for replied user (if any)"
182 description: "`true` if the post was made on the local instance"
184 spoiler_text: %Schema{
186 additionalProperties: %Schema{type: :string},
188 "A map consisting of alternate representations of the `spoiler_text` property with the key being it's mimetype. Currently the only alternate representation supported is `text/plain`."
190 thread_muted: %Schema{
192 description: "`true` if the thread the post belongs to is muted"
194 parent_visible: %Schema{
196 description: "`true` if the parent post is visible to the user"
203 "A datetime (ISO 8601) that states when the post was pinned or `null` if the post is not pinned"
207 poll: %Schema{allOf: [Poll], nullable: true, description: "The poll attached to the status"},
209 allOf: [%OpenApiSpex.Reference{"$ref": "#/components/schemas/Status"}],
211 description: "The status being reblogged"
213 reblogged: %Schema{type: :boolean, description: "Have you boosted this status?"},
214 reblogs_count: %Schema{
216 description: "How many boosts this status has received"
218 replies_count: %Schema{
220 description: "How many replies this status has received"
224 description: "Is this status marked as sensitive content?"
226 spoiler_text: %Schema{
229 "Subject or summary line, below which status content is collapsed until expanded"
231 tags: %Schema{type: :array, items: Tag},
235 description: "URI of the status used for federation"
241 description: "A link to the status's HTML representation"
244 allOf: [VisibilityScope],
245 description: "Visibility of this status"
251 "avatar" => "http://localhost:4001/images/avi.png",
252 "avatar_static" => "http://localhost:4001/images/avi.png",
254 "created_at" => "2020-04-07T19:48:51.000Z",
255 "display_name" => "Test テスト User 6",
258 "followers_count" => 1,
259 "following_count" => 0,
260 "header" => "http://localhost:4001/images/banner.png",
261 "header_static" => "http://localhost:4001/images/banner.png",
262 "id" => "9toJCsKN7SmSf3aj5c",
263 "is_locked" => false,
264 "note" => "Tester Number 6",
266 "background_image" => nil,
267 "is_confirmed" => true,
268 "hide_favorites" => true,
269 "hide_followers" => false,
270 "hide_followers_count" => false,
271 "hide_follows" => false,
272 "hide_follows_count" => false,
274 "is_moderator" => false,
276 "blocked_by" => false,
278 "domain_blocking" => false,
280 "followed_by" => false,
282 "id" => "9toJCsKN7SmSf3aj5c",
284 "muting_notifications" => false,
285 "requested" => false,
286 "showing_reblogs" => true,
287 "subscribing" => false
289 "skip_thread_containment" => false,
294 "note" => "Tester Number 6",
295 "pleroma" => %{"actor_type" => "Person", "discoverable" => false},
298 "statuses_count" => 1,
299 "url" => "http://localhost:4001/users/nick6",
300 "username" => "nick6"
302 "application" => nil,
303 "bookmarked" => false,
305 "content" => "foobar",
306 "created_at" => "2020-04-07T19:48:51.000Z",
308 "favourited" => false,
309 "favourites_count" => 0,
310 "id" => "9toJCu5YZW7O7gfvH6",
311 "in_reply_to_account_id" => nil,
312 "in_reply_to_id" => nil,
314 "media_attachments" => [],
319 "content" => %{"text/plain" => "foobar"},
320 "conversation_id" => 345_972,
321 "direct_conversation_id" => nil,
322 "emoji_reactions" => [],
324 "in_reply_to_account_acct" => nil,
326 "spoiler_text" => %{"text/plain" => ""},
327 "thread_muted" => false
331 "reblogged" => false,
332 "reblogs_count" => 0,
333 "replies_count" => 0,
334 "sensitive" => false,
335 "spoiler_text" => "",
337 "uri" => "http://localhost:4001/objects/0f5dad44-0e9e-4610-b377-a2631e499190",
338 "url" => "http://localhost:4001/notice/9toJCu5YZW7O7gfvH6",
339 "visibility" => "private"