8e2cbc9a0f
* post_saved * fmt * remove unique and not null * put person_id first in primary key and remove index * use post_saved.find * change captcha_answer * remove removal of not null * comment_aggregates * comment_like * comment_saved * aggregates * remove "\" * deduplicate site_aggregates * person_post_aggregates * community_moderator * community_block * community_person_ban * custom_emoji_keyword * federation allow/block list * federation_queue_state * instance_block * local_site_rate_limit, local_user_language, login_token * person_ban, person_block, person_follower, post_like, post_read, received_activity * community_follower, community_language, site_language * fmt * image_upload * remove unused newtypes * remove more indexes * use .find * merge * fix site_aggregates_site function * fmt * Primary keys dess (#17) * Also order reports by oldest first (ref #4123) (#4129) * Support signed fetch for federation (fixes #868) (#4125) * Support signed fetch for federation (fixes #868) * taplo * add federation queue state to get_federated_instances api (#4104) * add federation queue state to get_federated_instances api * feature gate * move retry sleep function * move stuff around * Add UI setting for collapsing bot comments. Fixes #3838 (#4098) * Add UI setting for collapsing bot comments. Fixes #3838 * Fixing clippy check. * Only keep sent and received activities for 7 days (fixes #4113, fixes #4110) (#4131) * Only check auth secure on release mode. (#4127) * Only check auth secure on release mode. * Fixing wrong js-client. * Adding is_debug_mode var. * Fixing the desktop image on the README. (#4135) * Delete dupes and add possibly missing unique constraint on person_aggregates. * Fixing clippy lints. --------- Co-authored-by: Nutomic <me@nutomic.com> Co-authored-by: phiresky <phireskyde+git@gmail.com> * fmt * Update community_block.rs * Update instance_block.rs * Update person_block.rs * Update person_block.rs --------- Co-authored-by: Dessalines <dessalines@users.noreply.github.com> Co-authored-by: Nutomic <me@nutomic.com> Co-authored-by: phiresky <phireskyde+git@gmail.com>
198 lines
6.4 KiB
Rust
198 lines
6.4 KiB
Rust
#[cfg(feature = "full")]
|
|
use crate::schema::{community, community_follower, community_moderator, community_person_ban};
|
|
use crate::{
|
|
newtypes::{CommunityId, DbUrl, InstanceId, PersonId},
|
|
source::placeholder_apub_url,
|
|
};
|
|
use chrono::{DateTime, Utc};
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_with::skip_serializing_none;
|
|
#[cfg(feature = "full")]
|
|
use ts_rs::TS;
|
|
use typed_builder::TypedBuilder;
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable, TS))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// A community.
|
|
pub struct Community {
|
|
pub id: CommunityId,
|
|
pub name: String,
|
|
/// A longer title, that can contain other characters, and doesn't have to be unique.
|
|
pub title: String,
|
|
/// A sidebar / markdown description.
|
|
pub description: Option<String>,
|
|
/// Whether the community is removed by a mod.
|
|
pub removed: bool,
|
|
pub published: DateTime<Utc>,
|
|
pub updated: Option<DateTime<Utc>>,
|
|
/// Whether the community has been deleted by its creator.
|
|
pub deleted: bool,
|
|
/// Whether its an NSFW community.
|
|
pub nsfw: bool,
|
|
/// The federated actor_id.
|
|
pub actor_id: DbUrl,
|
|
/// Whether the community is local.
|
|
pub local: bool,
|
|
#[serde(skip)]
|
|
pub private_key: Option<String>,
|
|
#[serde(skip)]
|
|
pub public_key: String,
|
|
#[serde(skip)]
|
|
pub last_refreshed_at: DateTime<Utc>,
|
|
/// A URL for an icon.
|
|
pub icon: Option<DbUrl>,
|
|
/// A URL for a banner.
|
|
pub banner: Option<DbUrl>,
|
|
#[cfg_attr(feature = "full", ts(skip))]
|
|
#[serde(skip, default = "placeholder_apub_url")]
|
|
pub followers_url: DbUrl,
|
|
#[cfg_attr(feature = "full", ts(skip))]
|
|
#[serde(skip, default = "placeholder_apub_url")]
|
|
pub inbox_url: DbUrl,
|
|
#[serde(skip)]
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
/// Whether the community is hidden.
|
|
pub hidden: bool,
|
|
/// Whether posting is restricted to mods only.
|
|
pub posting_restricted_to_mods: bool,
|
|
pub instance_id: InstanceId,
|
|
/// Url where moderators collection is served over Activitypub
|
|
#[serde(skip)]
|
|
pub moderators_url: Option<DbUrl>,
|
|
/// Url where featured posts collection is served over Activitypub
|
|
#[serde(skip)]
|
|
pub featured_url: Option<DbUrl>,
|
|
}
|
|
|
|
#[derive(Debug, Clone, TypedBuilder)]
|
|
#[builder(field_defaults(default))]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community))]
|
|
pub struct CommunityInsertForm {
|
|
#[builder(!default)]
|
|
pub name: String,
|
|
#[builder(!default)]
|
|
pub title: String,
|
|
pub description: Option<String>,
|
|
pub removed: Option<bool>,
|
|
pub published: Option<DateTime<Utc>>,
|
|
pub updated: Option<DateTime<Utc>>,
|
|
pub deleted: Option<bool>,
|
|
pub nsfw: Option<bool>,
|
|
pub actor_id: Option<DbUrl>,
|
|
pub local: Option<bool>,
|
|
pub private_key: Option<String>,
|
|
pub public_key: String,
|
|
pub last_refreshed_at: Option<DateTime<Utc>>,
|
|
pub icon: Option<DbUrl>,
|
|
pub banner: Option<DbUrl>,
|
|
pub followers_url: Option<DbUrl>,
|
|
pub inbox_url: Option<DbUrl>,
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
pub moderators_url: Option<DbUrl>,
|
|
pub featured_url: Option<DbUrl>,
|
|
pub hidden: Option<bool>,
|
|
pub posting_restricted_to_mods: Option<bool>,
|
|
#[builder(!default)]
|
|
pub instance_id: InstanceId,
|
|
}
|
|
|
|
#[derive(Debug, Clone, Default)]
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community))]
|
|
pub struct CommunityUpdateForm {
|
|
pub title: Option<String>,
|
|
pub description: Option<Option<String>>,
|
|
pub removed: Option<bool>,
|
|
pub published: Option<DateTime<Utc>>,
|
|
pub updated: Option<Option<DateTime<Utc>>>,
|
|
pub deleted: Option<bool>,
|
|
pub nsfw: Option<bool>,
|
|
pub actor_id: Option<DbUrl>,
|
|
pub local: Option<bool>,
|
|
pub public_key: Option<String>,
|
|
pub private_key: Option<Option<String>>,
|
|
pub last_refreshed_at: Option<DateTime<Utc>>,
|
|
pub icon: Option<Option<DbUrl>>,
|
|
pub banner: Option<Option<DbUrl>>,
|
|
pub followers_url: Option<DbUrl>,
|
|
pub inbox_url: Option<DbUrl>,
|
|
pub shared_inbox_url: Option<Option<DbUrl>>,
|
|
pub moderators_url: Option<DbUrl>,
|
|
pub featured_url: Option<DbUrl>,
|
|
pub hidden: Option<bool>,
|
|
pub posting_restricted_to_mods: Option<bool>,
|
|
}
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
)]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_moderator))]
|
|
#[cfg_attr(feature = "full", diesel(primary_key(person_id, community_id)))]
|
|
pub struct CommunityModerator {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub published: DateTime<Utc>,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_moderator))]
|
|
pub struct CommunityModeratorForm {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
}
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
)]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_person_ban))]
|
|
#[cfg_attr(feature = "full", diesel(primary_key(person_id, community_id)))]
|
|
pub struct CommunityPersonBan {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub published: DateTime<Utc>,
|
|
pub expires: Option<DateTime<Utc>>,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_person_ban))]
|
|
pub struct CommunityPersonBanForm {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub expires: Option<Option<DateTime<Utc>>>,
|
|
}
|
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
#[cfg_attr(
|
|
feature = "full",
|
|
diesel(belongs_to(crate::source::community::Community))
|
|
)]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_follower))]
|
|
#[cfg_attr(feature = "full", diesel(primary_key(person_id, community_id)))]
|
|
pub struct CommunityFollower {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub published: DateTime<Utc>,
|
|
pub pending: bool,
|
|
}
|
|
|
|
#[derive(Clone)]
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = community_follower))]
|
|
pub struct CommunityFollowerForm {
|
|
pub community_id: CommunityId,
|
|
pub person_id: PersonId,
|
|
pub pending: bool,
|
|
}
|