2019-05-05 05:20:38 +00:00
|
|
|
use super::*;
|
2019-04-03 06:49:32 +00:00
|
|
|
|
|
|
|
#[derive(EnumString,ToString,Debug, Serialize, Deserialize)]
|
2019-04-08 05:19:02 +00:00
|
|
|
pub enum PostListingType {
|
2019-04-03 06:49:32 +00:00
|
|
|
All, Subscribed, Community
|
|
|
|
}
|
|
|
|
|
|
|
|
// The faked schema since diesel doesn't do views
|
|
|
|
table! {
|
|
|
|
post_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
url -> Nullable<Text>,
|
|
|
|
body -> Nullable<Text>,
|
|
|
|
creator_id -> Int4,
|
|
|
|
community_id -> Int4,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed -> Bool,
|
|
|
|
locked -> Bool,
|
2019-04-03 20:59:37 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
updated -> Nullable<Timestamp>,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted -> Bool,
|
2019-04-03 20:59:37 +00:00
|
|
|
creator_name -> Varchar,
|
2019-04-03 06:49:32 +00:00
|
|
|
community_name -> Varchar,
|
2019-04-21 20:52:55 +00:00
|
|
|
community_removed -> Bool,
|
2019-04-29 19:14:54 +00:00
|
|
|
community_deleted -> Bool,
|
2019-04-03 06:49:32 +00:00
|
|
|
number_of_comments -> BigInt,
|
|
|
|
score -> BigInt,
|
|
|
|
upvotes -> BigInt,
|
|
|
|
downvotes -> BigInt,
|
|
|
|
hot_rank -> Int4,
|
2019-04-03 20:59:37 +00:00
|
|
|
user_id -> Nullable<Int4>,
|
|
|
|
my_vote -> Nullable<Int4>,
|
2019-04-05 19:14:54 +00:00
|
|
|
subscribed -> Nullable<Bool>,
|
2019-04-20 04:06:25 +00:00
|
|
|
read -> Nullable<Bool>,
|
|
|
|
saved -> Nullable<Bool>,
|
2019-04-03 06:49:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-03 20:59:37 +00:00
|
|
|
#[derive(Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize,QueryableByName,Clone)]
|
2019-04-03 06:49:32 +00:00
|
|
|
#[table_name="post_view"]
|
|
|
|
pub struct PostView {
|
|
|
|
pub id: i32,
|
|
|
|
pub name: String,
|
|
|
|
pub url: Option<String>,
|
|
|
|
pub body: Option<String>,
|
|
|
|
pub creator_id: i32,
|
|
|
|
pub community_id: i32,
|
2019-04-20 04:06:25 +00:00
|
|
|
pub removed: bool,
|
|
|
|
pub locked: bool,
|
2019-04-03 20:59:37 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
2019-04-29 19:14:54 +00:00
|
|
|
pub deleted: bool,
|
2019-04-03 20:59:37 +00:00
|
|
|
pub creator_name: String,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub community_name: String,
|
2019-04-21 20:52:55 +00:00
|
|
|
pub community_removed: bool,
|
2019-04-29 19:14:54 +00:00
|
|
|
pub community_deleted: bool,
|
2019-04-03 06:49:32 +00:00
|
|
|
pub number_of_comments: i64,
|
|
|
|
pub score: i64,
|
|
|
|
pub upvotes: i64,
|
|
|
|
pub downvotes: i64,
|
|
|
|
pub hot_rank: i32,
|
2019-04-03 20:59:37 +00:00
|
|
|
pub user_id: Option<i32>,
|
|
|
|
pub my_vote: Option<i32>,
|
2019-04-05 19:14:54 +00:00
|
|
|
pub subscribed: Option<bool>,
|
2019-04-20 04:06:25 +00:00
|
|
|
pub read: Option<bool>,
|
|
|
|
pub saved: Option<bool>,
|
2019-04-03 06:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PostView {
|
2019-04-08 05:19:02 +00:00
|
|
|
pub fn list(conn: &PgConnection,
|
|
|
|
type_: PostListingType,
|
|
|
|
sort: &SortType,
|
|
|
|
for_community_id: Option<i32>,
|
|
|
|
for_creator_id: Option<i32>,
|
2019-04-23 22:05:50 +00:00
|
|
|
search_term: Option<String>,
|
2019-04-08 05:19:02 +00:00
|
|
|
my_user_id: Option<i32>,
|
2019-04-20 04:06:25 +00:00
|
|
|
saved_only: bool,
|
|
|
|
unread_only: bool,
|
2019-04-17 18:30:13 +00:00
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
) -> Result<Vec<Self>, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::post_view::post_view::dsl::*;
|
2019-04-03 06:49:32 +00:00
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
let (limit, offset) = limit_and_offset(page, limit);
|
|
|
|
|
|
|
|
let mut query = post_view.into_boxed();
|
2019-04-03 06:49:32 +00:00
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
if let Some(for_community_id) = for_community_id {
|
|
|
|
query = query.filter(community_id.eq(for_community_id));
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(for_creator_id) = for_creator_id {
|
|
|
|
query = query.filter(creator_id.eq(for_creator_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
2019-04-23 22:05:50 +00:00
|
|
|
if let Some(search_term) = search_term {
|
|
|
|
query = query.filter(name.ilike(fuzzy_search(&search_term)));
|
|
|
|
};
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
// TODO these are wrong, bc they'll only show saved for your logged in user, not theirs
|
|
|
|
if saved_only {
|
|
|
|
query = query.filter(saved.eq(true));
|
|
|
|
};
|
|
|
|
|
|
|
|
if unread_only {
|
|
|
|
query = query.filter(read.eq(false));
|
|
|
|
};
|
|
|
|
|
2019-04-05 19:14:54 +00:00
|
|
|
match type_ {
|
2019-04-08 05:19:02 +00:00
|
|
|
PostListingType::Subscribed => {
|
2019-04-05 19:14:54 +00:00
|
|
|
query = query.filter(subscribed.eq(true));
|
|
|
|
},
|
|
|
|
_ => {}
|
|
|
|
};
|
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
// The view lets you pass a null user_id, if you're not logged in
|
2019-04-08 05:19:02 +00:00
|
|
|
if let Some(my_user_id) = my_user_id {
|
|
|
|
query = query.filter(user_id.eq(my_user_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
} else {
|
|
|
|
query = query.filter(user_id.is_null());
|
|
|
|
}
|
|
|
|
|
|
|
|
query = match sort {
|
2019-04-08 05:19:02 +00:00
|
|
|
SortType::Hot => query.order_by(hot_rank.desc()),
|
|
|
|
SortType::New => query.order_by(published.desc()),
|
|
|
|
SortType::TopAll => query.order_by(score.desc()),
|
|
|
|
SortType::TopYear => query
|
2019-04-03 06:49:32 +00:00
|
|
|
.filter(published.gt(now - 1.years()))
|
|
|
|
.order_by(score.desc()),
|
2019-04-08 05:19:02 +00:00
|
|
|
SortType::TopMonth => query
|
2019-04-03 06:49:32 +00:00
|
|
|
.filter(published.gt(now - 1.months()))
|
|
|
|
.order_by(score.desc()),
|
2019-04-08 05:19:02 +00:00
|
|
|
SortType::TopWeek => query
|
2019-04-03 06:49:32 +00:00
|
|
|
.filter(published.gt(now - 1.weeks()))
|
|
|
|
.order_by(score.desc()),
|
2019-04-08 05:19:02 +00:00
|
|
|
SortType::TopDay => query
|
2019-04-03 06:49:32 +00:00
|
|
|
.filter(published.gt(now - 1.days()))
|
|
|
|
.order_by(score.desc())
|
|
|
|
};
|
|
|
|
|
2019-04-17 18:30:13 +00:00
|
|
|
query = query
|
|
|
|
.limit(limit)
|
|
|
|
.offset(offset)
|
2019-04-21 20:52:55 +00:00
|
|
|
.filter(removed.eq(false))
|
2019-04-29 19:14:54 +00:00
|
|
|
.filter(deleted.eq(false))
|
|
|
|
.filter(community_removed.eq(false))
|
|
|
|
.filter(community_deleted.eq(false));
|
2019-04-15 23:12:06 +00:00
|
|
|
|
2019-04-03 06:49:32 +00:00
|
|
|
query.load::<Self>(conn)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
pub fn read(conn: &PgConnection, from_post_id: i32, my_user_id: Option<i32>) -> Result<Self, Error> {
|
2019-04-03 06:49:32 +00:00
|
|
|
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::post_view::post_view::dsl::*;
|
2019-04-03 06:49:32 +00:00
|
|
|
use diesel::prelude::*;
|
|
|
|
|
|
|
|
let mut query = post_view.into_boxed();
|
|
|
|
|
|
|
|
query = query.filter(id.eq(from_post_id));
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
if let Some(my_user_id) = my_user_id {
|
|
|
|
query = query.filter(user_id.eq(my_user_id));
|
2019-04-03 06:49:32 +00:00
|
|
|
} else {
|
2019-04-03 20:59:37 +00:00
|
|
|
query = query.filter(user_id.is_null());
|
2019-04-05 06:26:38 +00:00
|
|
|
};
|
2019-04-03 06:49:32 +00:00
|
|
|
|
|
|
|
query.first::<Self>(conn)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::super::community::*;
|
|
|
|
use super::super::user::*;
|
|
|
|
use super::super::post::*;
|
2019-04-03 06:49:32 +00:00
|
|
|
#[test]
|
|
|
|
fn test_crud() {
|
|
|
|
let conn = establish_connection();
|
|
|
|
|
|
|
|
let user_name = "tegan".to_string();
|
|
|
|
let community_name = "test_community_3".to_string();
|
|
|
|
let post_name = "test post 3".to_string();
|
|
|
|
|
|
|
|
let new_user = UserForm {
|
|
|
|
name: user_name.to_owned(),
|
|
|
|
fedi_name: "rrf".into(),
|
|
|
|
preferred_username: None,
|
|
|
|
password_encrypted: "nope".into(),
|
|
|
|
email: None,
|
2019-04-15 23:12:06 +00:00
|
|
|
updated: None,
|
2019-04-16 23:04:23 +00:00
|
|
|
admin: false,
|
|
|
|
banned: false,
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_user = User_::create(&conn, &new_user).unwrap();
|
|
|
|
|
|
|
|
let new_community = CommunityForm {
|
|
|
|
name: community_name.to_owned(),
|
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-03 20:59:37 +00:00
|
|
|
category_id: 1,
|
2019-04-20 07:24:59 +00:00
|
|
|
removed: None,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: None,
|
2019-04-03 06:49:32 +00:00
|
|
|
updated: None
|
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_community = Community::create(&conn, &new_community).unwrap();
|
|
|
|
|
|
|
|
let new_post = PostForm {
|
|
|
|
name: post_name.to_owned(),
|
|
|
|
url: None,
|
|
|
|
body: None,
|
|
|
|
creator_id: inserted_user.id,
|
|
|
|
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-04-03 06:49:32 +00:00
|
|
|
updated: None
|
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_post = Post::create(&conn, &new_post).unwrap();
|
|
|
|
|
|
|
|
let post_like_form = PostLikeForm {
|
|
|
|
post_id: inserted_post.id,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
score: 1
|
|
|
|
};
|
|
|
|
|
|
|
|
let inserted_post_like = PostLike::like(&conn, &post_like_form).unwrap();
|
|
|
|
|
|
|
|
let expected_post_like = PostLike {
|
|
|
|
id: inserted_post_like.id,
|
|
|
|
post_id: inserted_post.id,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
published: inserted_post_like.published,
|
|
|
|
score: 1
|
|
|
|
};
|
|
|
|
|
|
|
|
let post_like_form = PostLikeForm {
|
|
|
|
post_id: inserted_post.id,
|
|
|
|
user_id: inserted_user.id,
|
|
|
|
score: 1
|
|
|
|
};
|
|
|
|
|
|
|
|
// the non user version
|
|
|
|
let expected_post_listing_no_user = PostView {
|
|
|
|
user_id: None,
|
|
|
|
my_vote: None,
|
|
|
|
id: inserted_post.id,
|
|
|
|
name: post_name.to_owned(),
|
|
|
|
url: None,
|
|
|
|
body: None,
|
|
|
|
creator_id: inserted_user.id,
|
|
|
|
creator_name: user_name.to_owned(),
|
|
|
|
community_id: inserted_community.id,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed: false,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: false,
|
2019-04-20 04:06:25 +00:00
|
|
|
locked: false,
|
2019-04-03 06:49:32 +00:00
|
|
|
community_name: community_name.to_owned(),
|
2019-04-21 20:52:55 +00:00
|
|
|
community_removed: false,
|
2019-04-29 19:14:54 +00:00
|
|
|
community_deleted: false,
|
2019-04-03 06:49:32 +00:00
|
|
|
number_of_comments: 0,
|
|
|
|
score: 1,
|
|
|
|
upvotes: 1,
|
|
|
|
downvotes: 0,
|
2019-04-20 23:47:23 +00:00
|
|
|
hot_rank: 1728,
|
2019-04-03 06:49:32 +00:00
|
|
|
published: inserted_post.published,
|
2019-04-06 15:15:47 +00:00
|
|
|
updated: None,
|
2019-04-15 23:12:06 +00:00
|
|
|
subscribed: None,
|
2019-04-20 04:06:25 +00:00
|
|
|
read: None,
|
|
|
|
saved: None,
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let expected_post_listing_with_user = PostView {
|
|
|
|
user_id: Some(inserted_user.id),
|
|
|
|
my_vote: Some(1),
|
|
|
|
id: inserted_post.id,
|
|
|
|
name: post_name.to_owned(),
|
|
|
|
url: None,
|
|
|
|
body: None,
|
2019-04-20 04:06:25 +00:00
|
|
|
removed: false,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: false,
|
2019-04-20 04:06:25 +00:00
|
|
|
locked: false,
|
2019-04-03 06:49:32 +00:00
|
|
|
creator_id: inserted_user.id,
|
|
|
|
creator_name: user_name.to_owned(),
|
|
|
|
community_id: inserted_community.id,
|
|
|
|
community_name: community_name.to_owned(),
|
2019-04-21 20:52:55 +00:00
|
|
|
community_removed: false,
|
2019-04-29 19:14:54 +00:00
|
|
|
community_deleted: false,
|
2019-04-03 06:49:32 +00:00
|
|
|
number_of_comments: 0,
|
|
|
|
score: 1,
|
|
|
|
upvotes: 1,
|
|
|
|
downvotes: 0,
|
2019-04-20 23:47:23 +00:00
|
|
|
hot_rank: 1728,
|
2019-04-03 06:49:32 +00:00
|
|
|
published: inserted_post.published,
|
2019-04-06 15:15:47 +00:00
|
|
|
updated: None,
|
2019-04-15 23:12:06 +00:00
|
|
|
subscribed: None,
|
2019-04-20 04:06:25 +00:00
|
|
|
read: None,
|
|
|
|
saved: None,
|
2019-04-03 06:49:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-04-23 22:05:50 +00:00
|
|
|
let read_post_listings_with_user = PostView::list(&conn,
|
|
|
|
PostListingType::Community,
|
|
|
|
&SortType::New, Some(inserted_community.id),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
Some(inserted_user.id),
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
None,
|
|
|
|
None).unwrap();
|
|
|
|
let read_post_listings_no_user = PostView::list(&conn,
|
|
|
|
PostListingType::Community,
|
|
|
|
&SortType::New,
|
|
|
|
Some(inserted_community.id),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
false,
|
|
|
|
false,
|
|
|
|
None,
|
|
|
|
None).unwrap();
|
2019-04-03 23:01:20 +00:00
|
|
|
let read_post_listing_no_user = PostView::read(&conn, inserted_post.id, None).unwrap();
|
|
|
|
let read_post_listing_with_user = PostView::read(&conn, inserted_post.id, Some(inserted_user.id)).unwrap();
|
2019-04-03 06:49:32 +00:00
|
|
|
|
|
|
|
let like_removed = PostLike::remove(&conn, &post_like_form).unwrap();
|
|
|
|
let num_deleted = Post::delete(&conn, inserted_post.id).unwrap();
|
|
|
|
Community::delete(&conn, inserted_community.id).unwrap();
|
|
|
|
User_::delete(&conn, inserted_user.id).unwrap();
|
|
|
|
|
|
|
|
// The with user
|
|
|
|
assert_eq!(expected_post_listing_with_user, read_post_listings_with_user[0]);
|
|
|
|
assert_eq!(expected_post_listing_with_user, read_post_listing_with_user);
|
|
|
|
assert_eq!(1, read_post_listings_with_user.len());
|
|
|
|
|
|
|
|
// Without the user
|
|
|
|
assert_eq!(expected_post_listing_no_user, read_post_listings_no_user[0]);
|
|
|
|
assert_eq!(expected_post_listing_no_user, read_post_listing_no_user);
|
|
|
|
assert_eq!(1, read_post_listings_no_user.len());
|
|
|
|
|
|
|
|
// assert_eq!(expected_post, inserted_post);
|
|
|
|
// assert_eq!(expected_post, updated_post);
|
|
|
|
assert_eq!(expected_post_like, inserted_post_like);
|
|
|
|
assert_eq!(1, like_removed);
|
|
|
|
assert_eq!(1, num_deleted);
|
|
|
|
}
|
|
|
|
}
|