mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 17:50:01 +00:00
e65c45f152
* Adding temporary bans. Fixes #1423 * Adding ban_expires to person * Fix clippy * Removing ban_expires from federated fields. * Trying to add expires to blockcommunity apub.
178 lines
5.3 KiB
Rust
178 lines
5.3 KiB
Rust
use crate::{
|
|
newtypes::{DbUrl, PersonId},
|
|
schema::{person, person_alias_1, person_alias_2},
|
|
};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
|
#[table_name = "person"]
|
|
pub struct Person {
|
|
pub id: PersonId,
|
|
pub name: String,
|
|
pub display_name: Option<String>,
|
|
pub avatar: Option<DbUrl>,
|
|
pub banned: bool,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub actor_id: DbUrl,
|
|
pub bio: Option<String>,
|
|
pub local: bool,
|
|
pub private_key: Option<String>,
|
|
pub public_key: String,
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
|
pub banner: Option<DbUrl>,
|
|
pub deleted: bool,
|
|
pub inbox_url: DbUrl,
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
pub matrix_user_id: Option<String>,
|
|
pub admin: bool,
|
|
pub bot_account: bool,
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
/// A safe representation of person, without the sensitive info
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
|
#[table_name = "person"]
|
|
pub struct PersonSafe {
|
|
pub id: PersonId,
|
|
pub name: String,
|
|
pub display_name: Option<String>,
|
|
pub avatar: Option<DbUrl>,
|
|
pub banned: bool,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub actor_id: DbUrl,
|
|
pub bio: Option<String>,
|
|
pub local: bool,
|
|
pub banner: Option<DbUrl>,
|
|
pub deleted: bool,
|
|
pub inbox_url: DbUrl,
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
pub matrix_user_id: Option<String>,
|
|
pub admin: bool,
|
|
pub bot_account: bool,
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
|
#[table_name = "person_alias_1"]
|
|
pub struct PersonAlias1 {
|
|
pub id: PersonId,
|
|
pub name: String,
|
|
pub display_name: Option<String>,
|
|
pub avatar: Option<DbUrl>,
|
|
pub banned: bool,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub actor_id: DbUrl,
|
|
pub bio: Option<String>,
|
|
pub local: bool,
|
|
pub private_key: Option<String>,
|
|
pub public_key: String,
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
|
pub banner: Option<DbUrl>,
|
|
pub deleted: bool,
|
|
pub inbox_url: DbUrl,
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
pub matrix_user_id: Option<String>,
|
|
pub admin: bool,
|
|
pub bot_account: bool,
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
|
#[table_name = "person_alias_1"]
|
|
pub struct PersonSafeAlias1 {
|
|
pub id: PersonId,
|
|
pub name: String,
|
|
pub display_name: Option<String>,
|
|
pub avatar: Option<DbUrl>,
|
|
pub banned: bool,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub actor_id: DbUrl,
|
|
pub bio: Option<String>,
|
|
pub local: bool,
|
|
pub banner: Option<DbUrl>,
|
|
pub deleted: bool,
|
|
pub inbox_url: DbUrl,
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
pub matrix_user_id: Option<String>,
|
|
pub admin: bool,
|
|
pub bot_account: bool,
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
|
#[table_name = "person_alias_2"]
|
|
pub struct PersonAlias2 {
|
|
pub id: PersonId,
|
|
pub name: String,
|
|
pub display_name: Option<String>,
|
|
pub avatar: Option<DbUrl>,
|
|
pub banned: bool,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub actor_id: DbUrl,
|
|
pub bio: Option<String>,
|
|
pub local: bool,
|
|
pub private_key: Option<String>,
|
|
pub public_key: String,
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
|
pub banner: Option<DbUrl>,
|
|
pub deleted: bool,
|
|
pub inbox_url: DbUrl,
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
pub matrix_user_id: Option<String>,
|
|
pub admin: bool,
|
|
pub bot_account: bool,
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
|
#[table_name = "person_alias_1"]
|
|
pub struct PersonSafeAlias2 {
|
|
pub id: PersonId,
|
|
pub name: String,
|
|
pub display_name: Option<String>,
|
|
pub avatar: Option<DbUrl>,
|
|
pub banned: bool,
|
|
pub published: chrono::NaiveDateTime,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub actor_id: DbUrl,
|
|
pub bio: Option<String>,
|
|
pub local: bool,
|
|
pub banner: Option<DbUrl>,
|
|
pub deleted: bool,
|
|
pub inbox_url: DbUrl,
|
|
pub shared_inbox_url: Option<DbUrl>,
|
|
pub matrix_user_id: Option<String>,
|
|
pub admin: bool,
|
|
pub bot_account: bool,
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[derive(Insertable, AsChangeset, Clone, Default)]
|
|
#[table_name = "person"]
|
|
pub struct PersonForm {
|
|
pub name: String,
|
|
pub display_name: Option<Option<String>>,
|
|
pub avatar: Option<Option<DbUrl>>,
|
|
pub banned: Option<bool>,
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
pub actor_id: Option<DbUrl>,
|
|
pub bio: Option<Option<String>>,
|
|
pub local: Option<bool>,
|
|
pub private_key: Option<Option<String>>,
|
|
pub public_key: String,
|
|
pub last_refreshed_at: Option<chrono::NaiveDateTime>,
|
|
pub banner: Option<Option<DbUrl>>,
|
|
pub deleted: Option<bool>,
|
|
pub inbox_url: Option<DbUrl>,
|
|
pub shared_inbox_url: Option<Option<DbUrl>>,
|
|
pub matrix_user_id: Option<Option<String>>,
|
|
pub admin: Option<bool>,
|
|
pub bot_account: Option<bool>,
|
|
pub ban_expires: Option<Option<chrono::NaiveDateTime>>,
|
|
}
|