lemmy/crates/db_queries/src/source/comment.rs

395 lines
11 KiB
Rust
Raw Normal View History

use crate::{ApubObject, Crud, Likeable, Saveable};
use diesel::{dsl::*, result::Error, *};
use lemmy_db_schema::{
naive_now,
source::comment::{
Comment,
CommentForm,
CommentLike,
CommentLikeForm,
CommentSaved,
CommentSavedForm,
},
DbUrl,
};
pub trait Comment_ {
fn update_ap_id(conn: &PgConnection, comment_id: i32, apub_id: DbUrl) -> Result<Comment, Error>;
fn permadelete_for_creator(
conn: &PgConnection,
for_creator_id: i32,
) -> Result<Vec<Comment>, Error>;
fn update_deleted(
conn: &PgConnection,
comment_id: i32,
new_deleted: bool,
) -> Result<Comment, Error>;
fn update_removed(
conn: &PgConnection,
comment_id: i32,
new_removed: bool,
) -> Result<Comment, Error>;
fn update_removed_for_creator(
conn: &PgConnection,
for_creator_id: i32,
new_removed: bool,
) -> Result<Vec<Comment>, Error>;
fn update_read(conn: &PgConnection, comment_id: i32, new_read: bool) -> Result<Comment, Error>;
fn update_content(
conn: &PgConnection,
comment_id: i32,
new_content: &str,
) -> Result<Comment, Error>;
}
impl Comment_ for Comment {
fn update_ap_id(conn: &PgConnection, comment_id: i32, apub_id: DbUrl) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
diesel::update(comment.find(comment_id))
.set(ap_id.eq(apub_id))
.get_result::<Self>(conn)
}
fn permadelete_for_creator(conn: &PgConnection, for_creator_id: i32) -> Result<Vec<Self>, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
diesel::update(comment.filter(creator_id.eq(for_creator_id)))
.set((
content.eq("*Permananently Deleted*"),
deleted.eq(true),
updated.eq(naive_now()),
))
.get_results::<Self>(conn)
}
fn update_deleted(
conn: &PgConnection,
comment_id: i32,
new_deleted: bool,
) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
diesel::update(comment.find(comment_id))
.set((deleted.eq(new_deleted), updated.eq(naive_now())))
.get_result::<Self>(conn)
}
fn update_removed(
conn: &PgConnection,
comment_id: i32,
new_removed: bool,
) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
diesel::update(comment.find(comment_id))
.set((removed.eq(new_removed), updated.eq(naive_now())))
.get_result::<Self>(conn)
}
fn update_removed_for_creator(
conn: &PgConnection,
for_creator_id: i32,
new_removed: bool,
) -> Result<Vec<Self>, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
diesel::update(comment.filter(creator_id.eq(for_creator_id)))
.set((removed.eq(new_removed), updated.eq(naive_now())))
.get_results::<Self>(conn)
}
fn update_read(conn: &PgConnection, comment_id: i32, new_read: bool) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
diesel::update(comment.find(comment_id))
.set(read.eq(new_read))
.get_result::<Self>(conn)
}
fn update_content(
conn: &PgConnection,
comment_id: i32,
new_content: &str,
) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
diesel::update(comment.find(comment_id))
.set((content.eq(new_content), updated.eq(naive_now())))
.get_result::<Self>(conn)
}
}
impl Crud<CommentForm> for Comment {
fn read(conn: &PgConnection, comment_id: i32) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
comment.find(comment_id).first::<Self>(conn)
2019-03-06 01:00:01 +00:00
}
fn delete(conn: &PgConnection, comment_id: i32) -> Result<usize, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
diesel::delete(comment.find(comment_id)).execute(conn)
2019-03-06 01:00:01 +00:00
}
fn create(conn: &PgConnection, comment_form: &CommentForm) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
insert_into(comment)
.values(comment_form)
.get_result::<Self>(conn)
2019-03-06 01:00:01 +00:00
}
fn update(
conn: &PgConnection,
comment_id: i32,
comment_form: &CommentForm,
) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
2019-03-06 01:00:01 +00:00
diesel::update(comment.find(comment_id))
.set(comment_form)
.get_result::<Self>(conn)
2019-03-06 01:00:01 +00:00
}
}
impl ApubObject<CommentForm> for Comment {
fn read_from_apub_id(conn: &PgConnection, object_id: &DbUrl) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
comment.filter(ap_id.eq(object_id)).first::<Self>(conn)
}
fn upsert(conn: &PgConnection, comment_form: &CommentForm) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment::dsl::*;
insert_into(comment)
.values(comment_form)
.on_conflict(ap_id)
.do_update()
.set(comment_form)
.get_result::<Self>(conn)
}
}
impl Likeable<CommentLikeForm> for CommentLike {
fn like(conn: &PgConnection, comment_like_form: &CommentLikeForm) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment_like::dsl::*;
2019-03-06 01:00:01 +00:00
insert_into(comment_like)
.values(comment_like_form)
2021-02-26 13:49:58 +00:00
.on_conflict((comment_id, person_id))
.do_update()
.set(comment_like_form)
.get_result::<Self>(conn)
2019-03-06 01:00:01 +00:00
}
2021-02-26 13:49:58 +00:00
fn remove(conn: &PgConnection, person_id: i32, comment_id: i32) -> Result<usize, Error> {
use lemmy_db_schema::schema::comment_like::dsl;
diesel::delete(
dsl::comment_like
.filter(dsl::comment_id.eq(comment_id))
2021-02-26 13:49:58 +00:00
.filter(dsl::person_id.eq(person_id)),
)
.execute(conn)
2019-03-06 01:00:01 +00:00
}
}
impl Saveable<CommentSavedForm> for CommentSaved {
fn save(conn: &PgConnection, comment_saved_form: &CommentSavedForm) -> Result<Self, Error> {
use lemmy_db_schema::schema::comment_saved::dsl::*;
insert_into(comment_saved)
.values(comment_saved_form)
2021-03-10 22:33:55 +00:00
.on_conflict((comment_id, person_id))
.do_update()
.set(comment_saved_form)
.get_result::<Self>(conn)
}
fn unsave(conn: &PgConnection, comment_saved_form: &CommentSavedForm) -> Result<usize, Error> {
use lemmy_db_schema::schema::comment_saved::dsl::*;
diesel::delete(
comment_saved
.filter(comment_id.eq(comment_saved_form.comment_id))
2021-03-10 22:33:55 +00:00
.filter(person_id.eq(comment_saved_form.person_id)),
)
.execute(conn)
}
}
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, Crud, Likeable, Saveable};
use lemmy_db_schema::source::{
comment::*,
2020-12-21 12:28:12 +00:00
community::{Community, CommunityForm},
2021-03-11 04:43:11 +00:00
person::{Person, PersonForm},
post::*,
};
use serial_test::serial;
#[test]
#[serial]
2019-03-06 01:00:01 +00:00
fn test_crud() {
let conn = establish_unpooled_connection();
2021-02-26 13:49:58 +00:00
let new_person = PersonForm {
name: "terry".into(),
preferred_username: None,
avatar: None,
banner: None,
2021-03-10 22:33:55 +00:00
banned: None,
deleted: None,
published: None,
2019-08-14 03:15:52 +00:00
updated: None,
actor_id: None,
bio: None,
2021-03-10 22:33:55 +00:00
local: None,
private_key: None,
public_key: None,
last_refreshed_at: None,
inbox_url: None,
shared_inbox_url: None,
};
2021-03-10 22:33:55 +00:00
let inserted_person = Person::create(&conn, &new_person).unwrap();
let new_community = CommunityForm {
name: "test community".to_string(),
title: "nada".to_owned(),
description: None,
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
2019-04-20 07:24:59 +00:00
removed: None,
deleted: None,
2019-08-14 03:15:52 +00:00
updated: None,
nsfw: false,
actor_id: None,
local: true,
private_key: None,
public_key: None,
last_refreshed_at: None,
published: None,
banner: None,
icon: None,
inbox_url: None,
shared_inbox_url: None,
followers_url: None,
};
let inserted_community = Community::create(&conn, &new_community).unwrap();
2019-03-06 01:00:01 +00:00
let new_post = PostForm {
name: "A test post".into(),
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
url: None,
body: None,
community_id: inserted_community.id,
2019-04-20 07:24:59 +00:00
removed: None,
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 03:15:52 +00:00
updated: None,
nsfw: false,
embed_title: None,
embed_description: None,
embed_html: None,
thumbnail_url: None,
ap_id: None,
2020-04-04 00:04:57 +00:00
local: true,
published: None,
2019-03-06 01:00:01 +00:00
};
let inserted_post = Post::create(&conn, &new_post).unwrap();
2019-03-06 01:00:01 +00:00
let comment_form = CommentForm {
content: "A test comment".into(),
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
post_id: inserted_post.id,
removed: None,
deleted: None,
2019-04-20 18:17:00 +00:00
read: None,
2019-03-06 01:00:01 +00:00
parent_id: None,
published: None,
updated: None,
ap_id: None,
2020-04-04 00:04:57 +00:00
local: true,
2019-03-06 01:00:01 +00:00
};
let inserted_comment = Comment::create(&conn, &comment_form).unwrap();
2019-03-06 01:00:01 +00:00
let expected_comment = Comment {
id: inserted_comment.id,
content: "A test comment".into(),
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
2019-03-06 01:00:01 +00:00
post_id: inserted_post.id,
removed: false,
deleted: false,
read: false,
2019-03-06 01:00:01 +00:00
parent_id: None,
published: inserted_comment.published,
updated: None,
ap_id: inserted_comment.ap_id.to_owned(),
2020-04-04 00:04:57 +00:00
local: true,
2019-03-06 01:00:01 +00:00
};
2019-03-06 01:00:01 +00:00
let child_comment_form = CommentForm {
content: "A child comment".into(),
2021-03-10 22:33:55 +00:00
creator_id: inserted_person.id,
post_id: inserted_post.id,
parent_id: Some(inserted_comment.id),
removed: None,
deleted: None,
2019-04-20 18:17:00 +00:00
read: None,
published: None,
updated: None,
ap_id: None,
2020-04-04 00:04:57 +00:00
local: true,
2019-03-06 01:00:01 +00:00
};
let inserted_child_comment = Comment::create(&conn, &child_comment_form).unwrap();
2019-03-06 01:00:01 +00:00
// Comment Like
2019-03-06 01:00:01 +00:00
let comment_like_form = CommentLikeForm {
comment_id: inserted_comment.id,
post_id: inserted_post.id,
2021-03-10 22:33:55 +00:00
person_id: inserted_person.id,
score: 1,
2019-03-06 01:00:01 +00:00
};
let inserted_comment_like = CommentLike::like(&conn, &comment_like_form).unwrap();
2019-03-06 01:00:01 +00:00
let expected_comment_like = CommentLike {
id: inserted_comment_like.id,
comment_id: inserted_comment.id,
post_id: inserted_post.id,
2021-03-10 22:33:55 +00:00
person_id: inserted_person.id,
2019-03-06 01:00:01 +00:00
published: inserted_comment_like.published,
score: 1,
2019-03-06 01:00:01 +00:00
};
// Comment Saved
let comment_saved_form = CommentSavedForm {
comment_id: inserted_comment.id,
2021-03-10 22:33:55 +00:00
person_id: inserted_person.id,
};
let inserted_comment_saved = CommentSaved::save(&conn, &comment_saved_form).unwrap();
let expected_comment_saved = CommentSaved {
id: inserted_comment_saved.id,
comment_id: inserted_comment.id,
2021-03-10 22:33:55 +00:00
person_id: inserted_person.id,
published: inserted_comment_saved.published,
};
let read_comment = Comment::read(&conn, inserted_comment.id).unwrap();
let updated_comment = Comment::update(&conn, inserted_comment.id, &comment_form).unwrap();
2021-03-10 22:33:55 +00:00
let like_removed = CommentLike::remove(&conn, inserted_person.id, inserted_comment.id).unwrap();
let saved_removed = CommentSaved::unsave(&conn, &comment_saved_form).unwrap();
let num_deleted = Comment::delete(&conn, inserted_comment.id).unwrap();
Comment::delete(&conn, inserted_child_comment.id).unwrap();
Post::delete(&conn, inserted_post.id).unwrap();
Community::delete(&conn, inserted_community.id).unwrap();
2021-03-10 22:33:55 +00:00
Person::delete(&conn, inserted_person.id).unwrap();
2019-03-06 01:00:01 +00:00
assert_eq!(expected_comment, read_comment);
assert_eq!(expected_comment, inserted_comment);
assert_eq!(expected_comment, updated_comment);
assert_eq!(expected_comment_like, inserted_comment_like);
assert_eq!(expected_comment_saved, inserted_comment_saved);
assert_eq!(
expected_comment.id,
inserted_child_comment.parent_id.unwrap()
);
2019-03-06 01:00:01 +00:00
assert_eq!(1, like_removed);
assert_eq!(1, saved_removed);
2019-03-06 01:00:01 +00:00
assert_eq!(1, num_deleted);
}
}