2021-10-06 20:20:05 +00:00
|
|
|
use crate::{Crud, DeleteableOrRemoveable, Likeable, Readable, Saveable};
|
2020-05-16 14:04:08 +00:00
|
|
|
use diesel::{dsl::*, result::Error, *};
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::{
|
2020-08-12 14:45:04 +00:00
|
|
|
naive_now,
|
2020-12-18 18:38:32 +00:00
|
|
|
source::post::{
|
|
|
|
Post,
|
|
|
|
PostForm,
|
|
|
|
PostLike,
|
|
|
|
PostLikeForm,
|
|
|
|
PostRead,
|
|
|
|
PostReadForm,
|
|
|
|
PostSaved,
|
|
|
|
PostSavedForm,
|
|
|
|
},
|
2021-03-18 20:25:21 +00:00
|
|
|
CommunityId,
|
2021-03-02 12:41:48 +00:00
|
|
|
DbUrl,
|
2021-03-18 20:25:21 +00:00
|
|
|
PersonId,
|
|
|
|
PostId,
|
2020-08-12 14:45:04 +00:00
|
|
|
};
|
2020-07-17 21:11:07 +00:00
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Crud for Post {
|
|
|
|
type Form = PostForm;
|
|
|
|
type IdType = PostId;
|
2021-03-18 20:25:21 +00:00
|
|
|
fn read(conn: &PgConnection, post_id: PostId) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-12-08 17:38:48 +00:00
|
|
|
post.find(post_id).first::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn delete(conn: &PgConnection, post_id: PostId) -> Result<usize, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-12-08 17:38:48 +00:00
|
|
|
diesel::delete(post.find(post_id)).execute(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create(conn: &PgConnection, new_post: &PostForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-12-08 17:38:48 +00:00
|
|
|
insert_into(post).values(new_post).get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn update(conn: &PgConnection, post_id: PostId, new_post: &PostForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-12-08 17:38:48 +00:00
|
|
|
diesel::update(post.find(post_id))
|
|
|
|
.set(new_post)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
pub trait Post_ {
|
|
|
|
//fn read(conn: &PgConnection, post_id: i32) -> Result<Post, Error>;
|
2021-03-18 20:25:21 +00:00
|
|
|
fn list_for_community(
|
|
|
|
conn: &PgConnection,
|
|
|
|
the_community_id: CommunityId,
|
|
|
|
) -> Result<Vec<Post>, Error>;
|
|
|
|
fn update_ap_id(conn: &PgConnection, post_id: PostId, apub_id: DbUrl) -> Result<Post, Error>;
|
|
|
|
fn permadelete_for_creator(
|
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: PersonId,
|
|
|
|
) -> Result<Vec<Post>, Error>;
|
|
|
|
fn update_deleted(conn: &PgConnection, post_id: PostId, new_deleted: bool)
|
|
|
|
-> Result<Post, Error>;
|
|
|
|
fn update_removed(conn: &PgConnection, post_id: PostId, new_removed: bool)
|
|
|
|
-> Result<Post, Error>;
|
2020-12-18 18:38:32 +00:00
|
|
|
fn update_removed_for_creator(
|
|
|
|
conn: &PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
for_creator_id: PersonId,
|
|
|
|
for_community_id: Option<CommunityId>,
|
2020-12-18 18:38:32 +00:00
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Vec<Post>, Error>;
|
2021-03-18 20:25:21 +00:00
|
|
|
fn update_locked(conn: &PgConnection, post_id: PostId, new_locked: bool) -> Result<Post, Error>;
|
|
|
|
fn update_stickied(
|
|
|
|
conn: &PgConnection,
|
|
|
|
post_id: PostId,
|
|
|
|
new_stickied: bool,
|
|
|
|
) -> Result<Post, Error>;
|
|
|
|
fn is_post_creator(person_id: PersonId, post_creator_id: PersonId) -> bool;
|
2021-09-25 15:44:52 +00:00
|
|
|
fn upsert(conn: &PgConnection, post_form: &PostForm) -> Result<Post, Error>;
|
2020-12-08 17:38:48 +00:00
|
|
|
}
|
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
impl Post_ for Post {
|
2021-03-18 20:25:21 +00:00
|
|
|
fn list_for_community(
|
|
|
|
conn: &PgConnection,
|
|
|
|
the_community_id: CommunityId,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-04-03 09:00:24 +00:00
|
|
|
post
|
|
|
|
.filter(community_id.eq(the_community_id))
|
2020-07-24 15:07:33 +00:00
|
|
|
.then_order_by(published.desc())
|
|
|
|
.then_order_by(stickied.desc())
|
|
|
|
.limit(20)
|
2020-04-03 09:00:24 +00:00
|
|
|
.load::<Self>(conn)
|
|
|
|
}
|
2020-04-04 00:04:57 +00:00
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn update_ap_id(conn: &PgConnection, post_id: PostId, apub_id: DbUrl) -> Result<Self, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-04-04 00:04:57 +00:00
|
|
|
|
|
|
|
diesel::update(post.find(post_id))
|
2020-07-10 18:15:41 +00:00
|
|
|
.set(ap_id.eq(apub_id))
|
2020-04-04 00:04:57 +00:00
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn permadelete_for_creator(
|
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: PersonId,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-04-04 00:04:57 +00:00
|
|
|
|
|
|
|
let perma_deleted = "*Permananently Deleted*";
|
|
|
|
let perma_deleted_url = "https://deleted.com";
|
|
|
|
|
2020-08-17 18:12:36 +00:00
|
|
|
diesel::update(post.filter(creator_id.eq(for_creator_id)))
|
2020-04-04 00:04:57 +00:00
|
|
|
.set((
|
|
|
|
name.eq(perma_deleted),
|
|
|
|
url.eq(perma_deleted_url),
|
|
|
|
body.eq(perma_deleted),
|
|
|
|
deleted.eq(true),
|
|
|
|
updated.eq(naive_now()),
|
|
|
|
))
|
2020-08-17 18:12:36 +00:00
|
|
|
.get_results::<Self>(conn)
|
2020-04-04 00:04:57 +00:00
|
|
|
}
|
2020-07-21 03:46:36 +00:00
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn update_deleted(
|
|
|
|
conn: &PgConnection,
|
|
|
|
post_id: PostId,
|
|
|
|
new_deleted: bool,
|
|
|
|
) -> Result<Self, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-07-21 03:46:36 +00:00
|
|
|
diesel::update(post.find(post_id))
|
2020-08-05 16:03:46 +00:00
|
|
|
.set((deleted.eq(new_deleted), updated.eq(naive_now())))
|
2020-07-21 03:46:36 +00:00
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn update_removed(
|
|
|
|
conn: &PgConnection,
|
|
|
|
post_id: PostId,
|
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Self, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-07-21 03:46:36 +00:00
|
|
|
diesel::update(post.find(post_id))
|
2020-08-05 16:03:46 +00:00
|
|
|
.set((removed.eq(new_removed), updated.eq(naive_now())))
|
2020-07-21 03:46:36 +00:00
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
fn update_removed_for_creator(
|
2020-08-17 18:12:36 +00:00
|
|
|
conn: &PgConnection,
|
2021-03-18 20:25:21 +00:00
|
|
|
for_creator_id: PersonId,
|
|
|
|
for_community_id: Option<CommunityId>,
|
2020-08-17 18:12:36 +00:00
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-08-17 18:12:36 +00:00
|
|
|
|
|
|
|
let mut update = diesel::update(post).into_boxed();
|
|
|
|
update = update.filter(creator_id.eq(for_creator_id));
|
|
|
|
|
|
|
|
if let Some(for_community_id) = for_community_id {
|
|
|
|
update = update.filter(community_id.eq(for_community_id));
|
|
|
|
}
|
|
|
|
|
|
|
|
update
|
|
|
|
.set((removed.eq(new_removed), updated.eq(naive_now())))
|
|
|
|
.get_results::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn update_locked(conn: &PgConnection, post_id: PostId, new_locked: bool) -> Result<Self, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-07-21 03:46:36 +00:00
|
|
|
diesel::update(post.find(post_id))
|
|
|
|
.set(locked.eq(new_locked))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn update_stickied(
|
|
|
|
conn: &PgConnection,
|
|
|
|
post_id: PostId,
|
|
|
|
new_stickied: bool,
|
|
|
|
) -> Result<Self, Error> {
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-07-21 03:46:36 +00:00
|
|
|
diesel::update(post.find(post_id))
|
|
|
|
.set(stickied.eq(new_stickied))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
2020-07-21 17:52:57 +00:00
|
|
|
|
2021-03-18 20:25:21 +00:00
|
|
|
fn is_post_creator(person_id: PersonId, post_creator_id: PersonId) -> bool {
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id == post_creator_id
|
2020-07-21 17:52:57 +00:00
|
|
|
}
|
2019-04-20 04:06:25 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
fn upsert(conn: &PgConnection, post_form: &PostForm) -> Result<Post, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post::dsl::*;
|
2020-12-08 17:38:48 +00:00
|
|
|
insert_into(post)
|
|
|
|
.values(post_form)
|
|
|
|
.on_conflict(ap_id)
|
|
|
|
.do_update()
|
|
|
|
.set(post_form)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Likeable for PostLike {
|
|
|
|
type Form = PostLikeForm;
|
|
|
|
type IdType = PostId;
|
2019-03-23 01:42:57 +00:00
|
|
|
fn like(conn: &PgConnection, post_like_form: &PostLikeForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post_like::dsl::*;
|
2019-03-06 01:00:01 +00:00
|
|
|
insert_into(post_like)
|
|
|
|
.values(post_like_form)
|
2021-02-26 13:49:58 +00:00
|
|
|
.on_conflict((post_id, person_id))
|
2020-12-16 14:42:57 +00:00
|
|
|
.do_update()
|
|
|
|
.set(post_like_form)
|
2019-03-23 01:42:57 +00:00
|
|
|
.get_result::<Self>(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
2021-03-18 20:25:21 +00:00
|
|
|
fn remove(conn: &PgConnection, person_id: PersonId, post_id: PostId) -> Result<usize, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post_like::dsl;
|
2019-09-07 15:35:05 +00:00
|
|
|
diesel::delete(
|
2020-08-12 14:43:45 +00:00
|
|
|
dsl::post_like
|
|
|
|
.filter(dsl::post_id.eq(post_id))
|
2021-02-26 13:49:58 +00:00
|
|
|
.filter(dsl::person_id.eq(person_id)),
|
2019-09-07 15:35:05 +00:00
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Saveable for PostSaved {
|
|
|
|
type Form = PostSavedForm;
|
2019-04-20 04:06:25 +00:00
|
|
|
fn save(conn: &PgConnection, post_saved_form: &PostSavedForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post_saved::dsl::*;
|
2019-04-20 04:06:25 +00:00
|
|
|
insert_into(post_saved)
|
|
|
|
.values(post_saved_form)
|
2021-02-26 13:49:58 +00:00
|
|
|
.on_conflict((post_id, person_id))
|
2020-12-16 14:42:57 +00:00
|
|
|
.do_update()
|
|
|
|
.set(post_saved_form)
|
2019-04-20 04:06:25 +00:00
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
fn unsave(conn: &PgConnection, post_saved_form: &PostSavedForm) -> Result<usize, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post_saved::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
diesel::delete(
|
|
|
|
post_saved
|
|
|
|
.filter(post_id.eq(post_saved_form.post_id))
|
2021-02-26 13:49:58 +00:00
|
|
|
.filter(person_id.eq(post_saved_form.person_id)),
|
2019-09-07 15:35:05 +00:00
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Readable for PostRead {
|
|
|
|
type Form = PostReadForm;
|
2019-04-20 04:06:25 +00:00
|
|
|
fn mark_as_read(conn: &PgConnection, post_read_form: &PostReadForm) -> Result<Self, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post_read::dsl::*;
|
2019-04-20 04:06:25 +00:00
|
|
|
insert_into(post_read)
|
|
|
|
.values(post_read_form)
|
2021-04-24 22:26:50 +00:00
|
|
|
.on_conflict((post_id, person_id))
|
|
|
|
.do_update()
|
|
|
|
.set(post_read_form)
|
2019-04-20 04:06:25 +00:00
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
2020-08-12 12:30:52 +00:00
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
fn mark_as_unread(conn: &PgConnection, post_read_form: &PostReadForm) -> Result<usize, Error> {
|
2020-12-18 16:17:21 +00:00
|
|
|
use lemmy_db_schema::schema::post_read::dsl::*;
|
2019-09-07 15:35:05 +00:00
|
|
|
diesel::delete(
|
|
|
|
post_read
|
|
|
|
.filter(post_id.eq(post_read_form.post_id))
|
2021-02-26 13:49:58 +00:00
|
|
|
.filter(person_id.eq(post_read_form.person_id)),
|
2019-09-07 15:35:05 +00:00
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-30 18:44:15 +00:00
|
|
|
impl DeleteableOrRemoveable for Post {
|
|
|
|
fn blank_out_deleted_or_removed_info(mut self) -> Self {
|
|
|
|
self.name = "".into();
|
|
|
|
self.url = None;
|
|
|
|
self.body = None;
|
|
|
|
self.embed_title = None;
|
|
|
|
self.embed_description = None;
|
|
|
|
self.embed_html = None;
|
|
|
|
self.thumbnail_url = None;
|
|
|
|
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2021-03-10 22:33:55 +00:00
|
|
|
use crate::{establish_unpooled_connection, source::post::*};
|
2020-12-21 12:28:12 +00:00
|
|
|
use lemmy_db_schema::source::{
|
|
|
|
community::{Community, CommunityForm},
|
2021-02-26 13:49:58 +00:00
|
|
|
person::*,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
2021-02-25 19:43:39 +00:00
|
|
|
use serial_test::serial;
|
2020-05-16 14:04:08 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
#[test]
|
2021-02-25 19:43:39 +00:00
|
|
|
#[serial]
|
2019-03-06 01:00:01 +00:00
|
|
|
fn test_crud() {
|
2020-01-12 15:31:51 +00:00
|
|
|
let conn = establish_unpooled_connection();
|
2019-03-26 18:00:18 +00:00
|
|
|
|
2021-02-26 13:49:58 +00:00
|
|
|
let new_person = PersonForm {
|
2019-04-03 06:49:32 +00:00
|
|
|
name: "jim".into(),
|
2021-03-20 20:59:07 +00:00
|
|
|
..PersonForm::default()
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
2021-02-26 13:49:58 +00:00
|
|
|
let inserted_person = Person::create(&conn, &new_person).unwrap();
|
2019-04-03 06:49:32 +00:00
|
|
|
|
2019-03-26 18:00:18 +00:00
|
|
|
let new_community = CommunityForm {
|
2019-04-15 23:12:06 +00:00
|
|
|
name: "test community_3".to_string(),
|
2019-04-03 20:59:37 +00:00
|
|
|
title: "nada".to_owned(),
|
2021-03-20 20:59:07 +00:00
|
|
|
..CommunityForm::default()
|
2019-03-26 18:00:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_community = Community::create(&conn, &new_community).unwrap();
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
let new_post = PostForm {
|
|
|
|
name: "A test post".into(),
|
2021-02-26 13:49:58 +00:00
|
|
|
creator_id: inserted_person.id,
|
2019-03-26 18:00:18 +00:00
|
|
|
community_id: inserted_community.id,
|
2021-03-20 20:59:07 +00:00
|
|
|
..PostForm::default()
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let inserted_post = Post::create(&conn, &new_post).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
|
|
|
let expected_post = Post {
|
|
|
|
id: inserted_post.id,
|
|
|
|
name: "A test post".into(),
|
2019-03-26 18:00:18 +00:00
|
|
|
url: None,
|
|
|
|
body: None,
|
2021-02-26 13:49:58 +00:00
|
|
|
creator_id: inserted_person.id,
|
2019-03-26 18:00:18 +00:00
|
|
|
community_id: inserted_community.id,
|
2019-03-06 01:00:01 +00:00
|
|
|
published: inserted_post.published,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed: false,
|
|
|
|
locked: false,
|
2019-09-09 06:14:13 +00:00
|
|
|
stickied: false,
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw: false,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: false,
|
2019-09-07 15:35:05 +00:00
|
|
|
updated: None,
|
2020-03-07 23:31:13 +00:00
|
|
|
embed_title: None,
|
|
|
|
embed_description: None,
|
|
|
|
embed_html: None,
|
|
|
|
thumbnail_url: None,
|
2020-08-31 13:48:02 +00:00
|
|
|
ap_id: inserted_post.ap_id.to_owned(),
|
2020-04-04 00:04:57 +00:00
|
|
|
local: true,
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
// Post Like
|
2019-03-06 01:00:01 +00:00
|
|
|
let post_like_form = PostLikeForm {
|
2019-03-23 01:42:57 +00:00
|
|
|
post_id: inserted_post.id,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id: inserted_person.id,
|
2019-09-07 15:35:05 +00:00
|
|
|
score: 1,
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let inserted_post_like = PostLike::like(&conn, &post_like_form).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
|
|
|
let expected_post_like = PostLike {
|
|
|
|
id: inserted_post_like.id,
|
|
|
|
post_id: inserted_post.id,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id: inserted_person.id,
|
2019-03-06 01:00:01 +00:00
|
|
|
published: inserted_post_like.published,
|
2019-09-07 15:35:05 +00:00
|
|
|
score: 1,
|
2019-03-06 01:00:01 +00:00
|
|
|
};
|
2019-04-20 04:06:25 +00:00
|
|
|
|
|
|
|
// Post Save
|
|
|
|
let post_saved_form = PostSavedForm {
|
|
|
|
post_id: inserted_post.id,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id: inserted_person.id,
|
2019-04-20 04:06:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_post_saved = PostSaved::save(&conn, &post_saved_form).unwrap();
|
|
|
|
|
|
|
|
let expected_post_saved = PostSaved {
|
|
|
|
id: inserted_post_saved.id,
|
|
|
|
post_id: inserted_post.id,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id: inserted_person.id,
|
2019-04-20 04:06:25 +00:00
|
|
|
published: inserted_post_saved.published,
|
|
|
|
};
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
// Post Read
|
|
|
|
let post_read_form = PostReadForm {
|
2020-08-12 14:45:04 +00:00
|
|
|
post_id: inserted_post.id,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id: inserted_person.id,
|
2020-08-12 14:45:04 +00:00
|
|
|
};
|
2019-04-20 04:06:25 +00:00
|
|
|
|
|
|
|
let inserted_post_read = PostRead::mark_as_read(&conn, &post_read_form).unwrap();
|
|
|
|
|
|
|
|
let expected_post_read = PostRead {
|
2020-08-12 14:45:04 +00:00
|
|
|
id: inserted_post_read.id,
|
|
|
|
post_id: inserted_post.id,
|
2021-02-26 13:49:58 +00:00
|
|
|
person_id: inserted_person.id,
|
2020-08-12 14:45:04 +00:00
|
|
|
published: inserted_post_read.published,
|
2019-04-20 04:06:25 +00:00
|
|
|
};
|
2019-09-07 15:35:05 +00:00
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
let read_post = Post::read(&conn, inserted_post.id).unwrap();
|
|
|
|
let updated_post = Post::update(&conn, inserted_post.id, &new_post).unwrap();
|
2021-02-26 13:49:58 +00:00
|
|
|
let like_removed = PostLike::remove(&conn, inserted_person.id, inserted_post.id).unwrap();
|
2019-04-20 04:06:25 +00:00
|
|
|
let saved_removed = PostSaved::unsave(&conn, &post_saved_form).unwrap();
|
|
|
|
let read_removed = PostRead::mark_as_unread(&conn, &post_read_form).unwrap();
|
2019-03-23 01:42:57 +00:00
|
|
|
let num_deleted = Post::delete(&conn, inserted_post.id).unwrap();
|
2019-03-26 18:00:18 +00:00
|
|
|
Community::delete(&conn, inserted_community.id).unwrap();
|
2021-02-26 13:49:58 +00:00
|
|
|
Person::delete(&conn, inserted_person.id).unwrap();
|
2019-03-06 01:00:01 +00:00
|
|
|
|
|
|
|
assert_eq!(expected_post, read_post);
|
|
|
|
assert_eq!(expected_post, inserted_post);
|
|
|
|
assert_eq!(expected_post, updated_post);
|
|
|
|
assert_eq!(expected_post_like, inserted_post_like);
|
2019-04-20 04:06:25 +00:00
|
|
|
assert_eq!(expected_post_saved, inserted_post_saved);
|
|
|
|
assert_eq!(expected_post_read, inserted_post_read);
|
2019-03-06 01:00:01 +00:00
|
|
|
assert_eq!(1, like_removed);
|
2019-04-20 04:06:25 +00:00
|
|
|
assert_eq!(1, saved_removed);
|
|
|
|
assert_eq!(1, read_removed);
|
2019-03-06 01:00:01 +00:00
|
|
|
assert_eq!(1, num_deleted);
|
|
|
|
}
|
|
|
|
}
|