2020-05-16 14:04:08 +00:00
|
|
|
use crate::{db::Crud, schema::activity};
|
|
|
|
use diesel::{dsl::*, result::Error, *};
|
2020-05-30 17:44:50 +00:00
|
|
|
use failure::_core::fmt::Debug;
|
|
|
|
use log::debug;
|
2020-05-16 14:04:08 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-04-27 22:17:02 +00:00
|
|
|
use serde_json::Value;
|
|
|
|
|
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
|
|
|
#[table_name = "activity"]
|
|
|
|
pub struct Activity {
|
|
|
|
pub id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
pub data: Value,
|
|
|
|
pub local: bool,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone, Serialize, Deserialize)]
|
|
|
|
#[table_name = "activity"]
|
|
|
|
pub struct ActivityForm {
|
|
|
|
pub user_id: i32,
|
|
|
|
pub data: Value,
|
|
|
|
pub local: bool,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Crud<ActivityForm> for Activity {
|
|
|
|
fn read(conn: &PgConnection, activity_id: i32) -> Result<Self, Error> {
|
2020-05-14 12:26:44 +00:00
|
|
|
use crate::schema::activity::dsl::*;
|
2020-04-27 22:17:02 +00:00
|
|
|
activity.find(activity_id).first::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn delete(conn: &PgConnection, activity_id: i32) -> Result<usize, Error> {
|
2020-05-14 12:26:44 +00:00
|
|
|
use crate::schema::activity::dsl::*;
|
2020-04-27 22:17:02 +00:00
|
|
|
diesel::delete(activity.find(activity_id)).execute(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create(conn: &PgConnection, new_activity: &ActivityForm) -> Result<Self, Error> {
|
2020-05-14 12:26:44 +00:00
|
|
|
use crate::schema::activity::dsl::*;
|
2020-04-27 22:17:02 +00:00
|
|
|
insert_into(activity)
|
|
|
|
.values(new_activity)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(
|
|
|
|
conn: &PgConnection,
|
|
|
|
activity_id: i32,
|
|
|
|
new_activity: &ActivityForm,
|
|
|
|
) -> Result<Self, Error> {
|
2020-05-14 12:26:44 +00:00
|
|
|
use crate::schema::activity::dsl::*;
|
2020-04-27 22:17:02 +00:00
|
|
|
diesel::update(activity.find(activity_id))
|
|
|
|
.set(new_activity)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 12:26:44 +00:00
|
|
|
pub fn insert_activity<T>(
|
|
|
|
conn: &PgConnection,
|
|
|
|
user_id: i32,
|
|
|
|
data: &T,
|
|
|
|
local: bool,
|
2020-05-30 17:44:50 +00:00
|
|
|
) -> Result<(), failure::Error>
|
2020-05-14 12:26:44 +00:00
|
|
|
where
|
2020-05-30 17:44:50 +00:00
|
|
|
T: Serialize + Debug,
|
2020-05-14 12:26:44 +00:00
|
|
|
{
|
|
|
|
let activity_form = ActivityForm {
|
|
|
|
user_id,
|
|
|
|
data: serde_json::to_value(&data)?,
|
|
|
|
local,
|
|
|
|
updated: None,
|
|
|
|
};
|
2020-05-30 17:44:50 +00:00
|
|
|
debug!("inserting activity for user {}, data {:?}", user_id, data);
|
2020-06-01 14:17:20 +00:00
|
|
|
Activity::create(&conn, &activity_form)?;
|
2020-05-30 17:44:50 +00:00
|
|
|
Ok(())
|
2020-05-14 12:26:44 +00:00
|
|
|
}
|
|
|
|
|
2020-04-27 22:17:02 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-05-16 14:04:08 +00:00
|
|
|
use super::{super::user::*, *};
|
|
|
|
use crate::db::{establish_unpooled_connection, Crud, ListingType, SortType};
|
2020-04-27 22:17:02 +00:00
|
|
|
|
|
|
|
#[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,
|
|
|
|
admin: false,
|
|
|
|
banned: false,
|
|
|
|
updated: None,
|
|
|
|
show_nsfw: false,
|
|
|
|
theme: "darkly".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: "changeme".into(),
|
|
|
|
bio: None,
|
|
|
|
local: true,
|
|
|
|
private_key: None,
|
|
|
|
public_key: None,
|
|
|
|
last_refreshed_at: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_creator = User_::create(&conn, &creator_form).unwrap();
|
|
|
|
|
|
|
|
let test_json: Value = serde_json::from_str(
|
|
|
|
r#"{
|
|
|
|
"street": "Article Circle Expressway 1",
|
|
|
|
"city": "North Pole",
|
|
|
|
"postcode": "99705",
|
|
|
|
"state": "Alaska"
|
|
|
|
}"#,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
let activity_form = ActivityForm {
|
|
|
|
user_id: inserted_creator.id,
|
|
|
|
data: test_json.to_owned(),
|
|
|
|
local: true,
|
|
|
|
updated: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_activity = Activity::create(&conn, &activity_form).unwrap();
|
|
|
|
|
|
|
|
let expected_activity = Activity {
|
|
|
|
id: inserted_activity.id,
|
|
|
|
user_id: inserted_creator.id,
|
|
|
|
data: test_json,
|
|
|
|
local: true,
|
|
|
|
published: inserted_activity.published,
|
|
|
|
updated: None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let read_activity = Activity::read(&conn, inserted_activity.id).unwrap();
|
|
|
|
let num_deleted = Activity::delete(&conn, inserted_activity.id).unwrap();
|
|
|
|
User_::delete(&conn, inserted_creator.id).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(expected_activity, read_activity);
|
|
|
|
assert_eq!(expected_activity, inserted_activity);
|
|
|
|
assert_eq!(1, num_deleted);
|
|
|
|
}
|
|
|
|
}
|