2020-12-18 17:27:25 +00:00
|
|
|
use crate::{ApubObject, Crud, 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-01-27 16:42:23 +00:00
|
|
|
Url,
|
2020-08-12 14:45:04 +00:00
|
|
|
};
|
2020-07-17 21:11:07 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
impl Crud<PostForm> for Post {
|
|
|
|
fn read(conn: &PgConnection, post_id: i32) -> 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)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn delete(conn: &PgConnection, post_id: i32) -> 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)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(conn: &PgConnection, post_id: i32, 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>;
|
|
|
|
fn list_for_community(conn: &PgConnection, the_community_id: i32) -> Result<Vec<Post>, Error>;
|
2021-02-04 16:34:58 +00:00
|
|
|
fn update_ap_id(conn: &PgConnection, post_id: i32, apub_id: Url) -> Result<Post, Error>;
|
2020-12-18 18:38:32 +00:00
|
|
|
fn permadelete_for_creator(conn: &PgConnection, for_creator_id: i32) -> Result<Vec<Post>, Error>;
|
|
|
|
fn update_deleted(conn: &PgConnection, post_id: i32, new_deleted: bool) -> Result<Post, Error>;
|
|
|
|
fn update_removed(conn: &PgConnection, post_id: i32, new_removed: bool) -> Result<Post, Error>;
|
|
|
|
fn update_removed_for_creator(
|
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: i32,
|
|
|
|
for_community_id: Option<i32>,
|
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Vec<Post>, Error>;
|
|
|
|
fn update_locked(conn: &PgConnection, post_id: i32, new_locked: bool) -> Result<Post, Error>;
|
|
|
|
fn update_stickied(conn: &PgConnection, post_id: i32, new_stickied: bool) -> Result<Post, Error>;
|
|
|
|
fn is_post_creator(user_id: i32, post_creator_id: i32) -> bool;
|
2020-12-08 17:38:48 +00:00
|
|
|
}
|
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
impl Post_ for Post {
|
|
|
|
fn list_for_community(conn: &PgConnection, the_community_id: i32) -> Result<Vec<Self>, Error> {
|
|
|
|
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-02-04 16:34:58 +00:00
|
|
|
fn update_ap_id(conn: &PgConnection, post_id: i32, apub_id: Url) -> 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)
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
fn permadelete_for_creator(conn: &PgConnection, for_creator_id: i32) -> Result<Vec<Self>, Error> {
|
|
|
|
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
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
fn update_deleted(conn: &PgConnection, post_id: i32, new_deleted: bool) -> Result<Self, Error> {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
fn update_removed(conn: &PgConnection, post_id: i32, new_removed: bool) -> Result<Self, Error> {
|
|
|
|
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,
|
|
|
|
for_creator_id: i32,
|
|
|
|
for_community_id: Option<i32>,
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
fn update_locked(conn: &PgConnection, post_id: i32, new_locked: bool) -> Result<Self, Error> {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
fn update_stickied(conn: &PgConnection, post_id: i32, new_stickied: bool) -> Result<Self, Error> {
|
|
|
|
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
|
|
|
|
2020-12-18 18:38:32 +00:00
|
|
|
fn is_post_creator(user_id: i32, post_creator_id: i32) -> bool {
|
2020-07-21 17:52:57 +00:00
|
|
|
user_id == post_creator_id
|
|
|
|
}
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
impl ApubObject<PostForm> for Post {
|
2021-01-27 16:42:23 +00:00
|
|
|
fn read_from_apub_id(conn: &PgConnection, object_id: &Url) -> 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.filter(ap_id.eq(object_id)).first::<Self>(conn)
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
impl Likeable<PostLikeForm> for PostLike {
|
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)
|
2020-12-16 14:42:57 +00:00
|
|
|
.on_conflict((post_id, user_id))
|
|
|
|
.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
|
|
|
}
|
2020-08-12 14:43:45 +00:00
|
|
|
fn remove(conn: &PgConnection, user_id: i32, post_id: i32) -> 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))
|
|
|
|
.filter(dsl::user_id.eq(user_id)),
|
2019-09-07 15:35:05 +00:00
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
impl Saveable<PostSavedForm> for PostSaved {
|
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)
|
2020-12-16 14:42:57 +00:00
|
|
|
.on_conflict((post_id, user_id))
|
|
|
|
.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))
|
|
|
|
.filter(user_id.eq(post_saved_form.user_id)),
|
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
impl Readable<PostReadForm> for PostRead {
|
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)
|
|
|
|
.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))
|
|
|
|
.filter(user_id.eq(post_read_form.user_id)),
|
|
|
|
)
|
|
|
|
.execute(conn)
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-06 01:00:01 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-12-21 16:30:34 +00:00
|
|
|
use crate::{establish_unpooled_connection, source::post::*, ListingType, SortType};
|
2020-12-21 12:28:12 +00:00
|
|
|
use lemmy_db_schema::source::{
|
|
|
|
community::{Community, CommunityForm},
|
|
|
|
user::*,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
#[test]
|
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
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
let new_user = UserForm {
|
|
|
|
name: "jim".into(),
|
|
|
|
preferred_username: None,
|
|
|
|
password_encrypted: "nope".into(),
|
|
|
|
email: None,
|
2020-01-22 21:35:29 +00:00
|
|
|
matrix_user_id: None,
|
2019-12-29 20:39:48 +00:00
|
|
|
avatar: None,
|
2020-08-05 16:03:46 +00:00
|
|
|
banner: None,
|
2019-04-16 23:04:23 +00:00
|
|
|
admin: false,
|
2020-11-10 16:11:08 +00:00
|
|
|
banned: Some(false),
|
2020-09-18 11:04:12 +00:00
|
|
|
published: None,
|
2019-08-14 03:15:52 +00:00
|
|
|
updated: None,
|
|
|
|
show_nsfw: false,
|
2020-10-03 16:44:25 +00:00
|
|
|
theme: "browser".into(),
|
2019-10-21 04:21:54 +00:00
|
|
|
default_sort_type: SortType::Hot as i16,
|
|
|
|
default_listing_type: ListingType::Subscribed as i16,
|
2019-12-09 08:24:53 +00:00
|
|
|
lang: "browser".into(),
|
2020-01-02 21:55:54 +00:00
|
|
|
show_avatars: true,
|
|
|
|
send_notifications_to_email: false,
|
2020-08-31 13:48:02 +00:00
|
|
|
actor_id: None,
|
2020-04-03 04:12:05 +00:00
|
|
|
bio: None,
|
|
|
|
local: true,
|
|
|
|
private_key: None,
|
|
|
|
public_key: None,
|
|
|
|
last_refreshed_at: None,
|
2021-02-04 16:34:58 +00:00
|
|
|
inbox_url: None,
|
|
|
|
shared_inbox_url: None,
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_user = User_::create(&conn, &new_user).unwrap();
|
|
|
|
|
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(),
|
|
|
|
description: None,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.id,
|
2019-04-20 07:24:59 +00:00
|
|
|
removed: None,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: None,
|
2019-08-14 03:15:52 +00:00
|
|
|
updated: None,
|
|
|
|
nsfw: false,
|
2020-08-31 13:48:02 +00:00
|
|
|
actor_id: None,
|
2020-04-03 04:12:05 +00:00
|
|
|
local: true,
|
|
|
|
private_key: None,
|
|
|
|
public_key: None,
|
|
|
|
last_refreshed_at: None,
|
2020-04-07 16:47:19 +00:00
|
|
|
published: None,
|
2020-08-05 16:03:46 +00:00
|
|
|
icon: None,
|
|
|
|
banner: None,
|
2021-02-04 16:34:58 +00:00
|
|
|
followers_url: None,
|
|
|
|
inbox_url: None,
|
|
|
|
shared_inbox_url: None,
|
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(),
|
2019-03-26 18:00:18 +00:00
|
|
|
url: None,
|
|
|
|
body: None,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.id,
|
2019-03-26 18:00:18 +00:00
|
|
|
community_id: inserted_community.id,
|
2019-04-20 07:24:59 +00:00
|
|
|
removed: None,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: None,
|
2019-04-20 07:24:59 +00:00
|
|
|
locked: None,
|
2019-09-09 06:14:13 +00:00
|
|
|
stickied: None,
|
2019-08-14 02:52:43 +00:00
|
|
|
nsfw: 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: None,
|
2020-04-04 00:04:57 +00:00
|
|
|
local: true,
|
2020-04-07 16:47:19 +00:00
|
|
|
published: None,
|
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,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.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,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id: inserted_user.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,
|
2019-04-03 06:49:32 +00:00
|
|
|
user_id: inserted_user.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,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
};
|
|
|
|
|
|
|
|
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,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
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,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
};
|
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,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
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();
|
2020-08-12 14:43:45 +00:00
|
|
|
let like_removed = PostLike::remove(&conn, inserted_user.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();
|
2019-04-03 06:49:32 +00:00
|
|
|
User_::delete(&conn, inserted_user.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);
|
|
|
|
}
|
|
|
|
}
|