2023-10-09 10:46:12 +00:00
|
|
|
use actix_web::{http::header::Header, HttpRequest};
|
|
|
|
use actix_web_httpauth::headers::authorization::{Authorization, Bearer};
|
2023-07-10 13:00:55 +00:00
|
|
|
use base64::{engine::general_purpose::STANDARD_NO_PAD as base64, Engine};
|
2023-06-27 10:38:53 +00:00
|
|
|
use captcha::Captcha;
|
2023-10-09 10:46:12 +00:00
|
|
|
use lemmy_api_common::utils::{local_site_to_slur_regex, AUTH_COOKIE_NAME};
|
2022-10-27 09:24:07 +00:00
|
|
|
use lemmy_db_schema::source::local_site::LocalSite;
|
2023-09-20 14:49:54 +00:00
|
|
|
use lemmy_db_views::structs::LocalUserView;
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::{
|
2023-09-20 14:49:54 +00:00
|
|
|
error::{LemmyError, LemmyErrorExt, LemmyErrorType, LemmyResult},
|
2023-07-10 14:50:07 +00:00
|
|
|
utils::slurs::check_slurs,
|
|
|
|
};
|
2023-06-30 10:36:38 +00:00
|
|
|
use std::io::Cursor;
|
2023-09-20 14:49:54 +00:00
|
|
|
use totp_rs::{Secret, TOTP};
|
2020-09-24 13:53:21 +00:00
|
|
|
|
2023-07-28 14:39:38 +00:00
|
|
|
pub mod comment;
|
|
|
|
pub mod comment_report;
|
|
|
|
pub mod community;
|
|
|
|
pub mod local_user;
|
|
|
|
pub mod post;
|
|
|
|
pub mod post_report;
|
|
|
|
pub mod private_message;
|
|
|
|
pub mod private_message_report;
|
|
|
|
pub mod site;
|
2023-08-22 14:30:15 +00:00
|
|
|
pub mod sitemap;
|
2020-09-24 13:53:21 +00:00
|
|
|
|
2023-06-27 10:38:53 +00:00
|
|
|
/// Converts the captcha to a base64 encoded wav audio file
|
2023-06-30 10:36:38 +00:00
|
|
|
pub(crate) fn captcha_as_wav_base64(captcha: &Captcha) -> Result<String, LemmyError> {
|
2023-06-27 10:38:53 +00:00
|
|
|
let letters = captcha.as_wav();
|
|
|
|
|
2023-06-30 10:36:38 +00:00
|
|
|
// Decode each wav file, concatenate the samples
|
|
|
|
let mut concat_samples: Vec<i16> = Vec::new();
|
|
|
|
let mut any_header: Option<wav::Header> = None;
|
2023-06-27 10:38:53 +00:00
|
|
|
for letter in letters {
|
2023-06-30 10:36:38 +00:00
|
|
|
let mut cursor = Cursor::new(letter.unwrap_or_default());
|
|
|
|
let (header, samples) = wav::read(&mut cursor)?;
|
|
|
|
any_header = Some(header);
|
|
|
|
if let Some(samples16) = samples.as_sixteen() {
|
|
|
|
concat_samples.extend(samples16);
|
|
|
|
} else {
|
2023-08-31 13:01:08 +00:00
|
|
|
Err(LemmyErrorType::CouldntCreateAudioCaptcha)?
|
2023-06-30 10:36:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Encode the concatenated result as a wav file
|
|
|
|
let mut output_buffer = Cursor::new(vec![]);
|
2023-08-31 13:01:08 +00:00
|
|
|
if let Some(header) = any_header {
|
|
|
|
wav::write(
|
|
|
|
header,
|
|
|
|
&wav::BitDepth::Sixteen(concat_samples),
|
|
|
|
&mut output_buffer,
|
|
|
|
)
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntCreateAudioCaptcha)?;
|
2023-06-27 10:38:53 +00:00
|
|
|
|
2023-08-31 13:01:08 +00:00
|
|
|
Ok(base64.encode(output_buffer.into_inner()))
|
|
|
|
} else {
|
|
|
|
Err(LemmyErrorType::CouldntCreateAudioCaptcha)?
|
|
|
|
}
|
2023-06-27 10:38:53 +00:00
|
|
|
}
|
|
|
|
|
2023-07-26 18:01:15 +00:00
|
|
|
/// Check size of report
|
2022-10-27 09:24:07 +00:00
|
|
|
pub(crate) fn check_report_reason(reason: &str, local_site: &LocalSite) -> Result<(), LemmyError> {
|
|
|
|
let slur_regex = &local_site_to_slur_regex(local_site);
|
|
|
|
|
|
|
|
check_slurs(reason, slur_regex)?;
|
2022-09-19 22:58:42 +00:00
|
|
|
if reason.is_empty() {
|
2023-08-31 13:01:08 +00:00
|
|
|
Err(LemmyErrorType::ReportReasonRequired)?
|
|
|
|
} else if reason.chars().count() > 1000 {
|
|
|
|
Err(LemmyErrorType::ReportTooLong)?
|
|
|
|
} else {
|
|
|
|
Ok(())
|
2022-09-19 22:58:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-09 10:46:12 +00:00
|
|
|
pub fn read_auth_token(req: &HttpRequest) -> Result<Option<String>, LemmyError> {
|
|
|
|
// Try reading jwt from auth header
|
|
|
|
if let Ok(header) = Authorization::<Bearer>::parse(req) {
|
|
|
|
Ok(Some(header.as_ref().token().to_string()))
|
|
|
|
}
|
|
|
|
// If that fails, try to read from cookie
|
|
|
|
else if let Some(cookie) = &req.cookie(AUTH_COOKIE_NAME) {
|
|
|
|
// ensure that its marked as httponly and secure
|
|
|
|
let secure = cookie.secure().unwrap_or_default();
|
|
|
|
let http_only = cookie.http_only().unwrap_or_default();
|
|
|
|
if !secure || !http_only {
|
|
|
|
Err(LemmyError::from(LemmyErrorType::AuthCookieInsecure))
|
|
|
|
} else {
|
|
|
|
Ok(Some(cookie.value().to_string()))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Otherwise, there's no auth
|
|
|
|
else {
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-20 14:49:54 +00:00
|
|
|
pub(crate) fn check_totp_2fa_valid(
|
|
|
|
local_user_view: &LocalUserView,
|
|
|
|
totp_token: &Option<String>,
|
|
|
|
site_name: &str,
|
|
|
|
) -> LemmyResult<()> {
|
|
|
|
// Throw an error if their token is missing
|
|
|
|
let token = totp_token
|
|
|
|
.as_deref()
|
|
|
|
.ok_or(LemmyErrorType::MissingTotpToken)?;
|
|
|
|
let secret = local_user_view
|
|
|
|
.local_user
|
|
|
|
.totp_2fa_secret
|
|
|
|
.as_deref()
|
|
|
|
.ok_or(LemmyErrorType::MissingTotpSecret)?;
|
|
|
|
|
|
|
|
let totp = build_totp_2fa(site_name, &local_user_view.person.name, secret)?;
|
|
|
|
|
|
|
|
let check_passed = totp.check_current(token)?;
|
|
|
|
if !check_passed {
|
|
|
|
return Err(LemmyErrorType::IncorrectTotpToken.into());
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn generate_totp_2fa_secret() -> String {
|
|
|
|
Secret::generate_secret().to_string()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn build_totp_2fa(
|
|
|
|
site_name: &str,
|
|
|
|
username: &str,
|
|
|
|
secret: &str,
|
|
|
|
) -> Result<TOTP, LemmyError> {
|
|
|
|
let sec = Secret::Raw(secret.as_bytes().to_vec());
|
|
|
|
let sec_bytes = sec
|
|
|
|
.to_bytes()
|
|
|
|
.map_err(|_| LemmyErrorType::CouldntParseTotpSecret)?;
|
|
|
|
|
|
|
|
TOTP::new(
|
|
|
|
totp_rs::Algorithm::SHA1,
|
|
|
|
6,
|
|
|
|
1,
|
|
|
|
30,
|
|
|
|
sec_bytes,
|
|
|
|
Some(site_name.to_string()),
|
|
|
|
username.to_string(),
|
|
|
|
)
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntGenerateTotp)
|
|
|
|
}
|
|
|
|
|
2020-09-24 13:53:21 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2023-07-17 15:04:14 +00:00
|
|
|
#![allow(clippy::unwrap_used)]
|
|
|
|
#![allow(clippy::indexing_slicing)]
|
|
|
|
|
2023-09-20 14:49:54 +00:00
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_build_totp() {
|
|
|
|
let generated_secret = generate_totp_2fa_secret();
|
|
|
|
let totp = build_totp_2fa("lemmy", "my_name", &generated_secret);
|
|
|
|
assert!(totp.is_ok());
|
|
|
|
}
|
2020-09-24 13:53:21 +00:00
|
|
|
}
|