2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{DbUrl, PersonId};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-02-26 13:49:58 +00:00
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
2022-09-26 14:09:32 +00:00
|
|
|
use crate::schema::person;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = person))]
|
2021-02-26 13:49:58 +00:00
|
|
|
pub struct Person {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: PersonId,
|
2021-03-11 04:43:11 +00:00
|
|
|
pub name: String,
|
2021-04-01 17:57:45 +00:00
|
|
|
pub display_name: Option<String>,
|
2021-03-11 04:43:11 +00:00
|
|
|
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>,
|
2021-11-22 15:10:18 +00:00
|
|
|
pub public_key: String,
|
2021-03-11 04:43:11 +00:00
|
|
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
|
|
|
pub banner: Option<DbUrl>,
|
|
|
|
pub deleted: bool,
|
|
|
|
pub inbox_url: DbUrl,
|
|
|
|
pub shared_inbox_url: Option<DbUrl>,
|
2021-03-20 19:21:51 +00:00
|
|
|
pub matrix_user_id: Option<String>,
|
2021-03-22 14:28:00 +00:00
|
|
|
pub admin: bool,
|
2021-04-21 21:41:14 +00:00
|
|
|
pub bot_account: bool,
|
2022-01-08 12:37:07 +00:00
|
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
2021-02-26 13:49:58 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 22:47:44 +00:00
|
|
|
/// A safe representation of person, without the sensitive info
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = person))]
|
2021-02-26 13:49:58 +00:00
|
|
|
pub struct PersonSafe {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: PersonId,
|
2021-03-11 04:43:11 +00:00
|
|
|
pub name: String,
|
2021-04-01 17:57:45 +00:00
|
|
|
pub display_name: Option<String>,
|
2021-03-11 04:43:11 +00:00
|
|
|
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>,
|
2021-03-20 19:21:51 +00:00
|
|
|
pub matrix_user_id: Option<String>,
|
2021-03-22 14:28:00 +00:00
|
|
|
pub admin: bool,
|
2021-04-21 21:41:14 +00:00
|
|
|
pub bot_account: bool,
|
2022-01-08 12:37:07 +00:00
|
|
|
pub ban_expires: Option<chrono::NaiveDateTime>,
|
2021-02-26 13:49:58 +00:00
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Clone, Default)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = person))]
|
2021-02-26 13:49:58 +00:00
|
|
|
pub struct PersonForm {
|
2021-03-11 04:43:11 +00:00
|
|
|
pub name: String,
|
2021-04-01 17:57:45 +00:00
|
|
|
pub display_name: Option<Option<String>>,
|
2021-03-10 22:33:55 +00:00
|
|
|
pub avatar: Option<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<Option<String>>,
|
|
|
|
pub local: Option<bool>,
|
|
|
|
pub private_key: Option<Option<String>>,
|
2022-07-11 18:25:33 +00:00
|
|
|
pub public_key: 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>>,
|
2021-03-20 19:21:51 +00:00
|
|
|
pub matrix_user_id: Option<Option<String>>,
|
2021-03-22 14:28:00 +00:00
|
|
|
pub admin: Option<bool>,
|
2021-04-21 21:41:14 +00:00
|
|
|
pub bot_account: Option<bool>,
|
2022-01-08 12:37:07 +00:00
|
|
|
pub ban_expires: Option<Option<chrono::NaiveDateTime>>,
|
2021-02-26 13:49:58 +00:00
|
|
|
}
|