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

152 lines
6.3 KiB
Rust
Raw Normal View History

2021-02-26 13:49:58 +00:00
use crate::{
schema::{person, person_alias_1, person_alias_2},
2021-03-10 22:33:55 +00:00
DbUrl,
2021-02-26 13:49:58 +00:00
};
use serde::Serialize;
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
#[table_name = "person"]
pub struct Person {
pub id: i32,
pub name: String,
pub preferred_username: Option<String>,
2021-03-10 22:33:55 +00:00
pub avatar: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub banned: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub actor_id: DbUrl,
2021-02-26 13:49:58 +00:00
pub bio: Option<String>,
pub local: bool,
pub private_key: Option<String>,
pub public_key: Option<String>,
pub last_refreshed_at: chrono::NaiveDateTime,
2021-03-10 22:33:55 +00:00
pub banner: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub deleted: bool,
2021-03-10 22:33:55 +00:00
pub inbox_url: DbUrl,
pub shared_inbox_url: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
}
/// A safe representation of user, without the sensitive info
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
#[table_name = "person"]
pub struct PersonSafe {
pub id: i32,
pub name: String,
pub preferred_username: Option<String>,
2021-03-10 22:33:55 +00:00
pub avatar: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub banned: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub actor_id: DbUrl,
2021-02-26 13:49:58 +00:00
pub bio: Option<String>,
pub local: bool,
2021-03-10 22:33:55 +00:00
pub banner: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub deleted: bool,
2021-03-10 22:33:55 +00:00
pub inbox_url: DbUrl,
pub shared_inbox_url: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
}
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
#[table_name = "person_alias_1"]
pub struct PersonAlias1 {
pub id: i32,
pub name: String,
pub preferred_username: Option<String>,
2021-03-10 22:33:55 +00:00
pub avatar: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub banned: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub actor_id: DbUrl,
2021-02-26 13:49:58 +00:00
pub bio: Option<String>,
pub local: bool,
pub private_key: Option<String>,
pub public_key: Option<String>,
pub last_refreshed_at: chrono::NaiveDateTime,
2021-03-10 22:33:55 +00:00
pub banner: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub deleted: bool,
2021-03-10 22:33:55 +00:00
pub inbox_url: DbUrl,
pub shared_inbox_url: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
}
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
#[table_name = "person_alias_1"]
pub struct PersonSafeAlias1 {
pub id: i32,
pub name: String,
pub preferred_username: Option<String>,
2021-03-10 22:33:55 +00:00
pub avatar: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub banned: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub actor_id: DbUrl,
2021-02-26 13:49:58 +00:00
pub bio: Option<String>,
pub local: bool,
2021-03-10 22:33:55 +00:00
pub banner: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub deleted: bool,
2021-03-10 22:33:55 +00:00
pub inbox_url: DbUrl,
pub shared_inbox_url: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
}
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
#[table_name = "person_alias_2"]
pub struct PersonAlias2 {
pub id: i32,
pub name: String,
pub preferred_username: Option<String>,
2021-03-10 22:33:55 +00:00
pub avatar: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub banned: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub actor_id: DbUrl,
2021-02-26 13:49:58 +00:00
pub bio: Option<String>,
pub local: bool,
pub private_key: Option<String>,
pub public_key: Option<String>,
pub last_refreshed_at: chrono::NaiveDateTime,
2021-03-10 22:33:55 +00:00
pub banner: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub deleted: bool,
2021-03-10 22:33:55 +00:00
pub inbox_url: DbUrl,
pub shared_inbox_url: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
}
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
#[table_name = "person_alias_1"]
pub struct PersonSafeAlias2 {
pub id: i32,
pub name: String,
pub preferred_username: Option<String>,
2021-03-10 22:33:55 +00:00
pub avatar: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub banned: bool,
pub published: chrono::NaiveDateTime,
pub updated: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub actor_id: DbUrl,
2021-02-26 13:49:58 +00:00
pub bio: Option<String>,
pub local: bool,
2021-03-10 22:33:55 +00:00
pub banner: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub deleted: bool,
2021-03-10 22:33:55 +00:00
pub inbox_url: DbUrl,
pub shared_inbox_url: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
}
#[derive(Insertable, AsChangeset, Clone)]
#[table_name = "person"]
pub struct PersonForm {
pub name: String,
pub preferred_username: Option<Option<String>>,
2021-03-10 22:33:55 +00:00
pub avatar: Option<Option<DbUrl>>,
2021-02-26 13:49:58 +00:00
pub banned: Option<bool>,
pub published: Option<chrono::NaiveDateTime>,
pub updated: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub actor_id: Option<DbUrl>,
2021-02-26 13:49:58 +00:00
pub bio: Option<Option<String>>,
pub local: Option<bool>,
pub private_key: Option<Option<String>>,
pub public_key: Option<Option<String>>,
pub last_refreshed_at: Option<chrono::NaiveDateTime>,
2021-03-10 22:33:55 +00:00
pub banner: Option<Option<DbUrl>>,
2021-02-26 13:49:58 +00:00
pub deleted: Option<bool>,
2021-03-10 22:33:55 +00:00
pub inbox_url: Option<DbUrl>,
pub shared_inbox_url: Option<Option<DbUrl>>,
2021-02-26 13:49:58 +00:00
}