2020-01-14 01:02:02 +00:00
|
|
|
use super::user_view::user_mview::BoxedQuery;
|
2019-05-05 05:20:38 +00:00
|
|
|
use super::*;
|
2019-12-08 20:39:54 +00:00
|
|
|
use diesel::pg::Pg;
|
2019-04-08 05:19:02 +00:00
|
|
|
|
|
|
|
table! {
|
|
|
|
user_view (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
2019-12-29 20:39:48 +00:00
|
|
|
avatar -> Nullable<Text>,
|
2020-01-01 20:46:14 +00:00
|
|
|
email -> Nullable<Text>,
|
2019-04-08 05:19:02 +00:00
|
|
|
fedi_name -> Varchar,
|
2019-04-16 23:04:23 +00:00
|
|
|
admin -> Bool,
|
|
|
|
banned -> Bool,
|
2020-01-02 21:55:54 +00:00
|
|
|
show_avatars -> Bool,
|
|
|
|
send_notifications_to_email -> Bool,
|
2019-04-08 05:19:02 +00:00
|
|
|
published -> Timestamp,
|
|
|
|
number_of_posts -> BigInt,
|
|
|
|
post_score -> BigInt,
|
|
|
|
number_of_comments -> BigInt,
|
|
|
|
comment_score -> BigInt,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-14 01:02:02 +00:00
|
|
|
table! {
|
|
|
|
user_mview (id) {
|
|
|
|
id -> Int4,
|
|
|
|
name -> Varchar,
|
|
|
|
avatar -> Nullable<Text>,
|
|
|
|
email -> Nullable<Text>,
|
|
|
|
fedi_name -> Varchar,
|
|
|
|
admin -> Bool,
|
|
|
|
banned -> Bool,
|
|
|
|
show_avatars -> Bool,
|
|
|
|
send_notifications_to_email -> Bool,
|
|
|
|
published -> Timestamp,
|
|
|
|
number_of_posts -> BigInt,
|
|
|
|
post_score -> BigInt,
|
|
|
|
number_of_comments -> BigInt,
|
|
|
|
comment_score -> BigInt,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
#[derive(
|
|
|
|
Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize, QueryableByName, Clone,
|
|
|
|
)]
|
|
|
|
#[table_name = "user_view"]
|
2019-04-08 05:19:02 +00:00
|
|
|
pub struct UserView {
|
|
|
|
pub id: i32,
|
|
|
|
pub name: String,
|
2019-12-29 20:39:48 +00:00
|
|
|
pub avatar: Option<String>,
|
2020-01-01 20:46:14 +00:00
|
|
|
pub email: Option<String>,
|
2019-04-08 05:19:02 +00:00
|
|
|
pub fedi_name: String,
|
2019-04-16 23:04:23 +00:00
|
|
|
pub admin: bool,
|
|
|
|
pub banned: bool,
|
2020-01-02 21:55:54 +00:00
|
|
|
pub show_avatars: bool,
|
|
|
|
pub send_notifications_to_email: bool,
|
2019-04-08 05:19:02 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub number_of_posts: i64,
|
|
|
|
pub post_score: i64,
|
|
|
|
pub number_of_comments: i64,
|
|
|
|
pub comment_score: i64,
|
|
|
|
}
|
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
pub struct UserQueryBuilder<'a> {
|
|
|
|
conn: &'a PgConnection,
|
|
|
|
query: BoxedQuery<'a, Pg>,
|
|
|
|
sort: &'a SortType,
|
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> UserQueryBuilder<'a> {
|
|
|
|
pub fn create(conn: &'a PgConnection) -> Self {
|
2020-01-14 01:02:02 +00:00
|
|
|
use super::user_view::user_mview::dsl::*;
|
2019-08-10 17:32:06 +00:00
|
|
|
|
2020-01-14 01:02:02 +00:00
|
|
|
let query = user_mview.into_boxed();
|
2019-08-10 17:32:06 +00:00
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
UserQueryBuilder {
|
|
|
|
conn,
|
|
|
|
query,
|
|
|
|
sort: &SortType::Hot,
|
|
|
|
page: None,
|
|
|
|
limit: None,
|
|
|
|
}
|
|
|
|
}
|
2019-08-10 17:32:06 +00:00
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
pub fn sort(mut self, sort: &'a SortType) -> Self {
|
|
|
|
self.sort = sort;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-12-10 23:10:39 +00:00
|
|
|
pub fn search_term<T: MaybeOptional<String>>(mut self, search_term: T) -> Self {
|
2020-01-14 01:02:02 +00:00
|
|
|
use super::user_view::user_mview::dsl::*;
|
2019-12-10 23:10:39 +00:00
|
|
|
if let Some(search_term) = search_term.get_optional() {
|
|
|
|
self.query = self.query.filter(name.ilike(fuzzy_search(&search_term)));
|
2019-12-08 20:39:54 +00:00
|
|
|
}
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-12-10 23:10:39 +00:00
|
|
|
pub fn page<T: MaybeOptional<i64>>(mut self, page: T) -> Self {
|
|
|
|
self.page = page.get_optional();
|
2019-12-08 20:39:54 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2019-12-10 23:10:39 +00:00
|
|
|
pub fn limit<T: MaybeOptional<i64>>(mut self, limit: T) -> Self {
|
|
|
|
self.limit = limit.get_optional();
|
2019-12-08 20:39:54 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list(self) -> Result<Vec<UserView>, Error> {
|
2020-01-14 01:02:02 +00:00
|
|
|
use super::user_view::user_mview::dsl::*;
|
2019-08-10 17:32:06 +00:00
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
let mut query = self.query;
|
|
|
|
|
|
|
|
query = match self.sort {
|
2019-09-07 15:35:05 +00:00
|
|
|
SortType::Hot => query
|
|
|
|
.order_by(comment_score.desc())
|
2019-08-10 17:32:06 +00:00
|
|
|
.then_order_by(published.desc()),
|
|
|
|
SortType::New => query.order_by(published.desc()),
|
|
|
|
SortType::TopAll => query.order_by(comment_score.desc()),
|
|
|
|
SortType::TopYear => query
|
|
|
|
.filter(published.gt(now - 1.years()))
|
|
|
|
.order_by(comment_score.desc()),
|
2019-09-07 15:35:05 +00:00
|
|
|
SortType::TopMonth => query
|
|
|
|
.filter(published.gt(now - 1.months()))
|
|
|
|
.order_by(comment_score.desc()),
|
|
|
|
SortType::TopWeek => query
|
|
|
|
.filter(published.gt(now - 1.weeks()))
|
|
|
|
.order_by(comment_score.desc()),
|
|
|
|
SortType::TopDay => query
|
|
|
|
.filter(published.gt(now - 1.days()))
|
|
|
|
.order_by(comment_score.desc()),
|
2019-08-10 17:32:06 +00:00
|
|
|
};
|
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
let (limit, offset) = limit_and_offset(self.page, self.limit);
|
2019-09-07 15:35:05 +00:00
|
|
|
query = query.limit(limit).offset(offset);
|
2019-08-10 17:32:06 +00:00
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
query.load::<UserView>(self.conn)
|
2019-08-10 17:32:06 +00:00
|
|
|
}
|
2019-12-08 20:39:54 +00:00
|
|
|
}
|
2019-08-10 17:32:06 +00:00
|
|
|
|
2019-12-08 20:39:54 +00:00
|
|
|
impl UserView {
|
2019-04-08 05:19:02 +00:00
|
|
|
pub fn read(conn: &PgConnection, from_user_id: i32) -> Result<Self, Error> {
|
2019-05-03 01:34:21 +00:00
|
|
|
use super::user_view::user_view::dsl::*;
|
2019-04-08 05:19:02 +00:00
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
user_view.find(from_user_id).first::<Self>(conn)
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
2019-04-16 23:04:23 +00:00
|
|
|
|
|
|
|
pub fn admins(conn: &PgConnection) -> Result<Vec<Self>, Error> {
|
2020-01-14 01:02:02 +00:00
|
|
|
use super::user_view::user_mview::dsl::*;
|
|
|
|
user_mview.filter(admin.eq(true)).load::<Self>(conn)
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn banned(conn: &PgConnection) -> Result<Vec<Self>, Error> {
|
2020-01-14 01:02:02 +00:00
|
|
|
use super::user_view::user_mview::dsl::*;
|
|
|
|
user_mview.filter(banned.eq(true)).load::<Self>(conn)
|
2019-04-16 23:04:23 +00:00
|
|
|
}
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|