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-03-18 20:25:21 +00:00
|
|
|
PersonId,
|
2021-02-26 13:49:58 +00:00
|
|
|
};
|
2021-10-06 20:20:05 +00:00
|
|
|
use chrono::NaiveDateTime;
|
|
|
|
use diesel::{ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl};
|
|
|
|
use lemmy_apub_lib::traits::{ActorType, ApubObject};
|
|
|
|
use lemmy_utils::LemmyError;
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-10-06 20:20:05 +00:00
|
|
|
use url::Url;
|
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>,
|
|
|
|
pub public_key: Option<String>,
|
|
|
|
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,
|
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,
|
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>,
|
|
|
|
pub public_key: Option<String>,
|
|
|
|
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,
|
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,
|
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>,
|
|
|
|
pub public_key: Option<String>,
|
|
|
|
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,
|
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,
|
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>>,
|
|
|
|
pub public_key: Option<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>,
|
2021-02-26 13:49:58 +00:00
|
|
|
}
|
2021-10-06 20:20:05 +00:00
|
|
|
|
|
|
|
impl ApubObject for Person {
|
|
|
|
type DataType = PgConnection;
|
|
|
|
|
|
|
|
fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
|
|
|
|
Some(self.last_refreshed_at)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_from_apub_id(conn: &PgConnection, object_id: Url) -> Result<Option<Self>, LemmyError> {
|
|
|
|
use crate::schema::person::dsl::*;
|
|
|
|
let object_id: DbUrl = object_id.into();
|
|
|
|
Ok(
|
|
|
|
person
|
|
|
|
.filter(deleted.eq(false))
|
|
|
|
.filter(actor_id.eq(object_id))
|
|
|
|
.first::<Self>(conn)
|
|
|
|
.ok(),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ActorType for Person {
|
|
|
|
fn is_local(&self) -> bool {
|
|
|
|
self.local
|
|
|
|
}
|
|
|
|
fn actor_id(&self) -> Url {
|
|
|
|
self.actor_id.to_owned().into_inner()
|
|
|
|
}
|
|
|
|
fn name(&self) -> String {
|
|
|
|
self.name.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn public_key(&self) -> Option<String> {
|
|
|
|
self.public_key.to_owned()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn private_key(&self) -> Option<String> {
|
|
|
|
self.private_key.to_owned()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn inbox_url(&self) -> Url {
|
|
|
|
self.inbox_url.clone().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn shared_inbox_url(&self) -> Option<Url> {
|
|
|
|
self.shared_inbox_url.clone().map(|s| s.into_inner())
|
|
|
|
}
|
|
|
|
}
|