2021-02-26 13:49:58 +00:00
|
|
|
use crate::{
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{DbUrl, PersonId},
|
2021-02-26 13:49:58 +00:00
|
|
|
schema::{person, person_alias_1, person_alias_2},
|
|
|
|
};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-02-26 13:49:58 +00:00
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "person"]
|
|
|
|
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
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "person"]
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "person_alias_1"]
|
|
|
|
pub struct PersonAlias1 {
|
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-10-19 16:37:01 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "person_alias_1"]
|
|
|
|
pub struct PersonSafeAlias1 {
|
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
|
|
|
}
|
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "person_alias_2"]
|
|
|
|
pub struct PersonAlias2 {
|
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-10-19 16:37:01 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "person_alias_1"]
|
|
|
|
pub struct PersonSafeAlias2 {
|
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
|
|
|
}
|
|
|
|
|
2021-03-20 20:59:07 +00:00
|
|
|
#[derive(Insertable, AsChangeset, Clone, Default)]
|
2021-02-26 13:49:58 +00:00
|
|
|
#[table_name = "person"]
|
|
|
|
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>>,
|
2021-11-22 15:10:18 +00:00
|
|
|
pub public_key: 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
|
|
|
}
|