2021-03-25 19:19:40 +00:00
|
|
|
pub mod comment;
|
|
|
|
pub mod community;
|
|
|
|
pub mod person;
|
|
|
|
pub mod post;
|
|
|
|
pub mod site;
|
|
|
|
pub mod websocket;
|
|
|
|
|
|
|
|
use crate::site::FederatedInstances;
|
|
|
|
use lemmy_db_schema::{
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{CommunityId, LocalUserId, PersonId, PostId},
|
2021-03-25 19:19:40 +00:00
|
|
|
source::{
|
2021-09-28 10:36:17 +00:00
|
|
|
community::Community,
|
2021-08-19 20:54:15 +00:00
|
|
|
person_block::PersonBlock,
|
2021-04-24 22:26:50 +00:00
|
|
|
post::{Post, PostRead, PostReadForm},
|
2021-09-20 15:46:34 +00:00
|
|
|
secret::Secret,
|
2021-03-25 19:19:40 +00:00
|
|
|
site::Site,
|
|
|
|
},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::{Crud, Readable},
|
|
|
|
DbPool,
|
2021-03-25 19:19:40 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_views::local_user_view::{LocalUserSettingsView, LocalUserView};
|
|
|
|
use lemmy_db_views_actor::{
|
|
|
|
community_person_ban_view::CommunityPersonBanView,
|
|
|
|
community_view::CommunityView,
|
|
|
|
};
|
2021-10-18 21:36:44 +00:00
|
|
|
use lemmy_utils::{claims::Claims, settings::structs::FederationConfig, ApiError, LemmyError};
|
2021-03-25 19:19:40 +00:00
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
pub async fn blocking<F, T>(pool: &DbPool, f: F) -> Result<T, LemmyError>
|
|
|
|
where
|
|
|
|
F: FnOnce(&diesel::PgConnection) -> T + Send + 'static,
|
|
|
|
T: Send + 'static,
|
|
|
|
{
|
|
|
|
let pool = pool.clone();
|
|
|
|
let res = actix_web::web::block(move || {
|
|
|
|
let conn = pool.get()?;
|
|
|
|
let res = (f)(&conn);
|
2021-07-06 13:26:46 +00:00
|
|
|
Ok(res) as Result<T, LemmyError>
|
2021-03-25 19:19:40 +00:00
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
|
2021-07-06 13:26:46 +00:00
|
|
|
res
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn is_mod_or_admin(
|
|
|
|
pool: &DbPool,
|
|
|
|
person_id: PersonId,
|
|
|
|
community_id: CommunityId,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let is_mod_or_admin = blocking(pool, move |conn| {
|
|
|
|
CommunityView::is_mod_or_admin(conn, person_id, community_id)
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
if !is_mod_or_admin {
|
2021-10-13 19:50:21 +00:00
|
|
|
return Err(ApiError::err_plain("not_a_mod_or_admin").into());
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_admin(local_user_view: &LocalUserView) -> Result<(), LemmyError> {
|
2021-03-29 20:24:50 +00:00
|
|
|
if !local_user_view.person.admin {
|
2021-10-13 19:50:21 +00:00
|
|
|
return Err(ApiError::err_plain("not_an_admin").into());
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn get_post(post_id: PostId, pool: &DbPool) -> Result<Post, LemmyError> {
|
2021-04-16 13:10:43 +00:00
|
|
|
blocking(pool, move |conn| Post::read(conn, post_id))
|
|
|
|
.await?
|
2021-10-13 19:50:21 +00:00
|
|
|
.map_err(|_| ApiError::err_plain("couldnt_find_post").into())
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
2021-04-24 22:26:50 +00:00
|
|
|
pub async fn mark_post_as_read(
|
|
|
|
person_id: PersonId,
|
|
|
|
post_id: PostId,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<PostRead, LemmyError> {
|
|
|
|
let post_read_form = PostReadForm { post_id, person_id };
|
|
|
|
|
|
|
|
blocking(pool, move |conn| {
|
|
|
|
PostRead::mark_as_read(conn, &post_read_form)
|
|
|
|
})
|
|
|
|
.await?
|
2021-11-23 14:15:43 +00:00
|
|
|
.map_err(|e| ApiError::err("couldnt_mark_post_as_read", e).into())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn mark_post_as_unread(
|
|
|
|
person_id: PersonId,
|
|
|
|
post_id: PostId,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<usize, LemmyError> {
|
|
|
|
let post_read_form = PostReadForm { post_id, person_id };
|
|
|
|
|
|
|
|
blocking(pool, move |conn| {
|
|
|
|
PostRead::mark_as_unread(conn, &post_read_form)
|
|
|
|
})
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("couldnt_mark_post_as_read", e).into())
|
2021-04-24 22:26:50 +00:00
|
|
|
}
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
pub async fn get_local_user_view_from_jwt(
|
|
|
|
jwt: &str,
|
|
|
|
pool: &DbPool,
|
2021-09-22 15:57:09 +00:00
|
|
|
secret: &Secret,
|
2021-03-25 19:19:40 +00:00
|
|
|
) -> Result<LocalUserView, LemmyError> {
|
2021-09-22 15:57:09 +00:00
|
|
|
let claims = Claims::decode(jwt, &secret.jwt_secret)
|
2021-10-13 19:50:21 +00:00
|
|
|
.map_err(|e| ApiError::err("not_logged_in", e))?
|
2021-04-16 13:10:43 +00:00
|
|
|
.claims;
|
2021-03-25 19:19:40 +00:00
|
|
|
let local_user_id = LocalUserId(claims.sub);
|
|
|
|
let local_user_view =
|
|
|
|
blocking(pool, move |conn| LocalUserView::read(conn, local_user_id)).await??;
|
|
|
|
// Check for a site ban
|
|
|
|
if local_user_view.person.banned {
|
2021-10-13 19:50:21 +00:00
|
|
|
return Err(ApiError::err_plain("site_ban").into());
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
2021-08-16 20:51:08 +00:00
|
|
|
// Check for user deletion
|
|
|
|
if local_user_view.person.deleted {
|
2021-10-13 19:50:21 +00:00
|
|
|
return Err(ApiError::err_plain("deleted").into());
|
2021-08-16 20:51:08 +00:00
|
|
|
}
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
check_validator_time(&local_user_view.local_user.validator_time, &claims)?;
|
|
|
|
|
|
|
|
Ok(local_user_view)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks if user's token was issued before user's password reset.
|
|
|
|
pub fn check_validator_time(
|
|
|
|
validator_time: &chrono::NaiveDateTime,
|
|
|
|
claims: &Claims,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let user_validation_time = validator_time.timestamp();
|
|
|
|
if user_validation_time > claims.iat {
|
2021-10-13 19:50:21 +00:00
|
|
|
Err(ApiError::err_plain("not_logged_in").into())
|
2021-03-25 19:19:40 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn get_local_user_view_from_jwt_opt(
|
|
|
|
jwt: &Option<String>,
|
|
|
|
pool: &DbPool,
|
2021-09-22 15:57:09 +00:00
|
|
|
secret: &Secret,
|
2021-03-25 19:19:40 +00:00
|
|
|
) -> Result<Option<LocalUserView>, LemmyError> {
|
|
|
|
match jwt {
|
2021-09-22 15:57:09 +00:00
|
|
|
Some(jwt) => Ok(Some(get_local_user_view_from_jwt(jwt, pool, secret).await?)),
|
2021-03-25 19:19:40 +00:00
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn get_local_user_settings_view_from_jwt(
|
|
|
|
jwt: &str,
|
|
|
|
pool: &DbPool,
|
2021-09-22 15:57:09 +00:00
|
|
|
secret: &Secret,
|
2021-03-25 19:19:40 +00:00
|
|
|
) -> Result<LocalUserSettingsView, LemmyError> {
|
2021-09-22 15:57:09 +00:00
|
|
|
let claims = Claims::decode(jwt, &secret.jwt_secret)
|
2021-10-13 19:50:21 +00:00
|
|
|
.map_err(|e| ApiError::err("not_logged_in", e))?
|
2021-04-16 13:10:43 +00:00
|
|
|
.claims;
|
2021-03-25 19:19:40 +00:00
|
|
|
let local_user_id = LocalUserId(claims.sub);
|
|
|
|
let local_user_view = blocking(pool, move |conn| {
|
|
|
|
LocalUserSettingsView::read(conn, local_user_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
// Check for a site ban
|
|
|
|
if local_user_view.person.banned {
|
2021-10-13 19:50:21 +00:00
|
|
|
return Err(ApiError::err_plain("site_ban").into());
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check_validator_time(&local_user_view.local_user.validator_time, &claims)?;
|
|
|
|
|
|
|
|
Ok(local_user_view)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn get_local_user_settings_view_from_jwt_opt(
|
|
|
|
jwt: &Option<String>,
|
|
|
|
pool: &DbPool,
|
2021-09-22 15:57:09 +00:00
|
|
|
secret: &Secret,
|
2021-03-25 19:19:40 +00:00
|
|
|
) -> Result<Option<LocalUserSettingsView>, LemmyError> {
|
|
|
|
match jwt {
|
|
|
|
Some(jwt) => Ok(Some(
|
2021-09-22 15:57:09 +00:00
|
|
|
get_local_user_settings_view_from_jwt(jwt, pool, secret).await?,
|
2021-03-25 19:19:40 +00:00
|
|
|
)),
|
|
|
|
None => Ok(None),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn check_community_ban(
|
|
|
|
person_id: PersonId,
|
|
|
|
community_id: CommunityId,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let is_banned =
|
|
|
|
move |conn: &'_ _| CommunityPersonBanView::get(conn, person_id, community_id).is_ok();
|
|
|
|
if blocking(pool, is_banned).await? {
|
2021-10-13 19:50:21 +00:00
|
|
|
Err(ApiError::err_plain("community_ban").into())
|
2021-03-25 19:19:40 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-14 16:33:19 +00:00
|
|
|
pub async fn check_community_deleted_or_removed(
|
|
|
|
community_id: CommunityId,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id))
|
|
|
|
.await?
|
|
|
|
.map_err(|e| ApiError::err("couldnt_find_community", e))?;
|
|
|
|
if community.deleted || community.removed {
|
|
|
|
Err(ApiError::err_plain("deleted").into())
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn check_post_deleted_or_removed(post: &Post) -> Result<(), LemmyError> {
|
|
|
|
if post.deleted || post.removed {
|
|
|
|
Err(ApiError::err_plain("deleted").into())
|
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-19 20:54:15 +00:00
|
|
|
pub async fn check_person_block(
|
|
|
|
my_id: PersonId,
|
|
|
|
potential_blocker_id: PersonId,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let is_blocked = move |conn: &'_ _| PersonBlock::read(conn, potential_blocker_id, my_id).is_ok();
|
|
|
|
if blocking(pool, is_blocked).await? {
|
2021-10-13 19:50:21 +00:00
|
|
|
Err(ApiError::err_plain("person_block").into())
|
2021-08-19 20:54:15 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-25 19:19:40 +00:00
|
|
|
pub async fn check_downvotes_enabled(score: i16, pool: &DbPool) -> Result<(), LemmyError> {
|
|
|
|
if score == -1 {
|
2021-10-16 13:33:38 +00:00
|
|
|
let site = blocking(pool, Site::read_simple).await??;
|
2021-03-25 19:19:40 +00:00
|
|
|
if !site.enable_downvotes {
|
2021-10-13 19:50:21 +00:00
|
|
|
return Err(ApiError::err_plain("downvotes_disabled").into());
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn build_federated_instances(
|
|
|
|
pool: &DbPool,
|
2021-09-22 15:57:09 +00:00
|
|
|
federation_config: &FederationConfig,
|
|
|
|
hostname: &str,
|
2021-03-25 19:19:40 +00:00
|
|
|
) -> Result<Option<FederatedInstances>, LemmyError> {
|
2021-09-22 15:57:09 +00:00
|
|
|
let federation = federation_config.to_owned();
|
|
|
|
if federation.enabled {
|
2021-03-25 19:19:40 +00:00
|
|
|
let distinct_communities = blocking(pool, move |conn| {
|
|
|
|
Community::distinct_federated_communities(conn)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let allowed = federation.allowed_instances;
|
|
|
|
let blocked = federation.blocked_instances;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let mut linked = distinct_communities
|
|
|
|
.iter()
|
|
|
|
.map(|actor_id| Ok(Url::parse(actor_id)?.host_str().unwrap_or("").to_string()))
|
|
|
|
.collect::<Result<Vec<String>, LemmyError>>()?;
|
|
|
|
|
|
|
|
if let Some(allowed) = allowed.as_ref() {
|
|
|
|
linked.extend_from_slice(allowed);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(blocked) = blocked.as_ref() {
|
2021-09-22 15:57:09 +00:00
|
|
|
linked.retain(|a| !blocked.contains(a) && !a.eq(hostname));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Sort and remove dupes
|
|
|
|
linked.sort_unstable();
|
|
|
|
linked.dedup();
|
|
|
|
|
|
|
|
Ok(Some(FederatedInstances {
|
|
|
|
linked,
|
|
|
|
allowed,
|
|
|
|
blocked,
|
|
|
|
}))
|
|
|
|
} else {
|
|
|
|
Ok(None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Checks the password length
|
|
|
|
pub fn password_length_check(pass: &str) -> Result<(), LemmyError> {
|
2021-09-18 23:53:30 +00:00
|
|
|
if !(10..=60).contains(&pass.len()) {
|
2021-10-13 19:50:21 +00:00
|
|
|
Err(ApiError::err_plain("invalid_password").into())
|
2021-03-25 19:19:40 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2021-04-07 11:40:35 +00:00
|
|
|
|
|
|
|
/// Checks the site description length
|
|
|
|
pub fn site_description_length_check(description: &str) -> Result<(), LemmyError> {
|
|
|
|
if description.len() > 150 {
|
2021-10-13 19:50:21 +00:00
|
|
|
Err(ApiError::err_plain("site_description_length_overflow").into())
|
2021-04-07 11:40:35 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
2021-10-01 11:37:39 +00:00
|
|
|
|
|
|
|
/// Checks for a honeypot. If this field is filled, fail the rest of the function
|
|
|
|
pub fn honeypot_check(honeypot: &Option<String>) -> Result<(), LemmyError> {
|
|
|
|
if honeypot.is_some() {
|
2021-10-13 19:50:21 +00:00
|
|
|
Err(ApiError::err_plain("honeypot_fail").into())
|
2021-10-01 11:37:39 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|