]> Untitled Git - lemmy.git/blob - server/src/lib.rs
Adding slur filter.
[lemmy.git] / server / src / lib.rs
1 #[macro_use]
2 pub extern crate diesel;
3 pub extern crate dotenv;
4 pub extern crate chrono;
5 pub extern crate serde;
6 pub extern crate serde_json;
7 pub extern crate actix;
8 pub extern crate actix_web;
9 pub extern crate rand;
10 pub extern crate strum;
11 pub extern crate jsonwebtoken;
12 pub extern crate bcrypt;
13 pub extern crate regex;
14 #[macro_use] pub extern crate strum_macros;
15 #[macro_use] pub extern crate lazy_static;
16 pub mod schema;
17 pub mod apub;
18 pub mod actions;
19 pub mod websocket_server;
20
21 use diesel::*;
22 use diesel::pg::PgConnection;
23 use diesel::result::Error;
24 use dotenv::dotenv;
25 use std::env;
26 use regex::Regex;
27 use serde::{Deserialize, Serialize};
28 use chrono::{DateTime, NaiveDateTime, Utc};
29
30 pub trait Crud<T> {
31   fn create(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
32   fn read(conn: &PgConnection, id: i32) -> Result<Self, Error> where Self: Sized;  
33   fn update(conn: &PgConnection, id: i32, form: &T) -> Result<Self, Error> where Self: Sized;  
34   fn delete(conn: &PgConnection, id: i32) -> Result<usize, Error> where Self: Sized;
35 }
36
37 pub trait Followable<T> {
38   fn follow(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
39   fn ignore(conn: &PgConnection, form: &T) -> Result<usize, Error> where Self: Sized;
40 }
41
42 pub trait Joinable<T> {
43   fn join(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
44   fn leave(conn: &PgConnection, form: &T) -> Result<usize, Error> where Self: Sized;
45 }
46
47 pub trait Likeable<T> {
48   fn read(conn: &PgConnection, id: i32) -> Result<Vec<Self>, Error> where Self: Sized;
49   fn like(conn: &PgConnection, form: &T) -> Result<Self, Error> where Self: Sized;
50   fn remove(conn: &PgConnection, form: &T) -> Result<usize, Error> where Self: Sized;
51 }
52
53 pub fn establish_connection() -> PgConnection {
54   let db_url = Settings::get().db_url;
55   PgConnection::establish(&db_url)
56     .expect(&format!("Error connecting to {}", db_url))
57 }
58
59 pub struct Settings {
60   db_url: String,
61   hostname: String
62 }
63
64 impl Settings {
65   fn get() -> Self {
66     dotenv().ok();
67     Settings {
68       db_url: env::var("DATABASE_URL")
69         .expect("DATABASE_URL must be set"),
70         hostname: env::var("HOSTNAME").unwrap_or("http://0.0.0.0".to_string())
71     }
72   }
73   fn api_endpoint(&self) -> String {
74     format!("{}/api/v1", self.hostname)
75   }
76 }
77
78 #[derive(EnumString,ToString,Debug, Serialize, Deserialize)]
79 pub enum SortType {
80   Hot, New, TopDay, TopWeek, TopMonth, TopYear, TopAll
81 }
82
83 pub fn to_datetime_utc(ndt: NaiveDateTime) -> DateTime<Utc> {
84   DateTime::<Utc>::from_utc(ndt, Utc)
85 }
86
87 pub fn naive_now() -> NaiveDateTime {
88   chrono::prelude::Utc::now().naive_utc()
89 }
90
91 pub fn is_email_regex(test: &str) -> bool {
92   EMAIL_REGEX.is_match(test)
93 }
94
95 pub fn remove_slurs(test: &str) -> String {
96   SLUR_REGEX.replace_all(test, "*removed*").to_string()
97 }
98
99 pub fn has_slurs(test: &str) -> bool {
100   SLUR_REGEX.is_match(test)
101 }
102
103 #[cfg(test)]
104 mod tests {
105   use {Settings, is_email_regex, remove_slurs, has_slurs};
106   #[test]
107   fn test_api() {
108     assert_eq!(Settings::get().api_endpoint(), "http://0.0.0.0/api/v1");
109   }
110
111   #[test] fn test_email() {
112     assert!(is_email_regex("gush@gmail.com"));
113     assert!(!is_email_regex("nada_neutho"));
114   } 
115
116   #[test] fn test_slur_filter() {
117     let test = "coons test dindu ladyboy tranny. This is a bunch of other safe text.".to_string();
118     let slur_free = "No slurs here";
119     assert_eq!(remove_slurs(&test), "*removed* test *removed* *removed* *removed*. This is a bunch of other safe text.".to_string());
120     assert!(has_slurs(&test));
121     assert!(!has_slurs(slur_free));
122   } 
123 }
124
125
126 lazy_static! {
127   static ref EMAIL_REGEX: Regex = Regex::new(r"^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$").unwrap();
128   static ref SLUR_REGEX: Regex = Regex::new(r"(fag(g|got|tard)?|maricos?|cock\s?sucker(s|ing)?|\bnig(\b|g?(a|er)?s?)\b|dindu(s?)|mudslime?s?|kikes?|mongoloids?|towel\s*heads?|\bspi(c|k)s?\b|\bchinks?|niglets?|beaners?|\bnips?\b|\bcoons?\b|jungle\s*bunn(y|ies?)|jigg?aboo?s?|\bpakis?\b|rag\s*heads?|gooks?|cunts?|bitch(es|ing|y)?|puss(y|ies?)|twats?|feminazis?|whor(es?|ing)|\bslut(s|t?y)?|\btrann?(y|ies?)|ladyboy(s?))").unwrap();
129 }
130