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-07-10 18:15:41 +00:00
|
|
|
|
|
|
|
|
|
use chrono::NaiveDateTime;
|
2020-09-01 13:20:22 +00:00
|
|
|
|
use diesel::{result::Error, *};
|
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};
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
2020-04-27 22:17:02 +00:00
|
|
|
|
pub mod activity;
|
2019-09-07 15:35:05 +00:00
|
|
|
|
pub mod category;
|
2019-03-06 01:00:01 +00:00
|
|
|
|
pub mod comment;
|
2020-10-13 23:32:35 +00:00
|
|
|
|
pub mod comment_report;
|
2019-04-03 20:59:37 +00:00
|
|
|
|
pub mod comment_view;
|
2019-09-07 15:35:05 +00:00
|
|
|
|
pub mod community;
|
2019-04-03 23:01:20 +00:00
|
|
|
|
pub mod community_view;
|
2019-04-15 23:12:06 +00:00
|
|
|
|
pub mod moderator;
|
|
|
|
|
pub mod moderator_views;
|
2019-11-02 06:43:21 +00:00
|
|
|
|
pub mod password_reset_request;
|
2019-09-07 15:35:05 +00:00
|
|
|
|
pub mod post;
|
2020-10-13 23:32:35 +00:00
|
|
|
|
pub mod post_report;
|
2019-09-07 15:35:05 +00:00
|
|
|
|
pub mod post_view;
|
2020-01-22 21:35:29 +00:00
|
|
|
|
pub mod private_message;
|
|
|
|
|
pub mod private_message_view;
|
2020-07-10 18:15:41 +00:00
|
|
|
|
pub mod schema;
|
2019-12-11 20:21:47 +00:00
|
|
|
|
pub mod site;
|
|
|
|
|
pub mod site_view;
|
2019-09-07 15:35:05 +00:00
|
|
|
|
pub mod user;
|
2019-10-20 00:46:29 +00:00
|
|
|
|
pub mod user_mention;
|
|
|
|
|
pub mod user_mention_view;
|
2019-09-07 15:35:05 +00:00
|
|
|
|
pub mod user_view;
|
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>>;
|
|
|
|
|
|
2019-05-05 05:20:38 +00:00
|
|
|
|
pub trait Crud<T> {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
fn create(conn: &PgConnection, form: &T) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
fn read(conn: &PgConnection, id: i32) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
fn update(conn: &PgConnection, id: i32, form: &T) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2020-08-12 12:30:52 +00:00
|
|
|
|
fn delete(_conn: &PgConnection, _id: i32) -> 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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub trait Followable<T> {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
fn follow(conn: &PgConnection, form: &T) -> Result<Self, Error>
|
2020-11-10 15:45:10 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
fn follow_accepted(conn: &PgConnection, community_id: i32, user_id: i32) -> Result<Self, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2020-05-04 18:26:16 +00:00
|
|
|
|
fn unfollow(conn: &PgConnection, form: &T) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2020-11-11 16:40:45 +00:00
|
|
|
|
fn has_local_followers(conn: &PgConnection, community_id: i32) -> Result<bool, Error>;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub trait Joinable<T> {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
fn join(conn: &PgConnection, form: &T) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
fn leave(conn: &PgConnection, form: &T) -> Result<usize, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub trait Likeable<T> {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
fn like(conn: &PgConnection, form: &T) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2020-08-12 14:43:45 +00:00
|
|
|
|
fn remove(conn: &PgConnection, user_id: i32, item_id: i32) -> Result<usize, Error>
|
2019-09-07 15:35:05 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub trait Bannable<T> {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
fn ban(conn: &PgConnection, form: &T) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
fn unban(conn: &PgConnection, form: &T) -> Result<usize, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub trait Saveable<T> {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
fn save(conn: &PgConnection, form: &T) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
fn unsave(conn: &PgConnection, form: &T) -> Result<usize, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub trait Readable<T> {
|
2019-09-07 15:35:05 +00:00
|
|
|
|
fn mark_as_read(conn: &PgConnection, form: &T) -> Result<Self, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
|
|
|
|
fn mark_as_unread(conn: &PgConnection, form: &T) -> Result<usize, Error>
|
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-13 23:32:35 +00:00
|
|
|
|
pub trait Reportable<T> {
|
|
|
|
|
fn report(conn: &PgConnection, form: &T) -> Result<Self, Error>
|
2020-11-04 02:15:11 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2020-11-03 03:06:20 +00:00
|
|
|
|
fn resolve(conn: &PgConnection, report_id: i32, resolver_id: i32) -> Result<usize, Error>
|
2020-11-04 02:15:11 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2020-11-03 03:06:20 +00:00
|
|
|
|
fn unresolve(conn: &PgConnection, report_id: i32, resolver_id: i32) -> Result<usize, Error>
|
2020-11-04 02:15:11 +00:00
|
|
|
|
where
|
|
|
|
|
Self: Sized;
|
2020-10-13 23:32:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
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-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
|
|
|
|
}
|
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
|
#[derive(EnumString, ToString, Debug, Serialize, Deserialize)]
|
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,
|
2019-05-05 05:20:38 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-21 04:21:54 +00:00
|
|
|
|
#[derive(EnumString, ToString, Debug, Serialize, Deserialize)]
|
|
|
|
|
pub enum ListingType {
|
|
|
|
|
All,
|
2020-09-03 13:58:33 +00:00
|
|
|
|
Local,
|
2019-10-21 04:21:54 +00:00
|
|
|
|
Subscribed,
|
|
|
|
|
Community,
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-07 15:35:05 +00:00
|
|
|
|
#[derive(EnumString, ToString, Debug, Serialize, Deserialize)]
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
pub fn naive_now() -> NaiveDateTime {
|
|
|
|
|
chrono::prelude::Utc::now().naive_utc()
|
|
|
|
|
}
|
|
|
|
|
|
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,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-20 19:32:15 +00:00
|
|
|
|
lazy_static! {
|
|
|
|
|
static ref EMAIL_REGEX: Regex =
|
|
|
|
|
Regex::new(r"^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$").unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-05 16:20:30 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
|
|
|
|
use super::fuzzy_search;
|
2020-07-20 19:32:15 +00:00
|
|
|
|
use crate::{get_database_url_from_env, is_email_regex};
|
2020-07-10 18:15:41 +00:00
|
|
|
|
use diesel::{Connection, PgConnection};
|
|
|
|
|
|
|
|
|
|
pub fn establish_unpooled_connection() -> PgConnection {
|
|
|
|
|
let db_url = match get_database_url_from_env() {
|
|
|
|
|
Ok(url) => url,
|
2020-07-14 13:17:25 +00:00
|
|
|
|
Err(e) => panic!(
|
|
|
|
|
"Failed to read database URL from env var LEMMY_DATABASE_URL: {}",
|
|
|
|
|
e
|
|
|
|
|
),
|
2020-07-10 18:15:41 +00:00
|
|
|
|
};
|
|
|
|
|
PgConnection::establish(&db_url).unwrap_or_else(|_| panic!("Error connecting to {}", db_url))
|
|
|
|
|
}
|
|
|
|
|
|
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"));
|
|
|
|
|
}
|
2019-05-05 16:20:30 +00:00
|
|
|
|
}
|