2019-05-05 05:20:38 +00:00
|
|
|
use diesel::*;
|
|
|
|
use diesel::dsl::*;
|
|
|
|
use diesel::result::Error;
|
|
|
|
use {Settings};
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2019-02-28 06:02:55 +00:00
|
|
|
pub mod user;
|
2019-03-04 16:39:07 +00:00
|
|
|
pub mod community;
|
|
|
|
pub mod post;
|
2019-03-06 01:00:01 +00:00
|
|
|
pub mod comment;
|
2019-04-03 06:49:32 +00:00
|
|
|
pub mod post_view;
|
2019-04-03 20:59:37 +00:00
|
|
|
pub mod comment_view;
|
2019-04-03 23:01:20 +00:00
|
|
|
pub mod category;
|
|
|
|
pub mod community_view;
|
2019-04-08 05:19:02 +00:00
|
|
|
pub mod user_view;
|
2019-04-15 23:12:06 +00:00
|
|
|
pub mod moderator;
|
|
|
|
pub mod moderator_views;
|
2019-05-05 05:20:38 +00:00
|
|
|
|
|
|
|
pub trait Crud<T> {
|
|
|
|
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;
|
|
|
|
fn delete(conn: &PgConnection, id: i32) -> Result<usize, Error> where Self: Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Followable<T> {
|
|
|
|
fn follow(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
|
|
|
|
fn ignore(conn: &PgConnection, form: &T) -> Result<usize, Error> where Self: Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Joinable<T> {
|
|
|
|
fn join(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
|
|
|
|
fn leave(conn: &PgConnection, form: &T) -> Result<usize, Error> where Self: Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Likeable<T> {
|
|
|
|
fn read(conn: &PgConnection, id: i32) -> Result<Vec<Self>, Error> where Self: Sized;
|
|
|
|
fn like(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
|
|
|
|
fn remove(conn: &PgConnection, form: &T) -> Result<usize, Error> where Self: Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Bannable<T> {
|
|
|
|
fn ban(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
|
|
|
|
fn unban(conn: &PgConnection, form: &T) -> Result<usize, Error> where Self: Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Saveable<T> {
|
|
|
|
fn save(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
|
|
|
|
fn unsave(conn: &PgConnection, form: &T) -> Result<usize, Error> where Self: Sized;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait Readable<T> {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn establish_connection() -> PgConnection {
|
|
|
|
let db_url = Settings::get().db_url;
|
|
|
|
PgConnection::establish(&db_url)
|
|
|
|
.expect(&format!("Error connecting to {}", db_url))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(EnumString,ToString,Debug, Serialize, Deserialize)]
|
|
|
|
pub enum SortType {
|
|
|
|
Hot, New, TopDay, TopWeek, TopMonth, TopYear, TopAll
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(EnumString,ToString,Debug, Serialize, Deserialize)]
|
|
|
|
pub enum SearchType {
|
|
|
|
Both, Comments, Posts
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
let page = page.unwrap_or(1);
|
|
|
|
let limit = limit.unwrap_or(10);
|
|
|
|
let offset = limit * (page - 1);
|
|
|
|
(limit, offset)
|
|
|
|
}
|
2019-05-05 16:20:30 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::fuzzy_search;
|
|
|
|
#[test] fn test_fuzzy_search() {
|
|
|
|
let test = "This is a fuzzy search";
|
|
|
|
assert_eq!(fuzzy_search(test), "%This%is%a%fuzzy%search%".to_string());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|