]> Untitled Git - lemmy.git/blob - server/src/lib.rs
Merge branch 'abstract_websocket_sends'
[lemmy.git] / server / src / lib.rs
1 #![recursion_limit = "512"]
2 #[macro_use]
3 pub extern crate strum_macros;
4 #[macro_use]
5 pub extern crate lazy_static;
6 #[macro_use]
7 pub extern crate failure;
8 #[macro_use]
9 pub extern crate diesel;
10 pub extern crate actix;
11 pub extern crate actix_web;
12 pub extern crate bcrypt;
13 pub extern crate chrono;
14 pub extern crate comrak;
15 pub extern crate dotenv;
16 pub extern crate jsonwebtoken;
17 pub extern crate lettre;
18 pub extern crate lettre_email;
19 pub extern crate rand;
20 pub extern crate regex;
21 pub extern crate rss;
22 pub extern crate serde;
23 pub extern crate serde_json;
24 pub extern crate sha2;
25 pub extern crate strum;
26
27 pub mod api;
28 pub mod apub;
29 pub mod db;
30 pub mod rate_limit;
31 pub mod routes;
32 pub mod schema;
33 pub mod settings;
34 pub mod version;
35 pub mod websocket;
36
37 use actix_web::dev::ConnectionInfo;
38 use chrono::{DateTime, NaiveDateTime, Utc};
39 use isahc::prelude::*;
40 use lettre::smtp::authentication::{Credentials, Mechanism};
41 use lettre::smtp::extension::ClientId;
42 use lettre::smtp::ConnectionReuseParameters;
43 use lettre::{ClientSecurity, SmtpClient, Transport};
44 use lettre_email::Email;
45 use log::error;
46 use percent_encoding::{utf8_percent_encode, NON_ALPHANUMERIC};
47 use rand::distributions::Alphanumeric;
48 use rand::{thread_rng, Rng};
49 use regex::{Regex, RegexBuilder};
50 use serde::Deserialize;
51
52 use crate::settings::Settings;
53
54 pub type ConnectionId = usize;
55 pub type PostId = i32;
56 pub type CommunityId = i32;
57 pub type UserId = i32;
58 pub type IPAddr = String;
59
60 pub fn to_datetime_utc(ndt: NaiveDateTime) -> DateTime<Utc> {
61   DateTime::<Utc>::from_utc(ndt, Utc)
62 }
63
64 pub fn naive_now() -> NaiveDateTime {
65   chrono::prelude::Utc::now().naive_utc()
66 }
67
68 pub fn naive_from_unix(time: i64) -> NaiveDateTime {
69   NaiveDateTime::from_timestamp(time, 0)
70 }
71
72 pub fn is_email_regex(test: &str) -> bool {
73   EMAIL_REGEX.is_match(test)
74 }
75
76 pub fn remove_slurs(test: &str) -> String {
77   SLUR_REGEX.replace_all(test, "*removed*").to_string()
78 }
79
80 pub fn slur_check(test: &str) -> Result<(), Vec<&str>> {
81   let mut matches: Vec<&str> = SLUR_REGEX.find_iter(test).map(|mat| mat.as_str()).collect();
82
83   // Unique
84   matches.sort_unstable();
85   matches.dedup();
86
87   if matches.is_empty() {
88     Ok(())
89   } else {
90     Err(matches)
91   }
92 }
93
94 pub fn slurs_vec_to_str(slurs: Vec<&str>) -> String {
95   let start = "No slurs - ";
96   let combined = &slurs.join(", ");
97   [start, combined].concat()
98 }
99
100 pub fn extract_usernames(test: &str) -> Vec<&str> {
101   let mut matches: Vec<&str> = USERNAME_MATCHES_REGEX
102     .find_iter(test)
103     .map(|mat| mat.as_str())
104     .collect();
105
106   // Unique
107   matches.sort_unstable();
108   matches.dedup();
109
110   // Remove /u/
111   matches.iter().map(|t| &t[3..]).collect()
112 }
113
114 pub fn generate_random_string() -> String {
115   thread_rng().sample_iter(&Alphanumeric).take(30).collect()
116 }
117
118 pub fn send_email(
119   subject: &str,
120   to_email: &str,
121   to_username: &str,
122   html: &str,
123 ) -> Result<(), String> {
124   let email_config = Settings::get().email.ok_or("no_email_setup")?;
125
126   let email = Email::builder()
127     .to((to_email, to_username))
128     .from(email_config.smtp_from_address.to_owned())
129     .subject(subject)
130     .html(html)
131     .build()
132     .unwrap();
133
134   let mailer = if email_config.use_tls {
135     SmtpClient::new_simple(&email_config.smtp_server).unwrap()
136   } else {
137     SmtpClient::new(&email_config.smtp_server, ClientSecurity::None).unwrap()
138   }
139   .hello_name(ClientId::Domain(Settings::get().hostname))
140   .smtp_utf8(true)
141   .authentication_mechanism(Mechanism::Plain)
142   .connection_reuse(ConnectionReuseParameters::ReuseUnlimited);
143   let mailer = if let (Some(login), Some(password)) =
144     (&email_config.smtp_login, &email_config.smtp_password)
145   {
146     mailer.credentials(Credentials::new(login.to_owned(), password.to_owned()))
147   } else {
148     mailer
149   };
150
151   let mut transport = mailer.transport();
152   let result = transport.send(email.into());
153   transport.close();
154
155   match result {
156     Ok(_) => Ok(()),
157     Err(e) => Err(e.to_string()),
158   }
159 }
160
161 #[derive(Deserialize, Debug)]
162 pub struct IframelyResponse {
163   title: Option<String>,
164   description: Option<String>,
165   thumbnail_url: Option<String>,
166   html: Option<String>,
167 }
168
169 pub fn fetch_iframely(url: &str) -> Result<IframelyResponse, failure::Error> {
170   let fetch_url = format!("http://iframely/oembed?url={}", url);
171   let text = isahc::get(&fetch_url)?.text()?;
172   let res: IframelyResponse = serde_json::from_str(&text)?;
173   Ok(res)
174 }
175
176 #[derive(Deserialize, Debug)]
177 pub struct PictshareResponse {
178   status: String,
179   url: String,
180 }
181
182 pub fn fetch_pictshare(image_url: &str) -> Result<PictshareResponse, failure::Error> {
183   let fetch_url = format!(
184     "http://pictshare/api/geturl.php?url={}",
185     utf8_percent_encode(image_url, NON_ALPHANUMERIC)
186   );
187   let text = isahc::get(&fetch_url)?.text()?;
188   let res: PictshareResponse = serde_json::from_str(&text)?;
189   Ok(res)
190 }
191
192 fn fetch_iframely_and_pictshare_data(
193   url: Option<String>,
194 ) -> (
195   Option<String>,
196   Option<String>,
197   Option<String>,
198   Option<String>,
199 ) {
200   // Fetch iframely data
201   let (iframely_title, iframely_description, iframely_thumbnail_url, iframely_html) = match url {
202     Some(url) => match fetch_iframely(&url) {
203       Ok(res) => (res.title, res.description, res.thumbnail_url, res.html),
204       Err(e) => {
205         error!("iframely err: {}", e);
206         (None, None, None, None)
207       }
208     },
209     None => (None, None, None, None),
210   };
211
212   // Fetch pictshare thumbnail
213   let pictshare_thumbnail = match iframely_thumbnail_url {
214     Some(iframely_thumbnail_url) => match fetch_pictshare(&iframely_thumbnail_url) {
215       Ok(res) => Some(res.url),
216       Err(e) => {
217         error!("pictshare err: {}", e);
218         None
219       }
220     },
221     None => None,
222   };
223
224   (
225     iframely_title,
226     iframely_description,
227     iframely_html,
228     pictshare_thumbnail,
229   )
230 }
231
232 pub fn markdown_to_html(text: &str) -> String {
233   comrak::markdown_to_html(text, &comrak::ComrakOptions::default())
234 }
235
236 pub fn get_ip(conn_info: &ConnectionInfo) -> String {
237   conn_info
238     .remote()
239     .unwrap_or("127.0.0.1:12345")
240     .split(':')
241     .next()
242     .unwrap_or("127.0.0.1")
243     .to_string()
244 }
245
246 #[cfg(test)]
247 mod tests {
248   use crate::{extract_usernames, is_email_regex, remove_slurs, slur_check, slurs_vec_to_str};
249
250   #[test]
251   fn test_email() {
252     assert!(is_email_regex("gush@gmail.com"));
253     assert!(!is_email_regex("nada_neutho"));
254   }
255
256   #[test]
257   fn test_slur_filter() {
258     let test =
259       "coons test dindu ladyboy tranny retardeds. Capitalized Niggerz. This is a bunch of other safe text.";
260     let slur_free = "No slurs here";
261     assert_eq!(
262       remove_slurs(&test),
263       "*removed* test *removed* *removed* *removed* *removed*. Capitalized *removed*. This is a bunch of other safe text."
264         .to_string()
265     );
266
267     let has_slurs_vec = vec![
268       "Niggerz",
269       "coons",
270       "dindu",
271       "ladyboy",
272       "retardeds",
273       "tranny",
274     ];
275     let has_slurs_err_str = "No slurs - Niggerz, coons, dindu, ladyboy, retardeds, tranny";
276
277     assert_eq!(slur_check(test), Err(has_slurs_vec));
278     assert_eq!(slur_check(slur_free), Ok(()));
279     if let Err(slur_vec) = slur_check(test) {
280       assert_eq!(&slurs_vec_to_str(slur_vec), has_slurs_err_str);
281     }
282   }
283
284   #[test]
285   fn test_extract_usernames() {
286     let usernames = extract_usernames("this is a user mention for [/u/testme](/u/testme) and thats all. Oh [/u/another](/u/another) user. And the first again [/u/testme](/u/testme) okay");
287     let expected = vec!["another", "testme"];
288     assert_eq!(usernames, expected);
289   }
290
291   // These helped with testing
292   // #[test]
293   // fn test_iframely() {
294   //   let res = fetch_iframely("https://www.redspark.nu/?p=15341");
295   //   assert!(res.is_ok());
296   // }
297
298   // #[test]
299   // fn test_pictshare() {
300   //   let res = fetch_pictshare("https://upload.wikimedia.org/wikipedia/en/2/27/The_Mandalorian_logo.jpg");
301   //   assert!(res.is_ok());
302   //   let res_other = fetch_pictshare("https://upload.wikimedia.org/wikipedia/en/2/27/The_Mandalorian_logo.jpgaoeu");
303   //   assert!(res_other.is_err());
304   // }
305
306   // #[test]
307   // fn test_send_email() {
308   //  let result =  send_email("not a subject", "test_email@gmail.com", "ur user", "<h1>HI there</h1>");
309   //   assert!(result.is_ok());
310   // }
311 }
312
313 lazy_static! {
314   static ref EMAIL_REGEX: Regex = Regex::new(r"^[a-zA-Z0-9.!#$%&’*+/=?^_`{|}~-]+@[a-zA-Z0-9-]+(?:\.[a-zA-Z0-9-]+)*$").unwrap();
315   static ref SLUR_REGEX: Regex = RegexBuilder::new(r"(fag(g|got|tard)?|maricos?|cock\s?sucker(s|ing)?|nig(\b|g?(a|er)?(s|z)?)\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?)|\b(b|re|r)tard(ed)?s?)").case_insensitive(true).build().unwrap();
316   static ref USERNAME_MATCHES_REGEX: Regex = Regex::new(r"/u/[a-zA-Z][0-9a-zA-Z_]*").unwrap();
317 }