From 5a8dd3fd8411f763f26dff90ac2e92422785500a Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Wed, 7 Oct 2020 05:44:32 -0400 Subject: Add some new entities & update some existing ones --- src/entities/activity.rs | 14 +++++++ src/entities/announcement.rs | 50 +++++++++++++++++++++++++ src/entities/mod.rs | 4 ++ src/entities/poll.rs | 37 ++++++++++++++++++ src/entities/status.rs | 89 +++++++++++++++++++++++++++++--------------- 5 files changed, 163 insertions(+), 31 deletions(-) create mode 100644 src/entities/activity.rs create mode 100644 src/entities/announcement.rs create mode 100644 src/entities/poll.rs diff --git a/src/entities/activity.rs b/src/entities/activity.rs new file mode 100644 index 0000000..0384bab --- /dev/null +++ b/src/entities/activity.rs @@ -0,0 +1,14 @@ +use serde::{Deserialize, Serialize}; + +/// Represents a weekly bucket of instance activity. +#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)] +pub struct Activity { + /// Midnight at the first day of the week. + pub week: String, + /// Statuses created since the week began. + pub statuses: String, + /// User logins since the week began. + pub logins: String, + /// User registrations since the week began. + pub registrations: String, +} diff --git a/src/entities/announcement.rs b/src/entities/announcement.rs new file mode 100644 index 0000000..d1b5f5a --- /dev/null +++ b/src/entities/announcement.rs @@ -0,0 +1,50 @@ +use serde::{Deserialize, Serialize}; + +/// Custom emoji fields for AnnouncementReaction +#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)] +pub struct AnnouncementReactionCustomEmoji { + /// A link to the custom emoji. + pub url: String, + /// A link to a non-animated version of the custom emoji. + pub static_url: String, +} + +/// Represents an emoji reaction to an Announcement. +#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)] +pub struct AnnouncementReaction { + /// The emoji used for the reaction. Either a unicode emoji, or a custom emoji's shortcode. + pub name: String, + /// The total number of users who have added this reaction. + pub count: u64, + /// Whether the authorized user has added this reaction to the announcement. + pub me: bool, + #[serde(flatten)] + pub emoji: Option, +} + +/// Represents an announcement set by an administrator. +#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)] +pub struct Announcement { + /// The announcement id. + id: String, + /// The content of the announcement. + text: String, + /// Whether the announcement is currently active. + published: bool, + /// Whether the announcement has a start/end time. + all_day: bool, + /// When the announcement was created. + created_at: String, // Datetime + /// When the announcement was last updated. + updated_at: String, // Datetime + /// Whether the announcement has been read by the user. + read: bool, + /// Emoji reactions attached to the announcement. + reactions: Vec, + /// When the future announcement was scheduled. + scheduled_at: Option, // Datetime + /// When the future announcement will start. + starts_at: Option, // Datetime + /// When the future announcement will end. + ends_at: Option, // Datetime +} \ No newline at end of file diff --git a/src/entities/mod.rs b/src/entities/mod.rs index 14e04ac..cf17659 100644 --- a/src/entities/mod.rs +++ b/src/entities/mod.rs @@ -2,6 +2,8 @@ use serde::Deserialize; /// Data structures for ser/de of account-related resources pub mod account; +/// Data structures for ser/de of activity-related resources +pub mod activity; /// Data structures for ser/de of attachment-related resources pub mod attachment; /// Data structures for ser/de of card-related resources @@ -21,6 +23,8 @@ pub mod list; pub mod mention; /// Data structures for ser/de of notification-related resources pub mod notification; +/// Data structures for ser/de of poll resources +pub mod poll; /// Data structures for ser/de of push-subscription-related resources pub mod push; /// Data structures for ser/de of relationship-related resources diff --git a/src/entities/poll.rs b/src/entities/poll.rs new file mode 100644 index 0000000..e51a04a --- /dev/null +++ b/src/entities/poll.rs @@ -0,0 +1,37 @@ +use crate::entities::status::Emoji; +use serde::{Deserialize, Serialize}; + +/// Represents a poll attached to a status. +#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)] +pub struct Poll { + /// The ID of the poll in the database. + pub id: String, + /// When the poll ends. + pub expires_at: String, // Datetime?? + /// Is the poll currently expired? + pub expired: bool, + /// Does the poll allow multiple-choice answers? + pub multiple: bool, + /// How many votes have been received. + pub votes_count: u64, + /// How many unique accounts have voted on a multiple-choice poll. + pub voters_count: Option, + /// When called with a user token, has the authorized user voted? + pub voted: Option, + /// When called with a user token, which options has the authorized user + /// chosen? Contains an array of index values for options + pub own_votes: Option>, + /// Possible answers for the poll. + pub options: Vec, + /// Custom emoji to be used for rendering poll options. + pub emojis: Vec, +} + +/// Possible answers for the poll. +#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)] +pub struct PollOption { + /// The text value of the poll option. + pub title: String, + /// The number of received votes for this option. + pub votes_count: Option, +} diff --git a/src/entities/status.rs b/src/entities/status.rs index 087acfa..7243449 100644 --- a/src/entities/status.rs +++ b/src/entities/status.rs @@ -1,9 +1,15 @@ //! Module containing all info relating to a status. use super::prelude::*; -use crate::{entities::card::Card, status_builder::Visibility}; +use crate::{ + entities::{ + card::Card, + poll::Poll, + }, + status_builder::Visibility +}; use chrono::prelude::*; -use serde::Deserialize; +use serde::{Deserialize, Serialize}; /// A status from the instance. #[derive(Debug, Clone, Deserialize, PartialEq)] @@ -12,54 +18,62 @@ pub struct Status { pub id: String, /// A Fediverse-unique resource ID. pub uri: String, - /// URL to the status page (can be remote) - pub url: Option, + /// The time the status was created. + pub created_at: DateTime, /// The Account which posted the status. pub account: Account, - /// The ID of the status this status is replying to, if the status is - /// a reply. - pub in_reply_to_id: Option, - /// The ID of the account this status is replying to, if the status is - /// a reply. - pub in_reply_to_account_id: Option, - /// If this status is a reblogged Status of another User. - pub reblog: Option>, /// Body of the status; this will contain HTML /// (remote HTML already sanitized) pub content: String, - /// The time the status was created. - pub created_at: DateTime, - /// An array of Emoji - pub emojis: Vec, - /// The numbef or replies to this status. - pub replies_count: Option, - /// The number of reblogs for the status. - pub reblogs_count: u64, - /// The number of favourites for the status. - pub favourites_count: u64, - /// Whether the application client has reblogged the status. - pub reblogged: Option, - /// Whether the application client has favourited the status. - pub favourited: Option, + /// The visibilty of the status. + pub visibility: Visibility, /// Whether media attachments should be hidden by default. pub sensitive: bool, /// If not empty, warning text that should be displayed before the actual /// content. pub spoiler_text: String, - /// The visibilty of the status. - pub visibility: Visibility, /// An array of attachments. pub media_attachments: Vec, + /// Name of application used to post status. + pub application: Option, /// An array of mentions. pub mentions: Vec, /// An array of tags. pub tags: Vec, + /// An array of Emoji + pub emojis: Vec, + /// The number of reblogs for the status. + pub reblogs_count: u64, + /// The number of favourites for the status. + pub favourites_count: u64, + /// The numbef or replies to this status. + pub replies_count: Option, + /// URL to the status page (can be remote) + pub url: Option, + /// The ID of the status this status is replying to, if the status is + /// a reply. + pub in_reply_to_id: Option, + /// The ID of the account this status is replying to, if the status is + /// a reply. + pub in_reply_to_account_id: Option, + /// If this status is a reblogged Status of another User. + pub reblog: Option>, + /// The poll attached to the status. + pub poll: Option, /// The associated card pub card: Option, - /// Name of application used to post status. - pub application: Option, /// The detected language for the status, if detected. pub language: Option, + /// Plain-text source of a status. Returned instead of content when status is deleted, so the user may redraft from the source text without the client having to reverse-engineer the original text from the HTML content. + pub text: Option, + /// Whether the application client has favourited the status. + pub favourited: Option, + /// Whether the application client has reblogged the status. + pub reblogged: Option, + /// Have you muted notifications for this status's conversation? + pub muted: Option, + /// Have you bookmarked this status? + pub bookmarked: Option, /// Whether this is the pinned status for the account that posted it. pub pinned: Option, } @@ -78,7 +92,7 @@ pub struct Mention { } /// Struct representing an emoji within text. -#[derive(Clone, Debug, Deserialize, PartialEq)] +#[derive(Clone, Debug, Deserialize, Serialize, PartialEq)] pub struct Emoji { /// The shortcode of the emoji pub shortcode: String, @@ -95,6 +109,19 @@ pub struct Tag { pub name: String, /// The URL of the hashtag. pub url: String, + /// Usage statistics for given days. + pub history: Option>, +} + +/// Represents daily usage history of a hashtag. +#[derive(Debug, Clone, Deserialize, PartialEq)] +pub struct History { + /// UNIX timestamp on midnight of the given day. + day: String, + /// the counted usage of the tag within that day. + uses: String, + /// the total of accounts using the tag within that day. + accounts: String, } /// Application details. -- cgit v1.2.3