mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 17:50:01 +00:00
985fe24669
* Get rid of Safe Views, use serde_skip - Also change the ViewToVec, to work with non-vector cases. Might be necessary in preparation for #2763 - Fixes #2712 * Forgot one safe --------- Co-authored-by: Nutomic <me@nutomic.com>
115 lines
3.7 KiB
Rust
115 lines
3.7 KiB
Rust
use crate::newtypes::{DbUrl, InstanceId, PersonId};
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::{person, person_follower};
|
|
use serde::{Deserialize, Serialize};
|
|
use typed_builder::TypedBuilder;
|
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(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,
|
|
#[serde(skip)]
|
|
pub private_key: Option<String>,
|
|
#[serde(skip)]
|
|
pub public_key: String,
|
|
#[serde(skip)]
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
|
pub banner: Option<DbUrl>,
|
|
pub deleted: bool,
|
|
#[serde(skip_serializing)]
|
|
pub inbox_url: DbUrl,
|
|
#[serde(skip)]
|
|
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>,
|
|
pub instance_id: InstanceId,
|
|
}
|
|
|
|
#[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)]
|
|
pub name: String,
|
|
#[builder(!default)]
|
|
pub public_key: String,
|
|
#[builder(!default)]
|
|
pub instance_id: InstanceId,
|
|
pub display_name: Option<String>,
|
|
pub avatar: Option<DbUrl>,
|
|
pub banned: Option<bool>,
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
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 admin: Option<bool>,
|
|
pub bot_account: Option<bool>,
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
|
}
|
|
|
|
#[derive(Clone, TypedBuilder)]
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = person))]
|
|
#[builder(field_defaults(default))]
|
|
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>,
|
|
pub bio: Option<Option<String>>,
|
|
pub local: Option<bool>,
|
|
pub public_key: Option<String>,
|
|
pub private_key: Option<Option<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>>,
|
|
}
|
|
|
|
#[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,
|
|
}
|