2018-08-15 17:00:55 +02:00
|
|
|
use lettre::smtp::authentication::Credentials;
|
2018-12-30 23:34:31 +01:00
|
|
|
use lettre::smtp::ConnectionReuseParameters;
|
|
|
|
use lettre::{ClientSecurity, ClientTlsParameters, SmtpClient, SmtpTransport, Transport};
|
2018-08-15 08:32:19 +02:00
|
|
|
use lettre_email::EmailBuilder;
|
2018-12-30 23:34:31 +01:00
|
|
|
use native_tls::{Protocol, TlsConnector};
|
2018-08-15 08:32:19 +02:00
|
|
|
|
2018-12-19 21:52:53 +01:00
|
|
|
use crate::api::EmptyResult;
|
2019-01-13 01:39:29 +01:00
|
|
|
use crate::auth::{encode_jwt, generate_invite_claims};
|
2018-12-19 21:52:53 +01:00
|
|
|
use crate::error::Error;
|
2019-01-13 01:39:29 +01:00
|
|
|
use crate::CONFIG;
|
2018-12-19 21:52:53 +01:00
|
|
|
|
2019-02-02 01:09:21 +01:00
|
|
|
fn mailer() -> SmtpTransport {
|
|
|
|
let host = CONFIG.smtp_host().unwrap();
|
|
|
|
|
|
|
|
let client_security = if CONFIG.smtp_ssl() {
|
2018-10-04 00:01:04 +02:00
|
|
|
let tls = TlsConnector::builder()
|
|
|
|
.min_protocol_version(Some(Protocol::Tlsv11))
|
|
|
|
.build()
|
|
|
|
.unwrap();
|
|
|
|
|
2019-03-10 14:44:42 +01:00
|
|
|
let params = ClientTlsParameters::new(host.clone(), tls);
|
|
|
|
|
|
|
|
if CONFIG.smtp_explicit_tls() {
|
|
|
|
ClientSecurity::Wrapper(params)
|
|
|
|
} else {
|
|
|
|
ClientSecurity::Required(params)
|
|
|
|
}
|
2018-08-15 08:32:19 +02:00
|
|
|
} else {
|
|
|
|
ClientSecurity::None
|
|
|
|
};
|
|
|
|
|
2019-02-02 01:09:21 +01:00
|
|
|
let smtp_client = SmtpClient::new((host.as_str(), CONFIG.smtp_port()), client_security).unwrap();
|
2018-08-15 17:00:55 +02:00
|
|
|
|
2019-02-02 01:09:21 +01:00
|
|
|
let smtp_client = match (&CONFIG.smtp_username(), &CONFIG.smtp_password()) {
|
2018-10-04 00:01:04 +02:00
|
|
|
(Some(user), Some(pass)) => smtp_client.credentials(Credentials::new(user.clone(), pass.clone())),
|
|
|
|
_ => smtp_client,
|
2018-08-15 17:00:55 +02:00
|
|
|
};
|
|
|
|
|
2018-09-19 21:45:50 +02:00
|
|
|
smtp_client
|
2018-08-15 08:32:19 +02:00
|
|
|
.smtp_utf8(true)
|
2018-08-15 17:00:55 +02:00
|
|
|
.connection_reuse(ConnectionReuseParameters::NoReuse)
|
2018-09-19 21:45:50 +02:00
|
|
|
.transport()
|
2018-08-15 08:32:19 +02:00
|
|
|
}
|
|
|
|
|
2019-02-10 19:12:34 +01:00
|
|
|
fn get_text(template_name: &'static str, data: serde_json::Value) -> Result<(String, String, String), Error> {
|
|
|
|
let (subject_html, body_html) = get_template(&format!("{}.html", template_name), &data)?;
|
|
|
|
let (_subject_text, body_text) = get_template(template_name, &data)?;
|
|
|
|
Ok((subject_html, body_html, body_text))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_template(template_name: &str, data: &serde_json::Value) -> Result<(String, String), Error> {
|
|
|
|
let text = CONFIG.render_template(template_name, data)?;
|
2019-01-13 01:39:29 +01:00
|
|
|
let mut text_split = text.split("<!---------------->");
|
|
|
|
|
|
|
|
let subject = match text_split.next() {
|
|
|
|
Some(s) => s.trim().to_string(),
|
|
|
|
None => err!("Template doesn't contain subject"),
|
|
|
|
};
|
|
|
|
|
|
|
|
let body = match text_split.next() {
|
|
|
|
Some(s) => s.trim().to_string(),
|
|
|
|
None => err!("Template doesn't contain body"),
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok((subject, body))
|
|
|
|
}
|
|
|
|
|
2019-02-02 01:09:21 +01:00
|
|
|
pub fn send_password_hint(address: &str, hint: Option<String>) -> EmptyResult {
|
2019-01-13 01:39:29 +01:00
|
|
|
let template_name = if hint.is_some() {
|
2019-01-19 16:52:12 +01:00
|
|
|
"email/pw_hint_some"
|
2018-09-11 13:04:34 +02:00
|
|
|
} else {
|
2019-01-19 16:52:12 +01:00
|
|
|
"email/pw_hint_none"
|
2018-09-11 13:04:34 +02:00
|
|
|
};
|
2018-08-15 10:17:05 +02:00
|
|
|
|
2019-02-10 21:40:20 +01:00
|
|
|
let (subject, body_html, body_text) = get_text(template_name, json!({ "hint": hint, "url": CONFIG.domain() }))?;
|
2019-03-03 16:11:55 +01:00
|
|
|
|
2019-02-10 19:12:34 +01:00
|
|
|
send_email(&address, &subject, &body_html, &body_text)
|
2019-01-04 16:32:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn send_invite(
|
|
|
|
address: &str,
|
2019-01-06 05:03:49 +01:00
|
|
|
uuid: &str,
|
|
|
|
org_id: Option<String>,
|
|
|
|
org_user_id: Option<String>,
|
2019-01-04 16:32:51 +01:00
|
|
|
org_name: &str,
|
2019-01-06 05:03:49 +01:00
|
|
|
invited_by_email: Option<String>,
|
2019-01-04 16:32:51 +01:00
|
|
|
) -> EmptyResult {
|
2019-01-06 05:03:49 +01:00
|
|
|
let claims = generate_invite_claims(
|
2019-01-13 01:39:29 +01:00
|
|
|
uuid.to_string(),
|
|
|
|
String::from(address),
|
|
|
|
org_id.clone(),
|
|
|
|
org_user_id.clone(),
|
|
|
|
invited_by_email.clone(),
|
|
|
|
);
|
2019-01-06 05:03:49 +01:00
|
|
|
let invite_token = encode_jwt(&claims);
|
2019-01-13 01:39:29 +01:00
|
|
|
|
2019-02-10 19:12:34 +01:00
|
|
|
let (subject, body_html, body_text) = get_text(
|
2019-01-19 16:52:12 +01:00
|
|
|
"email/send_org_invite",
|
2019-01-13 01:39:29 +01:00
|
|
|
json!({
|
2019-01-25 18:23:51 +01:00
|
|
|
"url": CONFIG.domain(),
|
2019-02-08 18:45:07 +01:00
|
|
|
"org_id": org_id.unwrap_or_else(|| "_".to_string()),
|
|
|
|
"org_user_id": org_user_id.unwrap_or_else(|| "_".to_string()),
|
2019-01-13 01:39:29 +01:00
|
|
|
"email": address,
|
|
|
|
"org_name": org_name,
|
|
|
|
"token": invite_token,
|
|
|
|
}),
|
|
|
|
)?;
|
2019-01-04 16:32:51 +01:00
|
|
|
|
2019-02-10 19:12:34 +01:00
|
|
|
send_email(&address, &subject, &body_html, &body_text)
|
2019-01-04 16:32:51 +01:00
|
|
|
}
|
|
|
|
|
2019-02-02 01:09:21 +01:00
|
|
|
pub fn send_invite_accepted(new_user_email: &str, address: &str, org_name: &str) -> EmptyResult {
|
2019-02-10 19:12:34 +01:00
|
|
|
let (subject, body_html, body_text) = get_text(
|
2019-01-19 16:52:12 +01:00
|
|
|
"email/invite_accepted",
|
2019-01-13 01:39:29 +01:00
|
|
|
json!({
|
2019-01-25 18:23:51 +01:00
|
|
|
"url": CONFIG.domain(),
|
2019-01-13 01:39:29 +01:00
|
|
|
"email": new_user_email,
|
|
|
|
"org_name": org_name,
|
|
|
|
}),
|
|
|
|
)?;
|
2019-01-04 16:32:51 +01:00
|
|
|
|
2019-02-10 19:12:34 +01:00
|
|
|
send_email(&address, &subject, &body_html, &body_text)
|
2019-01-04 16:32:51 +01:00
|
|
|
}
|
|
|
|
|
2019-02-02 01:09:21 +01:00
|
|
|
pub fn send_invite_confirmed(address: &str, org_name: &str) -> EmptyResult {
|
2019-02-10 19:12:34 +01:00
|
|
|
let (subject, body_html, body_text) = get_text(
|
2019-01-19 16:52:12 +01:00
|
|
|
"email/invite_confirmed",
|
2019-01-13 01:39:29 +01:00
|
|
|
json!({
|
2019-01-25 18:23:51 +01:00
|
|
|
"url": CONFIG.domain(),
|
2019-01-13 01:39:29 +01:00
|
|
|
"org_name": org_name,
|
|
|
|
}),
|
|
|
|
)?;
|
2019-01-04 16:32:51 +01:00
|
|
|
|
2019-02-10 19:12:34 +01:00
|
|
|
send_email(&address, &subject, &body_html, &body_text)
|
2018-08-15 08:32:19 +02:00
|
|
|
}
|
2018-12-15 03:54:03 +01:00
|
|
|
|
2019-02-10 19:12:34 +01:00
|
|
|
fn send_email(address: &str, subject: &str, body_html: &str, body_text: &str) -> EmptyResult {
|
2018-12-15 03:54:03 +01:00
|
|
|
let email = EmailBuilder::new()
|
2019-01-13 01:39:29 +01:00
|
|
|
.to(address)
|
2019-02-02 01:09:21 +01:00
|
|
|
.from((CONFIG.smtp_from().as_str(), CONFIG.smtp_from_name().as_str()))
|
2019-01-13 01:39:29 +01:00
|
|
|
.subject(subject)
|
2019-02-10 19:12:34 +01:00
|
|
|
.alternative(body_html, body_text)
|
2019-01-13 01:39:29 +01:00
|
|
|
.build()
|
|
|
|
.map_err(|e| Error::new("Error building email", e.to_string()))?;
|
2018-12-15 03:54:03 +01:00
|
|
|
|
2019-03-07 20:21:10 +01:00
|
|
|
let mut transport = mailer();
|
|
|
|
|
|
|
|
let result = transport
|
2019-01-05 19:36:08 +01:00
|
|
|
.send(email.into())
|
|
|
|
.map_err(|e| Error::new("Error sending email", e.to_string()))
|
2019-03-07 20:21:10 +01:00
|
|
|
.and(Ok(()));
|
|
|
|
|
|
|
|
// Explicitly close the connection, in case of error
|
|
|
|
transport.close();
|
|
|
|
result
|
2019-01-13 01:39:29 +01:00
|
|
|
}
|