lemmy/crates/db_schema/src/source/person.rs

132 lines
4.2 KiB
Rust
Raw Normal View History

#[cfg(feature = "full")]
use crate::schema::{person, person_follower};
use crate::{
newtypes::{DbUrl, InstanceId, PersonId},
source::placeholder_apub_url,
};
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 = person))]
#[cfg_attr(feature = "full", ts(export))]
/// A person.
2021-02-26 13:49:58 +00:00
pub struct Person {
pub id: PersonId,
2021-03-11 04:43:11 +00:00
pub name: String,
/// A shorter display name.
pub display_name: Option<String>,
/// A URL for an avatar.
2021-03-11 04:43:11 +00:00
pub avatar: Option<DbUrl>,
/// Whether the person is banned.
2021-03-11 04:43:11 +00:00
pub banned: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
/// The federated actor_id.
2021-03-11 04:43:11 +00:00
pub actor_id: DbUrl,
/// An optional bio, in markdown.
2021-03-11 04:43:11 +00:00
pub bio: Option<String>,
/// Whether the person is local to our site.
2021-03-11 04:43:11 +00:00
pub local: bool,
#[serde(skip)]
2021-03-11 04:43:11 +00:00
pub private_key: Option<String>,
#[serde(skip)]
pub public_key: String,
#[serde(skip)]
2021-03-11 04:43:11 +00:00
pub last_refreshed_at: chrono::NaiveDateTime,
/// A URL for a banner.
2021-03-11 04:43:11 +00:00
pub banner: Option<DbUrl>,
/// Whether the person is deleted.
2021-03-11 04:43:11 +00:00
pub deleted: bool,
#[serde(skip, default = "placeholder_apub_url")]
2021-03-11 04:43:11 +00:00
pub inbox_url: DbUrl,
#[serde(skip)]
2021-03-11 04:43:11 +00:00
pub shared_inbox_url: Option<DbUrl>,
/// A matrix id, usually given an @person:matrix.org
pub matrix_user_id: Option<String>,
/// Whether the person is a bot account.
pub bot_account: bool,
/// When their ban, if it exists, expires, if at all.
pub ban_expires: Option<chrono::NaiveDateTime>,
pub instance_id: InstanceId,
2021-02-26 13:49:58 +00:00
}
#[derive(Clone, TypedBuilder)]
#[builder(field_defaults(default))]
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
#[cfg_attr(feature = "full", diesel(table_name = person))]
pub struct PersonInsertForm {
#[builder(!default)]
2021-03-11 04:43:11 +00:00
pub name: String,
#[builder(!default)]
pub public_key: String,
#[builder(!default)]
pub instance_id: InstanceId,
pub display_name: Option<String>,
pub avatar: Option<DbUrl>,
2021-03-11 04:43:11 +00:00
pub banned: Option<bool>,
2021-02-26 13:49:58 +00:00
pub published: Option<chrono::NaiveDateTime>,
pub updated: Option<chrono::NaiveDateTime>,
2021-03-11 04:43:11 +00:00
pub actor_id: Option<DbUrl>,
pub bio: Option<String>,
pub local: Option<bool>,
pub private_key: Option<String>,
pub last_refreshed_at: Option<chrono::NaiveDateTime>,
pub banner: Option<DbUrl>,
pub deleted: Option<bool>,
pub inbox_url: Option<DbUrl>,
pub shared_inbox_url: Option<DbUrl>,
pub matrix_user_id: Option<String>,
pub bot_account: Option<bool>,
pub ban_expires: Option<chrono::NaiveDateTime>,
}
Replace TypedBuilder with Default in update forms (#3814) * Update comment.rs * Update community.rs * Update local_site.rs * Update local_site_rate_limit.rs * Update local_user.rs * Update person.rs * Update comment.rs * Update community.rs * Update local_site.rs * Update local_site_rate_limit.rs * Update local_user.rs * Update post.rs * Update private_message.rs * Update site.rs * Update post.rs * Update person.rs * Update private_message.rs * Update comment.rs * Update create.rs * Update leave_admin.rs * Update update.rs * Update remove.rs * Update add_admin.rs * Update verify_email.rs * Update mod.rs * Update mod.rs * Update undo_delete.rs * Update undo_delete.rs * Update utils.rs * Update feature.rs * Update delete.rs * Update lock.rs * Update create.rs * Update approve.rs * Update update.rs * Update lock_page.rs * Update block_user.rs * Update delete.rs * Update undo_block_user.rs * Update collection_remove.rs * Update post.rs * Update hide.rs * Update person.rs * Update remove.rs * Update post_view.rs * Update create.rs * Update remove.rs * Update collection_add.rs * Update community.rs * Update update.rs * Update post_aggregates.rs * Update update.rs * Update comment.rs * Update code_migrations.rs * Update registration_application_view.rs * Update update.rs * Update ban_person.rs * Update community.rs * Update delete.rs * Update delete.rs * Update delete.rs * Update person_aggregates.rs * Update save_settings.rs * Update distinguish.rs * Update mark_read.rs * Update site_aggregates.rs * Update create.rs * Fix * rerun ci * Update comment.rs * rerun ci * Update create.rs * Update create.rs * Update post_view.rs * rerun ci * Update undo_delete.rs * rerun ci
2023-08-08 09:41:41 +00:00
#[derive(Clone, Default)]
#[cfg_attr(feature = "full", derive(AsChangeset))]
#[cfg_attr(feature = "full", diesel(table_name = person))]
pub struct PersonUpdateForm {
pub display_name: Option<Option<String>>,
pub avatar: Option<Option<DbUrl>>,
pub banned: Option<bool>,
pub updated: Option<Option<chrono::NaiveDateTime>>,
pub actor_id: Option<DbUrl>,
2021-03-11 04:43:11 +00:00
pub bio: Option<Option<String>>,
pub local: Option<bool>,
pub public_key: Option<String>,
pub private_key: Option<Option<String>>,
2021-02-26 13:49:58 +00:00
pub last_refreshed_at: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub banner: Option<Option<DbUrl>>,
2021-03-11 04:43:11 +00:00
pub deleted: Option<bool>,
pub inbox_url: Option<DbUrl>,
2021-03-10 22:33:55 +00:00
pub shared_inbox_url: Option<Option<DbUrl>>,
pub matrix_user_id: Option<Option<String>>,
pub bot_account: Option<bool>,
pub ban_expires: Option<Option<chrono::NaiveDateTime>>,
2021-02-26 13:49:58 +00:00
}
#[derive(PartialEq, Eq, Debug)]
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::person::Person)))]
#[cfg_attr(feature = "full", diesel(table_name = person_follower))]
pub struct PersonFollower {
pub id: i32,
pub person_id: PersonId,
pub follower_id: PersonId,
pub published: chrono::NaiveDateTime,
pub pending: bool,
}
#[derive(Clone)]
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
#[cfg_attr(feature = "full", diesel(table_name = person_follower))]
pub struct PersonFollowerForm {
pub person_id: PersonId,
pub follower_id: PersonId,
pub pending: bool,
}