mirror of https://github.com/LemmyNet/lemmy.git
182 lines
4.9 KiB
Rust
182 lines
4.9 KiB
Rust
|
use crate::Crud;
|
||
|
use diesel::{dsl::*, result::Error, *};
|
||
|
use lemmy_db_schema::source::activity::*;
|
||
|
use log::debug;
|
||
|
use serde::Serialize;
|
||
|
use std::{
|
||
|
fmt::Debug,
|
||
|
io::{Error as IoError, ErrorKind},
|
||
|
};
|
||
|
|
||
|
impl Crud<ActivityForm> for Activity {
|
||
|
fn read(conn: &PgConnection, activity_id: i32) -> Result<Self, Error> {
|
||
|
use lemmy_db_schema::schema::activity::dsl::*;
|
||
|
activity.find(activity_id).first::<Self>(conn)
|
||
|
}
|
||
|
|
||
|
fn create(conn: &PgConnection, new_activity: &ActivityForm) -> Result<Self, Error> {
|
||
|
use lemmy_db_schema::schema::activity::dsl::*;
|
||
|
insert_into(activity)
|
||
|
.values(new_activity)
|
||
|
.get_result::<Self>(conn)
|
||
|
}
|
||
|
|
||
|
fn update(
|
||
|
conn: &PgConnection,
|
||
|
activity_id: i32,
|
||
|
new_activity: &ActivityForm,
|
||
|
) -> Result<Self, Error> {
|
||
|
use lemmy_db_schema::schema::activity::dsl::*;
|
||
|
diesel::update(activity.find(activity_id))
|
||
|
.set(new_activity)
|
||
|
.get_result::<Self>(conn)
|
||
|
}
|
||
|
fn delete(conn: &PgConnection, activity_id: i32) -> Result<usize, Error> {
|
||
|
use lemmy_db_schema::schema::activity::dsl::*;
|
||
|
diesel::delete(activity.find(activity_id)).execute(conn)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub trait Activity_ {
|
||
|
fn insert<T>(
|
||
|
conn: &PgConnection,
|
||
|
ap_id: String,
|
||
|
data: &T,
|
||
|
local: bool,
|
||
|
sensitive: bool,
|
||
|
) -> Result<Activity, IoError>
|
||
|
where
|
||
|
T: Serialize + Debug;
|
||
|
fn read_from_apub_id(conn: &PgConnection, object_id: &str) -> Result<Activity, Error>;
|
||
|
}
|
||
|
|
||
|
impl Activity_ for Activity {
|
||
|
fn insert<T>(
|
||
|
conn: &PgConnection,
|
||
|
ap_id: String,
|
||
|
data: &T,
|
||
|
local: bool,
|
||
|
sensitive: bool,
|
||
|
) -> Result<Activity, IoError>
|
||
|
where
|
||
|
T: Serialize + Debug,
|
||
|
{
|
||
|
debug!("{}", serde_json::to_string_pretty(&data)?);
|
||
|
let activity_form = ActivityForm {
|
||
|
ap_id,
|
||
|
data: serde_json::to_value(&data)?,
|
||
|
local,
|
||
|
sensitive,
|
||
|
updated: None,
|
||
|
};
|
||
|
let result = Activity::create(&conn, &activity_form);
|
||
|
match result {
|
||
|
Ok(s) => Ok(s),
|
||
|
Err(e) => Err(IoError::new(
|
||
|
ErrorKind::Other,
|
||
|
format!("Failed to insert activity into database: {}", e),
|
||
|
)),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn read_from_apub_id(conn: &PgConnection, object_id: &str) -> Result<Activity, Error> {
|
||
|
use lemmy_db_schema::schema::activity::dsl::*;
|
||
|
activity.filter(ap_id.eq(object_id)).first::<Self>(conn)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[cfg(test)]
|
||
|
mod tests {
|
||
|
use crate::{
|
||
|
establish_unpooled_connection,
|
||
|
source::activity::Activity_,
|
||
|
Crud,
|
||
|
ListingType,
|
||
|
SortType,
|
||
|
};
|
||
|
use lemmy_db_schema::source::{
|
||
|
activity::{Activity, ActivityForm},
|
||
|
user::{UserForm, User_},
|
||
|
};
|
||
|
use serde_json::Value;
|
||
|
|
||
|
#[test]
|
||
|
fn test_crud() {
|
||
|
let conn = establish_unpooled_connection();
|
||
|
|
||
|
let creator_form = UserForm {
|
||
|
name: "activity_creator_pm".into(),
|
||
|
preferred_username: None,
|
||
|
password_encrypted: "nope".into(),
|
||
|
email: None,
|
||
|
matrix_user_id: None,
|
||
|
avatar: None,
|
||
|
banner: None,
|
||
|
admin: false,
|
||
|
banned: Some(false),
|
||
|
published: None,
|
||
|
updated: None,
|
||
|
show_nsfw: false,
|
||
|
theme: "browser".into(),
|
||
|
default_sort_type: SortType::Hot as i16,
|
||
|
default_listing_type: ListingType::Subscribed as i16,
|
||
|
lang: "browser".into(),
|
||
|
show_avatars: true,
|
||
|
send_notifications_to_email: false,
|
||
|
actor_id: None,
|
||
|
bio: None,
|
||
|
local: true,
|
||
|
private_key: None,
|
||
|
public_key: None,
|
||
|
last_refreshed_at: None,
|
||
|
};
|
||
|
|
||
|
let inserted_creator = User_::create(&conn, &creator_form).unwrap();
|
||
|
|
||
|
let ap_id =
|
||
|
"https://enterprise.lemmy.ml/activities/delete/f1b5d57c-80f8-4e03-a615-688d552e946c";
|
||
|
let test_json: Value = serde_json::from_str(
|
||
|
r#"{
|
||
|
"@context": "https://www.w3.org/ns/activitystreams",
|
||
|
"id": "https://enterprise.lemmy.ml/activities/delete/f1b5d57c-80f8-4e03-a615-688d552e946c",
|
||
|
"type": "Delete",
|
||
|
"actor": "https://enterprise.lemmy.ml/u/riker",
|
||
|
"to": "https://www.w3.org/ns/activitystreams#Public",
|
||
|
"cc": [
|
||
|
"https://enterprise.lemmy.ml/c/main/"
|
||
|
],
|
||
|
"object": "https://enterprise.lemmy.ml/post/32"
|
||
|
}"#,
|
||
|
)
|
||
|
.unwrap();
|
||
|
let activity_form = ActivityForm {
|
||
|
ap_id: ap_id.to_string(),
|
||
|
data: test_json.to_owned(),
|
||
|
local: true,
|
||
|
sensitive: false,
|
||
|
updated: None,
|
||
|
};
|
||
|
|
||
|
let inserted_activity = Activity::create(&conn, &activity_form).unwrap();
|
||
|
|
||
|
let expected_activity = Activity {
|
||
|
ap_id: Some(ap_id.to_string()),
|
||
|
id: inserted_activity.id,
|
||
|
data: test_json,
|
||
|
local: true,
|
||
|
sensitive: Some(false),
|
||
|
published: inserted_activity.published,
|
||
|
updated: None,
|
||
|
};
|
||
|
|
||
|
let read_activity = Activity::read(&conn, inserted_activity.id).unwrap();
|
||
|
let read_activity_by_apub_id = Activity::read_from_apub_id(&conn, ap_id).unwrap();
|
||
|
User_::delete(&conn, inserted_creator.id).unwrap();
|
||
|
Activity::delete(&conn, inserted_activity.id).unwrap();
|
||
|
|
||
|
assert_eq!(expected_activity, read_activity);
|
||
|
assert_eq!(expected_activity, read_activity_by_apub_id);
|
||
|
assert_eq!(expected_activity, inserted_activity);
|
||
|
}
|
||
|
}
|