2022-05-03 17:44:13 +00:00
|
|
|
use crate::structs::PersonViewSafe;
|
2021-03-10 22:33:55 +00:00
|
|
|
use diesel::{dsl::*, result::Error, *};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2022-05-03 17:44:13 +00:00
|
|
|
aggregates::structs::PersonAggregates,
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::PersonId,
|
2021-03-22 14:28:00 +00:00
|
|
|
schema::{person, person_aggregates},
|
2021-03-11 04:43:11 +00:00
|
|
|
source::person::{Person, PersonSafe},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::{MaybeOptional, ToSafe, ViewToVec},
|
2022-05-06 20:55:07 +00:00
|
|
|
utils::{fuzzy_search, limit_and_offset},
|
|
|
|
SortType,
|
2021-03-10 22:33:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
type PersonViewSafeTuple = (PersonSafe, PersonAggregates);
|
|
|
|
|
|
|
|
impl PersonViewSafe {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub fn read(conn: &PgConnection, person_id: PersonId) -> Result<Self, Error> {
|
2021-03-10 22:33:55 +00:00
|
|
|
let (person, counts) = person::table
|
2021-03-18 20:25:21 +00:00
|
|
|
.find(person_id)
|
2021-03-10 22:33:55 +00:00
|
|
|
.inner_join(person_aggregates::table)
|
|
|
|
.select((Person::safe_columns_tuple(), person_aggregates::all_columns))
|
|
|
|
.first::<PersonViewSafeTuple>(conn)?;
|
|
|
|
Ok(Self { person, counts })
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn admins(conn: &PgConnection) -> Result<Vec<Self>, Error> {
|
|
|
|
let admins = person::table
|
|
|
|
.inner_join(person_aggregates::table)
|
|
|
|
.select((Person::safe_columns_tuple(), person_aggregates::all_columns))
|
2021-03-22 14:28:00 +00:00
|
|
|
.filter(person::admin.eq(true))
|
2021-03-10 22:33:55 +00:00
|
|
|
.order_by(person::published)
|
|
|
|
.load::<PersonViewSafeTuple>(conn)?;
|
|
|
|
|
|
|
|
Ok(Self::from_tuple_to_vec(admins))
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn banned(conn: &PgConnection) -> Result<Vec<Self>, Error> {
|
|
|
|
let banned = person::table
|
|
|
|
.inner_join(person_aggregates::table)
|
|
|
|
.select((Person::safe_columns_tuple(), person_aggregates::all_columns))
|
2022-01-08 12:37:07 +00:00
|
|
|
.filter(
|
|
|
|
person::banned.eq(true).and(
|
|
|
|
person::ban_expires
|
|
|
|
.is_null()
|
|
|
|
.or(person::ban_expires.gt(now)),
|
|
|
|
),
|
|
|
|
)
|
2021-03-10 22:33:55 +00:00
|
|
|
.load::<PersonViewSafeTuple>(conn)?;
|
|
|
|
|
|
|
|
Ok(Self::from_tuple_to_vec(banned))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct PersonQueryBuilder<'a> {
|
|
|
|
conn: &'a PgConnection,
|
2021-04-15 03:37:51 +00:00
|
|
|
sort: Option<SortType>,
|
2021-03-10 22:33:55 +00:00
|
|
|
search_term: Option<String>,
|
|
|
|
page: Option<i64>,
|
|
|
|
limit: Option<i64>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> PersonQueryBuilder<'a> {
|
|
|
|
pub fn create(conn: &'a PgConnection) -> Self {
|
|
|
|
PersonQueryBuilder {
|
|
|
|
conn,
|
|
|
|
search_term: None,
|
2021-04-15 03:37:51 +00:00
|
|
|
sort: None,
|
2021-03-10 22:33:55 +00:00
|
|
|
page: None,
|
|
|
|
limit: None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
pub fn sort<T: MaybeOptional<SortType>>(mut self, sort: T) -> Self {
|
|
|
|
self.sort = sort.get_optional();
|
2021-03-10 22:33:55 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn search_term<T: MaybeOptional<String>>(mut self, search_term: T) -> Self {
|
|
|
|
self.search_term = search_term.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn page<T: MaybeOptional<i64>>(mut self, page: T) -> Self {
|
|
|
|
self.page = page.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn limit<T: MaybeOptional<i64>>(mut self, limit: T) -> Self {
|
|
|
|
self.limit = limit.get_optional();
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn list(self) -> Result<Vec<PersonViewSafe>, Error> {
|
|
|
|
let mut query = person::table
|
|
|
|
.inner_join(person_aggregates::table)
|
|
|
|
.select((Person::safe_columns_tuple(), person_aggregates::all_columns))
|
|
|
|
.into_boxed();
|
|
|
|
|
|
|
|
if let Some(search_term) = self.search_term {
|
|
|
|
query = query.filter(person::name.ilike(fuzzy_search(&search_term)));
|
|
|
|
}
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
query = match self.sort.unwrap_or(SortType::Hot) {
|
2021-03-10 22:33:55 +00:00
|
|
|
SortType::Hot => query
|
|
|
|
.order_by(person_aggregates::comment_score.desc())
|
|
|
|
.then_order_by(person::published.desc()),
|
|
|
|
SortType::Active => query
|
|
|
|
.order_by(person_aggregates::comment_score.desc())
|
|
|
|
.then_order_by(person::published.desc()),
|
|
|
|
SortType::New | SortType::MostComments | SortType::NewComments => {
|
|
|
|
query.order_by(person::published.desc())
|
|
|
|
}
|
|
|
|
SortType::TopAll => query.order_by(person_aggregates::comment_score.desc()),
|
|
|
|
SortType::TopYear => query
|
|
|
|
.filter(person::published.gt(now - 1.years()))
|
|
|
|
.order_by(person_aggregates::comment_score.desc()),
|
|
|
|
SortType::TopMonth => query
|
|
|
|
.filter(person::published.gt(now - 1.months()))
|
|
|
|
.order_by(person_aggregates::comment_score.desc()),
|
|
|
|
SortType::TopWeek => query
|
|
|
|
.filter(person::published.gt(now - 1.weeks()))
|
|
|
|
.order_by(person_aggregates::comment_score.desc()),
|
|
|
|
SortType::TopDay => query
|
|
|
|
.filter(person::published.gt(now - 1.days()))
|
|
|
|
.order_by(person_aggregates::comment_score.desc()),
|
|
|
|
};
|
|
|
|
|
|
|
|
let (limit, offset) = limit_and_offset(self.page, self.limit);
|
|
|
|
query = query.limit(limit).offset(offset);
|
|
|
|
|
|
|
|
let res = query.load::<PersonViewSafeTuple>(self.conn)?;
|
|
|
|
|
|
|
|
Ok(PersonViewSafe::from_tuple_to_vec(res))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ViewToVec for PersonViewSafe {
|
|
|
|
type DbTuple = PersonViewSafeTuple;
|
|
|
|
fn from_tuple_to_vec(items: Vec<Self::DbTuple>) -> Vec<Self> {
|
|
|
|
items
|
|
|
|
.iter()
|
|
|
|
.map(|a| Self {
|
|
|
|
person: a.0.to_owned(),
|
|
|
|
counts: a.1.to_owned(),
|
|
|
|
})
|
|
|
|
.collect::<Vec<Self>>()
|
|
|
|
}
|
|
|
|
}
|