mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 17:50:01 +00:00
155 lines
6.4 KiB
Rust
155 lines
6.4 KiB
Rust
|
use crate::{
|
||
|
schema::{person, person_alias_1, person_alias_2},
|
||
|
Url,
|
||
|
};
|
||
|
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>,
|
||
|
pub avatar: Option<String>,
|
||
|
pub banned: bool,
|
||
|
pub published: chrono::NaiveDateTime,
|
||
|
pub updated: Option<chrono::NaiveDateTime>,
|
||
|
pub actor_id: Url,
|
||
|
pub bio: Option<String>,
|
||
|
pub local: bool,
|
||
|
pub private_key: Option<String>,
|
||
|
pub public_key: Option<String>,
|
||
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
||
|
pub banner: Option<String>,
|
||
|
pub deleted: bool,
|
||
|
pub inbox_url: Url,
|
||
|
pub shared_inbox_url: Option<Url>,
|
||
|
}
|
||
|
|
||
|
/// 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>,
|
||
|
pub avatar: Option<String>,
|
||
|
pub banned: bool,
|
||
|
pub published: chrono::NaiveDateTime,
|
||
|
pub updated: Option<chrono::NaiveDateTime>,
|
||
|
pub actor_id: Url,
|
||
|
pub bio: Option<String>,
|
||
|
pub local: bool,
|
||
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
||
|
pub banner: Option<String>,
|
||
|
pub deleted: bool,
|
||
|
pub inbox_url: Url,
|
||
|
pub shared_inbox_url: Option<Url>,
|
||
|
}
|
||
|
|
||
|
|
||
|
#[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>,
|
||
|
pub avatar: Option<String>,
|
||
|
pub banned: bool,
|
||
|
pub published: chrono::NaiveDateTime,
|
||
|
pub updated: Option<chrono::NaiveDateTime>,
|
||
|
pub actor_id: Url,
|
||
|
pub bio: Option<String>,
|
||
|
pub local: bool,
|
||
|
pub private_key: Option<String>,
|
||
|
pub public_key: Option<String>,
|
||
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
||
|
pub banner: Option<String>,
|
||
|
pub deleted: bool,
|
||
|
pub inbox_url: Url,
|
||
|
pub shared_inbox_url: Option<Url>,
|
||
|
}
|
||
|
|
||
|
#[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>,
|
||
|
pub avatar: Option<String>,
|
||
|
pub banned: bool,
|
||
|
pub published: chrono::NaiveDateTime,
|
||
|
pub updated: Option<chrono::NaiveDateTime>,
|
||
|
pub actor_id: Url,
|
||
|
pub bio: Option<String>,
|
||
|
pub local: bool,
|
||
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
||
|
pub banner: Option<String>,
|
||
|
pub deleted: bool,
|
||
|
pub inbox_url: Url,
|
||
|
pub shared_inbox_url: Option<Url>,
|
||
|
}
|
||
|
|
||
|
#[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>,
|
||
|
pub avatar: Option<String>,
|
||
|
pub banned: bool,
|
||
|
pub published: chrono::NaiveDateTime,
|
||
|
pub updated: Option<chrono::NaiveDateTime>,
|
||
|
pub actor_id: Url,
|
||
|
pub bio: Option<String>,
|
||
|
pub local: bool,
|
||
|
pub private_key: Option<String>,
|
||
|
pub public_key: Option<String>,
|
||
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
||
|
pub banner: Option<String>,
|
||
|
pub deleted: bool,
|
||
|
pub inbox_url: Url,
|
||
|
pub shared_inbox_url: Option<Url>,
|
||
|
}
|
||
|
|
||
|
#[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>,
|
||
|
pub avatar: Option<String>,
|
||
|
pub banned: bool,
|
||
|
pub published: chrono::NaiveDateTime,
|
||
|
pub updated: Option<chrono::NaiveDateTime>,
|
||
|
pub actor_id: Url,
|
||
|
pub bio: Option<String>,
|
||
|
pub local: bool,
|
||
|
pub last_refreshed_at: chrono::NaiveDateTime,
|
||
|
pub banner: Option<String>,
|
||
|
pub deleted: bool,
|
||
|
pub inbox_url: Url,
|
||
|
pub shared_inbox_url: Option<Url>,
|
||
|
}
|
||
|
|
||
|
#[derive(Insertable, AsChangeset, Clone)]
|
||
|
#[table_name = "person"]
|
||
|
pub struct PersonForm {
|
||
|
pub name: String,
|
||
|
pub preferred_username: Option<Option<String>>,
|
||
|
pub avatar: Option<Option<String>>,
|
||
|
pub banned: Option<bool>,
|
||
|
pub published: Option<chrono::NaiveDateTime>,
|
||
|
pub updated: Option<chrono::NaiveDateTime>,
|
||
|
pub actor_id: Option<Url>,
|
||
|
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>,
|
||
|
pub banner: Option<Option<String>>,
|
||
|
pub deleted: Option<bool>,
|
||
|
pub inbox_url: Option<Url>,
|
||
|
pub shared_inbox_url: Option<Option<Url>>,
|
||
|
}
|