2020-08-12 14:45:04 +00:00
|
|
|
use crate::{
|
|
|
|
naive_now,
|
|
|
|
schema::{post, post_like, post_read, post_saved},
|
2020-12-08 17:38:48 +00:00
|
|
|
ApubObject,
|
2020-08-12 14:45:04 +00:00
|
|
|
Crud,
|
|
|
|
Likeable,
|
|
|
|
Readable,
|
|
|
|
Saveable,
|
|
|
|
};
|
2020-05-16 14:04:08 +00:00
|
|
|
use diesel::{dsl::*, result::Error, *};
|
2020-12-10 20:53:49 +00:00
|
|
|
use serde::Serialize;
|
2020-07-17 21:11:07 +00:00
|
|
|
use url::{ParseError, Url};
|
2019-03-06 01:00:01 +00:00
|
|
|
|
2020-12-10 20:53:49 +00:00
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "post"]
|
2019-03-06 01:00:01 +00:00
|
|
|
pub struct Post {
|
|
|
|
pub id: i32,
|
|
|
|
pub name: String,
|
2019-03-26 18:00:18 +00:00
|
|
|
pub url: Option<String>,
|
|
|
|
pub body: Option<String>,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub creator_id: i32,
|
2019-03-26 18:00:18 +00:00
|
|
|
pub community_id: i32,
|
2019-04-20 04:06:25 +00:00
|
|
|
pub removed: bool,
|
|
|
|
pub locked: bool,
|
2019-03-06 01:00:01 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
2019-04-29 19:14:54 +00:00
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: bool,
|
2019-08-14 02:52:43 +00:00
|
|
|
pub nsfw: bool,
|
2019-09-09 06:14:13 +00:00
|
|
|
pub stickied: bool,
|
2020-03-07 23:31:13 +00:00
|
|
|
pub embed_title: Option<String>,
|
|
|
|
pub embed_description: Option<String>,
|
|
|
|
pub embed_html: Option<String>,
|
|
|
|
pub thumbnail_url: Option<String>,
|
2020-04-04 00:04:57 +00:00
|
|
|
pub ap_id: String,
|
|
|
|
pub local: bool,
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Insertable, AsChangeset)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "post"]
|
2019-03-23 01:42:57 +00:00
|
|
|
pub struct PostForm {
|
|
|
|
pub name: String,
|
2019-03-26 18:00:18 +00:00
|
|
|
pub url: Option<String>,
|
|
|
|
pub body: Option<String>,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub creator_id: i32,
|
2019-03-26 18:00:18 +00:00
|
|
|
pub community_id: i32,
|
2019-04-20 07:24:59 +00:00
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub locked: Option<bool>,
|
2020-04-07 16:47:19 +00:00
|
|
|
pub published: Option<chrono::NaiveDateTime>,
|
2019-04-29 19:14:54 +00:00
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: Option<bool>,
|
2019-08-14 02:52:43 +00:00
|
|
|
pub nsfw: bool,
|
2019-09-09 06:14:13 +00:00
|
|
|
pub stickied: Option<bool>,
|
2020-03-07 23:31:13 +00:00
|
|
|
pub embed_title: Option<String>,
|
|
|
|
pub embed_description: Option<String>,
|
|
|
|
pub embed_html: Option<String>,
|
|
|
|
pub thumbnail_url: Option<String>,
|
2020-08-31 13:48:02 +00:00
|
|
|
pub ap_id: Option<String>,
|
2020-04-04 00:04:57 +00:00
|
|
|
pub local: bool,
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
impl PostForm {
|
|
|
|
pub fn get_ap_id(&self) -> Result<Url, ParseError> {
|
2020-08-31 13:48:02 +00:00
|
|
|
Url::parse(&self.ap_id.as_ref().unwrap_or(&"not_a_url".to_string()))
|
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> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
post.find(post_id).first::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn delete(conn: &PgConnection, post_id: i32) -> Result<usize, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
diesel::delete(post.find(post_id)).execute(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create(conn: &PgConnection, new_post: &PostForm) -> Result<Self, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
insert_into(post).values(new_post).get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn update(conn: &PgConnection, post_id: i32, new_post: &PostForm) -> Result<Self, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
diesel::update(post.find(post_id))
|
|
|
|
.set(new_post)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ApubObject<PostForm> for Post {
|
|
|
|
fn read_from_apub_id(conn: &PgConnection, object_id: &str) -> Result<Self, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
post.filter(ap_id.eq(object_id)).first::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn upsert(conn: &PgConnection, post_form: &PostForm) -> Result<Post, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
insert_into(post)
|
|
|
|
.values(post_form)
|
|
|
|
.on_conflict(ap_id)
|
|
|
|
.do_update()
|
|
|
|
.set(post_form)
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 09:00:24 +00:00
|
|
|
impl Post {
|
|
|
|
pub fn read(conn: &PgConnection, post_id: i32) -> Result<Self, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
post.filter(id.eq(post_id)).first::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list_for_community(
|
|
|
|
conn: &PgConnection,
|
|
|
|
the_community_id: i32,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
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
|
|
|
|
2020-07-10 18:15:41 +00:00
|
|
|
pub fn update_ap_id(conn: &PgConnection, post_id: i32, apub_id: String) -> Result<Self, Error> {
|
2020-04-04 00:04:57 +00:00
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
|
|
|
|
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-08-17 20:52:01 +00:00
|
|
|
pub fn permadelete_for_creator(
|
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: i32,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
2020-04-04 00:04:57 +00:00
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
pub fn update_deleted(
|
|
|
|
conn: &PgConnection,
|
|
|
|
post_id: i32,
|
|
|
|
new_deleted: bool,
|
|
|
|
) -> Result<Self, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update_removed(
|
|
|
|
conn: &PgConnection,
|
|
|
|
post_id: i32,
|
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Self, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
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-08-17 18:12:36 +00:00
|
|
|
pub fn update_removed_for_creator(
|
|
|
|
conn: &PgConnection,
|
|
|
|
for_creator_id: i32,
|
|
|
|
for_community_id: Option<i32>,
|
|
|
|
new_removed: bool,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
|
|
|
|
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-07-21 03:46:36 +00:00
|
|
|
pub fn update_locked(conn: &PgConnection, post_id: i32, new_locked: bool) -> Result<Self, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
diesel::update(post.find(post_id))
|
|
|
|
.set(locked.eq(new_locked))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update_stickied(
|
|
|
|
conn: &PgConnection,
|
|
|
|
post_id: i32,
|
|
|
|
new_stickied: bool,
|
|
|
|
) -> Result<Self, Error> {
|
|
|
|
use crate::schema::post::dsl::*;
|
|
|
|
diesel::update(post.find(post_id))
|
|
|
|
.set(stickied.eq(new_stickied))
|
|
|
|
.get_result::<Self>(conn)
|
|
|
|
}
|
2020-07-21 17:52:57 +00:00
|
|
|
|
|
|
|
pub fn is_post_creator(user_id: i32, post_creator_id: i32) -> bool {
|
|
|
|
user_id == post_creator_id
|
|
|
|
}
|
2019-03-06 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "post_like"]
|
|
|
|
pub struct PostLike {
|
|
|
|
pub id: i32,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
pub score: i16,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "post_like"]
|
2019-04-20 04:06:25 +00:00
|
|
|
pub struct PostLikeForm {
|
|
|
|
pub post_id: i32,
|
|
|
|
pub user_id: i32,
|
2019-09-07 15:35:05 +00:00
|
|
|
pub score: i16,
|
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> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::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> {
|
|
|
|
use crate::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-04-20 04:06:25 +00:00
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "post_saved"]
|
|
|
|
pub struct PostSaved {
|
|
|
|
pub id: i32,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Insertable, AsChangeset)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "post_saved"]
|
2019-04-20 04:06:25 +00:00
|
|
|
pub struct PostSavedForm {
|
|
|
|
pub post_id: i32,
|
|
|
|
pub user_id: i32,
|
|
|
|
}
|
|
|
|
|
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> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::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> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "post_read"]
|
|
|
|
pub struct PostRead {
|
|
|
|
pub id: i32,
|
2020-08-12 12:30:52 +00:00
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
pub post_id: i32,
|
2020-08-12 12:30:52 +00:00
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
pub user_id: i32,
|
2020-08-12 12:30:52 +00:00
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Insertable, AsChangeset)]
|
2019-09-07 15:35:05 +00:00
|
|
|
#[table_name = "post_read"]
|
2019-04-20 04:06:25 +00:00
|
|
|
pub struct PostReadForm {
|
|
|
|
pub post_id: i32,
|
2020-08-12 12:30:52 +00:00
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
pub user_id: i32,
|
|
|
|
}
|
|
|
|
|
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> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::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> {
|
2019-06-03 17:47:12 +00:00
|
|
|
use crate::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-07-10 18:15:41 +00:00
|
|
|
use crate::{
|
2020-12-13 17:04:42 +00:00
|
|
|
source::{community::*, post::*, user::*},
|
2020-07-10 18:15:41 +00:00
|
|
|
tests::establish_unpooled_connection,
|
|
|
|
ListingType,
|
|
|
|
SortType,
|
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,
|
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,
|
|
|
|
category_id: 1,
|
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,
|
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);
|
|
|
|
}
|
|
|
|
}
|