2020-07-10 18:15:41 +00:00
|
|
|
|
#[macro_use]
|
2020-09-03 19:45:12 +00:00
|
|
|
|
extern crate diesel;
|
2020-07-10 18:15:41 +00:00
|
|
|
|
#[macro_use]
|
2020-09-03 19:45:12 +00:00
|
|
|
|
extern crate strum_macros;
|
2020-07-20 19:32:15 +00:00
|
|
|
|
#[macro_use]
|
2020-09-03 19:45:12 +00:00
|
|
|
|
extern crate lazy_static;
|
2020-12-11 17:43:34 +00:00
|
|
|
|
// this is used in tests
|
|
|
|
|
#[allow(unused_imports)]
|
2020-12-11 14:41:39 +00:00
|
|
|
|
#[macro_use]
|
|
|
|
|
extern crate diesel_migrations;
|
2020-07-10 18:15:41 +00:00
|
|
|
|
|
2021-02-25 19:43:39 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
extern crate serial_test;
|
|
|
|
|
|
2020-09-01 13:20:22 +00:00
|
|
|
|
use diesel::{result::Error, *};
|
2021-03-18 20:25:21 +00:00
|
|
|
|
use lemmy_db_schema::{CommunityId, DbUrl, PersonId};
|
2021-03-02 12:41:48 +00:00
|
|
|
|
use lemmy_utils::ApiError;
|
2020-07-20 19:32:15 +00:00
|
|
|
|
use regex::Regex;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
use serde::{Deserialize, Serialize};
|
2020-07-10 18:15:41 +00:00
|
|
|
|
use std::{env, env::VarError};
|
2021-03-02 12:41:48 +00:00
|
|
|
|
use url::Url;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
2020-12-13 17:04:42 +00:00
|
|
|
|
pub mod aggregates;
|
|
|
|
|
pub mod source;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
2020-09-14 15:29:50 +00:00
|
|
|
|
pub type DbPool = diesel::r2d2::Pool<diesel::r2d2::ConnectionManager<diesel::PgConnection>>;
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait Crud {
|
|
|
|
|
type Form;
|
|
|
|
|
type IdType;
|
|
|
|
|
fn create(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn read(conn: &PgConnection, id: Self::IdType) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn update(conn: &PgConnection, id: Self::IdType, form: &Self::Form) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn delete(_conn: &PgConnection, _id: Self::IdType) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
2020-08-12 12:30:52 +00:00
|
|
|
|
Self: Sized,
|
|
|
|
|
{
|
|
|
|
|
unimplemented!()
|
|
|
|
|
}
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait Followable {
|
|
|
|
|
type Form;
|
|
|
|
|
fn follow(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
2020-11-10 15:45:10 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-03-18 20:25:21 +00:00
|
|
|
|
fn follow_accepted(
|
|
|
|
|
conn: &PgConnection,
|
|
|
|
|
community_id: CommunityId,
|
|
|
|
|
person_id: PersonId,
|
|
|
|
|
) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn unfollow(conn: &PgConnection, form: &Self::Form) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-03-18 20:25:21 +00:00
|
|
|
|
fn has_local_followers(conn: &PgConnection, community_id: CommunityId) -> Result<bool, Error>;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait Joinable {
|
|
|
|
|
type Form;
|
|
|
|
|
fn join(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn leave(conn: &PgConnection, form: &Self::Form) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait Likeable {
|
|
|
|
|
type Form;
|
|
|
|
|
type IdType;
|
|
|
|
|
fn like(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn remove(
|
|
|
|
|
conn: &PgConnection,
|
|
|
|
|
person_id: PersonId,
|
|
|
|
|
item_id: Self::IdType,
|
|
|
|
|
) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait Bannable {
|
|
|
|
|
type Form;
|
|
|
|
|
fn ban(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn unban(conn: &PgConnection, form: &Self::Form) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait Saveable {
|
|
|
|
|
type Form;
|
|
|
|
|
fn save(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn unsave(conn: &PgConnection, form: &Self::Form) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-19 20:54:15 +00:00
|
|
|
|
pub trait Blockable {
|
|
|
|
|
type Form;
|
|
|
|
|
fn block(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
fn unblock(conn: &PgConnection, form: &Self::Form) -> Result<usize, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait Readable {
|
|
|
|
|
type Form;
|
|
|
|
|
fn mark_as_read(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn mark_as_unread(conn: &PgConnection, form: &Self::Form) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait Reportable {
|
|
|
|
|
type Form;
|
|
|
|
|
fn report(conn: &PgConnection, form: &Self::Form) -> Result<Self, Error>
|
2020-11-04 02:15:11 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-03-18 20:25:21 +00:00
|
|
|
|
fn resolve(conn: &PgConnection, report_id: i32, resolver_id: PersonId) -> Result<usize, Error>
|
2020-11-04 02:15:11 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-03-18 20:25:21 +00:00
|
|
|
|
fn unresolve(conn: &PgConnection, report_id: i32, resolver_id: PersonId) -> Result<usize, Error>
|
2020-11-04 02:15:11 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2020-10-13 23:32:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-07-30 18:44:15 +00:00
|
|
|
|
pub trait DeleteableOrRemoveable {
|
|
|
|
|
fn blank_out_deleted_or_removed_info(self) -> Self;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
|
pub trait ApubObject {
|
|
|
|
|
type Form;
|
2021-03-02 12:41:48 +00:00
|
|
|
|
fn read_from_apub_id(conn: &PgConnection, object_id: &DbUrl) -> Result<Self, Error>
|
2020-12-08 17:38:48 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2021-08-17 18:04:58 +00:00
|
|
|
|
fn upsert(conn: &PgConnection, user_form: &Self::Form) -> Result<Self, Error>
|
2020-12-08 17:38:48 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-10 23:10:39 +00:00
|
|
|
|
pub trait MaybeOptional<T> {
|
|
|
|
|
fn get_optional(self) -> Option<T>;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T> MaybeOptional<T> for T {
|
|
|
|
|
fn get_optional(self) -> Option<T> {
|
2020-01-02 11:30:00 +00:00
|
|
|
|
Some(self)
|
2019-12-10 23:10:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<T> MaybeOptional<T> for Option<T> {
|
|
|
|
|
fn get_optional(self) -> Option<T> {
|
2020-01-02 11:30:00 +00:00
|
|
|
|
self
|
2019-12-10 23:10:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 16:30:34 +00:00
|
|
|
|
pub trait ToSafe {
|
2020-12-05 04:18:30 +00:00
|
|
|
|
type SafeColumns;
|
|
|
|
|
fn safe_columns_tuple() -> Self::SafeColumns;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-18 21:57:31 +00:00
|
|
|
|
pub trait ToSafeSettings {
|
|
|
|
|
type SafeSettingsColumns;
|
|
|
|
|
fn safe_settings_columns_tuple() -> Self::SafeSettingsColumns;
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 23:27:42 +00:00
|
|
|
|
pub trait ViewToVec {
|
|
|
|
|
type DbTuple;
|
2020-12-24 00:09:41 +00:00
|
|
|
|
fn from_tuple_to_vec(tuple: Vec<Self::DbTuple>) -> Vec<Self>
|
2020-12-21 23:27:42 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-10 18:15:41 +00:00
|
|
|
|
pub fn get_database_url_from_env() -> Result<String, VarError> {
|
|
|
|
|
env::var("LEMMY_DATABASE_URL")
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
|
#[derive(EnumString, ToString, Debug, Serialize, Deserialize, Clone, Copy)]
|
2019-05-05 05:20:38 +00:00
|
|
|
|
pub enum SortType {
|
2020-08-05 16:03:46 +00:00
|
|
|
|
Active,
|
2019-09-07 15:35:05 +00:00
|
|
|
|
Hot,
|
|
|
|
|
New,
|
|
|
|
|
TopDay,
|
|
|
|
|
TopWeek,
|
|
|
|
|
TopMonth,
|
|
|
|
|
TopYear,
|
|
|
|
|
TopAll,
|
2021-02-01 16:53:44 +00:00
|
|
|
|
MostComments,
|
2021-02-18 15:38:25 +00:00
|
|
|
|
NewComments,
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
|
#[derive(EnumString, ToString, Debug, Serialize, Deserialize, Clone, Copy)]
|
2019-10-21 04:21:54 +00:00
|
|
|
|
pub enum ListingType {
|
|
|
|
|
All,
|
2020-09-03 13:58:33 +00:00
|
|
|
|
Local,
|
2019-10-21 04:21:54 +00:00
|
|
|
|
Subscribed,
|
|
|
|
|
Community,
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
|
#[derive(EnumString, ToString, Debug, Serialize, Deserialize, Clone, Copy)]
|
2019-05-05 05:20:38 +00:00
|
|
|
|
pub enum SearchType {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
All,
|
|
|
|
|
Comments,
|
|
|
|
|
Posts,
|
|
|
|
|
Communities,
|
|
|
|
|
Users,
|
|
|
|
|
Url,
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
|
pub fn from_opt_str_to_opt_enum<T: std::str::FromStr>(opt: &Option<String>) -> Option<T> {
|
2021-04-26 13:50:34 +00:00
|
|
|
|
opt.as_ref().map(|t| T::from_str(t).ok()).flatten()
|
2021-04-15 03:37:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
|
pub fn fuzzy_search(q: &str) -> String {
|
|
|
|
|
let replaced = q.replace(" ", "%");
|
|
|
|
|
format!("%{}%", replaced)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn limit_and_offset(page: Option<i64>, limit: Option<i64>) -> (i64, i64) {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
let page = page.unwrap_or(1);
|
|
|
|
|
let limit = limit.unwrap_or(10);
|
|
|
|
|
let offset = limit * (page - 1);
|
|
|
|
|
(limit, offset)
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
2020-07-10 18:15:41 +00:00
|
|
|
|
|
2020-07-20 19:32:15 +00:00
|
|
|
|
pub fn is_email_regex(test: &str) -> bool {
|
|
|
|
|
EMAIL_REGEX.is_match(test)
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-05 16:03:46 +00:00
|
|
|
|
pub fn diesel_option_overwrite(opt: &Option<String>) -> Option<Option<String>> {
|
|
|
|
|
match opt {
|
|
|
|
|
// An empty string is an erase
|
|
|
|
|
Some(unwrapped) => {
|
|
|
|
|
if !unwrapped.eq("") {
|
|
|
|
|
Some(Some(unwrapped.to_owned()))
|
|
|
|
|
} else {
|
|
|
|
|
Some(None)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
None => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
|
pub fn diesel_option_overwrite_to_url(
|
|
|
|
|
opt: &Option<String>,
|
|
|
|
|
) -> Result<Option<Option<DbUrl>>, ApiError> {
|
|
|
|
|
match opt.as_ref().map(|s| s.as_str()) {
|
|
|
|
|
// An empty string is an erase
|
|
|
|
|
Some("") => Ok(Some(None)),
|
|
|
|
|
Some(str_url) => match Url::parse(str_url) {
|
|
|
|
|
Ok(url) => Ok(Some(Some(url.into()))),
|
|
|
|
|
Err(_) => Err(ApiError::err("invalid_url")),
|
|
|
|
|
},
|
|
|
|
|
None => Ok(None),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 16:30:34 +00:00
|
|
|
|
embed_migrations!();
|
|
|
|
|
|
|
|
|
|
pub fn establish_unpooled_connection() -> PgConnection {
|
|
|
|
|
let db_url = match get_database_url_from_env() {
|
|
|
|
|
Ok(url) => url,
|
|
|
|
|
Err(e) => panic!(
|
|
|
|
|
"Failed to read database URL from env var LEMMY_DATABASE_URL: {}",
|
|
|
|
|
e
|
|
|
|
|
),
|
|
|
|
|
};
|
|
|
|
|
let conn =
|
|
|
|
|
PgConnection::establish(&db_url).unwrap_or_else(|_| panic!("Error connecting to {}", db_url));
|
2021-03-01 12:56:07 +00:00
|
|
|
|
embedded_migrations::run(&conn).expect("load migrations");
|
2020-12-21 16:30:34 +00:00
|
|
|
|
conn
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-20 19:32:15 +00:00
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref EMAIL_REGEX: Regex =
|
2021-03-01 12:56:07 +00:00
|
|
|
|
Regex::new(r"^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$")
|
|
|
|
|
.expect("compile email regex");
|
2020-07-20 19:32:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-12-21 16:30:34 +00:00
|
|
|
|
pub mod functions {
|
2020-12-06 21:44:36 +00:00
|
|
|
|
use diesel::sql_types::*;
|
|
|
|
|
|
|
|
|
|
sql_function! {
|
|
|
|
|
fn hot_rank(score: BigInt, time: Timestamp) -> Integer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-05 16:20:30 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2021-03-02 12:41:48 +00:00
|
|
|
|
use super::{fuzzy_search, *};
|
2020-12-21 16:30:34 +00:00
|
|
|
|
use crate::is_email_regex;
|
2020-07-10 18:15:41 +00:00
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
|
#[test]
|
|
|
|
|
fn test_fuzzy_search() {
|
2019-05-05 16:20:30 +00:00
|
|
|
|
let test = "This is a fuzzy search";
|
|
|
|
|
assert_eq!(fuzzy_search(test), "%This%is%a%fuzzy%search%".to_string());
|
|
|
|
|
}
|
2020-07-20 19:32:15 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_email() {
|
|
|
|
|
assert!(is_email_regex("gush@gmail.com"));
|
|
|
|
|
assert!(!is_email_regex("nada_neutho"));
|
|
|
|
|
}
|
2021-03-02 12:41:48 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_diesel_option_overwrite() {
|
|
|
|
|
assert_eq!(diesel_option_overwrite(&None), None);
|
|
|
|
|
assert_eq!(diesel_option_overwrite(&Some("".to_string())), Some(None));
|
|
|
|
|
assert_eq!(
|
|
|
|
|
diesel_option_overwrite(&Some("test".to_string())),
|
|
|
|
|
Some(Some("test".to_string()))
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_diesel_option_overwrite_to_url() {
|
|
|
|
|
assert!(matches!(diesel_option_overwrite_to_url(&None), Ok(None)));
|
|
|
|
|
assert!(matches!(
|
|
|
|
|
diesel_option_overwrite_to_url(&Some("".to_string())),
|
|
|
|
|
Ok(Some(None))
|
|
|
|
|
));
|
|
|
|
|
assert!(matches!(
|
|
|
|
|
diesel_option_overwrite_to_url(&Some("invalid_url".to_string())),
|
|
|
|
|
Err(_)
|
|
|
|
|
));
|
|
|
|
|
let example_url = "https://example.com";
|
|
|
|
|
assert!(matches!(
|
|
|
|
|
diesel_option_overwrite_to_url(&Some(example_url.to_string())),
|
2021-07-05 16:07:26 +00:00
|
|
|
|
Ok(Some(Some(url))) if url == Url::parse(example_url).unwrap().into()
|
2021-03-02 12:41:48 +00:00
|
|
|
|
));
|
|
|
|
|
}
|
2019-05-05 16:20:30 +00:00
|
|
|
|
}
|