2020-05-16 14:04:08 +00:00
use crate ::{
2020-07-29 13:02:46 +00:00
captcha_espeak_wav_base64 ,
2020-11-04 02:15:11 +00:00
collect_moderated_communities ,
2021-03-10 22:33:55 +00:00
get_local_user_view_from_jwt ,
get_local_user_view_from_jwt_opt ,
2020-09-24 13:53:21 +00:00
is_admin ,
2021-03-02 15:36:10 +00:00
password_length_check ,
2020-09-24 13:53:21 +00:00
Perform ,
2020-07-10 18:15:41 +00:00
} ;
2020-08-18 13:43:50 +00:00
use actix_web ::web ::Data ;
2020-08-13 15:46:31 +00:00
use anyhow ::Context ;
2020-07-10 18:15:41 +00:00
use bcrypt ::verify ;
2020-07-29 13:02:46 +00:00
use captcha ::{ gen , Difficulty } ;
use chrono ::Duration ;
2021-03-11 04:43:11 +00:00
use lemmy_api_structs ::{ blocking , person ::* , send_email_to_user } ;
2021-02-04 16:34:58 +00:00
use lemmy_apub ::{
generate_apub_endpoint ,
generate_followers_url ,
generate_inbox_url ,
generate_shared_inbox_url ,
ApubObjectType ,
EndpointType ,
} ;
2020-12-21 23:27:42 +00:00
use lemmy_db_queries ::{
2020-08-05 16:03:46 +00:00
diesel_option_overwrite ,
2021-03-02 12:41:48 +00:00
diesel_option_overwrite_to_url ,
2020-12-13 17:04:42 +00:00
source ::{
2020-12-18 18:38:32 +00:00
comment ::Comment_ ,
2020-12-21 12:28:12 +00:00
community ::Community_ ,
2021-03-11 04:43:11 +00:00
local_user ::LocalUser_ ,
2020-12-21 13:38:34 +00:00
password_reset_request ::PasswordResetRequest_ ,
2021-03-11 04:43:11 +00:00
person ::Person_ ,
person_mention ::PersonMention_ ,
2020-12-18 18:38:32 +00:00
post ::Post_ ,
2020-12-21 13:38:34 +00:00
private_message ::PrivateMessage_ ,
2020-12-21 14:28:20 +00:00
site ::Site_ ,
2020-12-13 17:04:42 +00:00
} ,
2020-07-10 18:15:41 +00:00
Crud ,
Followable ,
Joinable ,
ListingType ,
SortType ,
} ;
2021-03-11 04:43:11 +00:00
use lemmy_db_schema ::{
naive_now ,
source ::{
comment ::Comment ,
community ::* ,
local_user ::{ LocalUser , LocalUserForm } ,
moderator ::* ,
password_reset_request ::* ,
person ::* ,
person_mention ::* ,
post ::Post ,
private_message ::* ,
site ::* ,
} ,
2021-03-18 20:25:21 +00:00
CommunityId ,
2021-03-11 04:43:11 +00:00
} ;
2020-12-21 16:30:34 +00:00
use lemmy_db_views ::{
comment_report_view ::CommentReportView ,
comment_view ::CommentQueryBuilder ,
2021-03-11 04:43:11 +00:00
local_user_view ::LocalUserView ,
2020-12-21 16:30:34 +00:00
post_report_view ::PostReportView ,
post_view ::PostQueryBuilder ,
private_message_view ::{ PrivateMessageQueryBuilder , PrivateMessageView } ,
2020-12-21 23:27:42 +00:00
} ;
use lemmy_db_views_actor ::{
community_follower_view ::CommunityFollowerView ,
community_moderator_view ::CommunityModeratorView ,
2021-03-10 22:33:55 +00:00
person_mention_view ::{ PersonMentionQueryBuilder , PersonMentionView } ,
person_view ::PersonViewSafe ,
2020-12-21 16:30:34 +00:00
} ;
2020-07-10 18:15:41 +00:00
use lemmy_utils ::{
2021-02-04 16:34:58 +00:00
apub ::generate_actor_keypair ,
2021-02-09 18:26:06 +00:00
claims ::Claims ,
2020-09-14 15:29:50 +00:00
email ::send_email ,
2020-08-13 15:46:31 +00:00
location_info ,
2021-03-01 17:24:11 +00:00
settings ::structs ::Settings ,
2020-09-14 15:29:50 +00:00
utils ::{
check_slurs ,
generate_random_string ,
is_valid_preferred_username ,
is_valid_username ,
naive_from_unix ,
remove_slurs ,
} ,
2021-02-22 18:04:32 +00:00
ApiError ,
2020-09-01 14:25:34 +00:00
ConnectionId ,
LemmyError ,
2020-05-16 14:04:08 +00:00
} ;
2020-09-24 13:53:21 +00:00
use lemmy_websocket ::{
2021-01-18 21:57:31 +00:00
messages ::{ CaptchaItem , CheckCaptcha , SendAllMessage , SendUserRoomMessage } ,
2020-09-24 13:53:21 +00:00
LemmyContext ,
UserOperation ,
} ;
2020-05-16 14:04:08 +00:00
use std ::str ::FromStr ;
2019-05-05 05:20:38 +00:00
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for Login {
2020-04-20 03:59:07 +00:00
type Response = LoginResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < LoginResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & Login = & self ;
2019-05-05 05:20:38 +00:00
// Fetch that username / email
2020-07-01 12:54:29 +00:00
let username_or_email = data . username_or_email . clone ( ) ;
2021-03-10 22:33:55 +00:00
let local_user_view = match blocking ( context . pool ( ) , move | conn | {
LocalUserView ::find_by_email_or_name ( conn , & username_or_email )
2020-07-01 12:54:29 +00:00
} )
. await ?
{
2021-03-10 22:33:55 +00:00
Ok ( uv ) = > uv ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( " couldnt_find_that_username_or_email " ) . into ( ) ) ,
2019-05-05 05:20:38 +00:00
} ;
// Verify the password
2021-03-11 04:43:11 +00:00
let valid : bool = verify (
& data . password ,
& local_user_view . local_user . password_encrypted ,
)
. unwrap_or ( false ) ;
2019-05-05 05:20:38 +00:00
if ! valid {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " password_incorrect " ) . into ( ) ) ;
2019-05-05 05:20:38 +00:00
}
// Return the jwt
2020-07-10 18:15:41 +00:00
Ok ( LoginResponse {
2021-03-18 20:25:21 +00:00
jwt : Claims ::jwt ( local_user_view . local_user . id . 0 , Settings ::get ( ) . hostname ( ) ) ? ,
2020-07-10 18:15:41 +00:00
} )
2019-05-05 05:20:38 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for Register {
2020-04-20 03:59:07 +00:00
type Response = LoginResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < LoginResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & Register = & self ;
2019-05-05 05:20:38 +00:00
2019-12-11 20:21:47 +00:00
// Make sure site has open registration
2020-12-20 01:10:47 +00:00
if let Ok ( site ) = blocking ( context . pool ( ) , move | conn | Site ::read_simple ( conn ) ) . await ? {
if ! site . open_registration {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " registration_closed " ) . into ( ) ) ;
2019-12-11 20:21:47 +00:00
}
}
2021-03-02 15:36:10 +00:00
password_length_check ( & data . password ) ? ;
2020-10-05 00:10:15 +00:00
2019-05-05 05:20:38 +00:00
// Make sure passwords match
2020-01-02 11:30:00 +00:00
if data . password ! = data . password_verify {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " passwords_dont_match " ) . into ( ) ) ;
2019-05-05 05:20:38 +00:00
}
2021-01-18 21:57:31 +00:00
// Check if there are admins. False if admins exist
let no_admins = blocking ( context . pool ( ) , move | conn | {
2021-03-10 22:33:55 +00:00
PersonViewSafe ::admins ( conn ) . map ( | a | a . is_empty ( ) )
2021-01-18 21:57:31 +00:00
} )
. await ? ? ;
2020-07-29 13:02:46 +00:00
// If its not the admin, check the captcha
2021-03-01 17:24:11 +00:00
if ! no_admins & & Settings ::get ( ) . captcha ( ) . enabled {
2020-08-24 11:58:24 +00:00
let check = context
. chat_server ( )
. send ( CheckCaptcha {
uuid : data
. captcha_uuid
. to_owned ( )
. unwrap_or_else ( | | " " . to_string ( ) ) ,
answer : data
. captcha_answer
. to_owned ( )
. unwrap_or_else ( | | " " . to_string ( ) ) ,
} )
. await ? ;
if ! check {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " captcha_incorrect " ) . into ( ) ) ;
2020-08-24 11:58:24 +00:00
}
2020-07-29 13:02:46 +00:00
}
2020-08-04 14:39:55 +00:00
check_slurs ( & data . username ) ? ;
2019-05-05 05:20:38 +00:00
2021-03-10 22:33:55 +00:00
let actor_keypair = generate_actor_keypair ( ) ? ;
2020-05-28 18:07:36 +00:00
if ! is_valid_username ( & data . username ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " invalid_username " ) . into ( ) ) ;
2020-05-28 18:07:36 +00:00
}
2021-03-10 22:33:55 +00:00
let actor_id = generate_apub_endpoint ( EndpointType ::Person , & data . username ) ? ;
2020-04-03 04:12:05 +00:00
2021-03-10 22:33:55 +00:00
// We have to create both a person, and local_user
2021-03-11 04:43:11 +00:00
2021-03-10 22:33:55 +00:00
// Register the new person
let person_form = PersonForm {
2019-05-05 05:20:38 +00:00
name : data . username . to_owned ( ) ,
2019-12-29 20:39:48 +00:00
avatar : None ,
2020-08-05 16:03:46 +00:00
banner : None ,
2019-05-05 05:20:38 +00:00
preferred_username : None ,
2020-09-18 11:04:12 +00:00
published : None ,
2019-05-05 05:20:38 +00:00
updated : None ,
2021-03-10 22:33:55 +00:00
banned : None ,
deleted : None ,
actor_id : Some ( actor_id . clone ( ) ) ,
2020-04-03 04:12:05 +00:00
bio : None ,
2021-03-11 04:43:11 +00:00
local : Some ( true ) ,
private_key : Some ( Some ( actor_keypair . private_key ) ) ,
public_key : Some ( Some ( actor_keypair . public_key ) ) ,
2020-04-03 04:12:05 +00:00
last_refreshed_at : None ,
2021-03-10 22:33:55 +00:00
inbox_url : Some ( generate_inbox_url ( & actor_id ) ? ) ,
shared_inbox_url : Some ( Some ( generate_shared_inbox_url ( & actor_id ) ? ) ) ,
2019-05-05 05:20:38 +00:00
} ;
2021-03-10 22:33:55 +00:00
// insert the person
let inserted_person = match blocking ( context . pool ( ) , move | conn | {
Person ::create ( conn , & person_form )
2020-08-18 13:43:50 +00:00
} )
. await ?
{
2021-03-11 04:43:11 +00:00
Ok ( u ) = > u ,
Err ( _ ) = > {
2021-03-10 22:33:55 +00:00
return Err ( ApiError ::err ( " user_already_exists " ) . into ( ) ) ;
}
} ;
// Create the local user
let local_user_form = LocalUserForm {
person_id : inserted_person . id ,
email : Some ( data . email . to_owned ( ) ) ,
matrix_user_id : None ,
password_encrypted : data . password . to_owned ( ) ,
2021-03-11 04:43:11 +00:00
admin : Some ( no_admins ) ,
show_nsfw : Some ( data . show_nsfw ) ,
theme : Some ( " browser " . into ( ) ) ,
default_sort_type : Some ( SortType ::Active as i16 ) ,
default_listing_type : Some ( ListingType ::Subscribed as i16 ) ,
lang : Some ( " browser " . into ( ) ) ,
show_avatars : Some ( true ) ,
send_notifications_to_email : Some ( false ) ,
2021-03-10 22:33:55 +00:00
} ;
2021-03-11 22:47:44 +00:00
let inserted_local_user = match blocking ( context . pool ( ) , move | conn | {
2021-03-10 22:33:55 +00:00
LocalUser ::register ( conn , & local_user_form )
} )
. await ?
{
Ok ( lu ) = > lu ,
2020-01-18 01:34:16 +00:00
Err ( e ) = > {
let err_type = if e . to_string ( )
2021-03-10 22:33:55 +00:00
= = " duplicate key value violates unique constraint \" local_user_email_key \" "
2020-01-18 01:34:16 +00:00
{
" email_already_exists "
} else {
" user_already_exists "
} ;
2021-03-10 22:33:55 +00:00
// If the local user creation errored, then delete that person
2021-03-11 04:43:11 +00:00
blocking ( context . pool ( ) , move | conn | {
Person ::delete ( & conn , inserted_person . id )
} )
. await ? ? ;
2021-03-10 22:33:55 +00:00
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( err_type ) . into ( ) ) ;
2020-01-18 01:34:16 +00:00
}
2019-05-05 05:20:38 +00:00
} ;
2020-04-24 14:04:36 +00:00
let main_community_keypair = generate_actor_keypair ( ) ? ;
2020-04-03 04:12:05 +00:00
2019-06-02 16:34:45 +00:00
// Create the main community if it doesn't exist
2021-03-18 20:25:21 +00:00
let main_community = match blocking ( context . pool ( ) , move | conn | {
Community ::read ( conn , CommunityId ( 2 ) )
} )
. await ?
{
Ok ( c ) = > c ,
Err ( _e ) = > {
let default_community_name = " main " ;
let actor_id = generate_apub_endpoint ( EndpointType ::Community , default_community_name ) ? ;
let community_form = CommunityForm {
name : default_community_name . to_string ( ) ,
title : " The Default Community " . to_string ( ) ,
description : Some ( " The Default Community " . to_string ( ) ) ,
nsfw : false ,
creator_id : inserted_person . id ,
removed : None ,
deleted : None ,
updated : None ,
actor_id : Some ( actor_id . to_owned ( ) ) ,
local : true ,
private_key : Some ( main_community_keypair . private_key ) ,
public_key : Some ( main_community_keypair . public_key ) ,
last_refreshed_at : None ,
published : None ,
icon : None ,
banner : None ,
followers_url : Some ( generate_followers_url ( & actor_id ) ? ) ,
inbox_url : Some ( generate_inbox_url ( & actor_id ) ? ) ,
shared_inbox_url : Some ( Some ( generate_shared_inbox_url ( & actor_id ) ? ) ) ,
} ;
blocking ( context . pool ( ) , move | conn | {
Community ::create ( conn , & community_form )
} )
. await ? ?
}
} ;
2019-06-02 16:34:45 +00:00
// Sign them up for main community no matter what
let community_follower_form = CommunityFollowerForm {
community_id : main_community . id ,
2021-03-10 22:33:55 +00:00
person_id : inserted_person . id ,
2020-11-10 15:45:10 +00:00
pending : false ,
2019-06-02 16:34:45 +00:00
} ;
2020-07-01 12:54:29 +00:00
let follow = move | conn : & '_ _ | CommunityFollower ::follow ( conn , & community_follower_form ) ;
2020-08-18 13:43:50 +00:00
if blocking ( context . pool ( ) , follow ) . await ? . is_err ( ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " community_follower_already_exists " ) . into ( ) ) ;
2020-07-01 12:54:29 +00:00
} ;
2019-06-02 16:34:45 +00:00
// If its an admin, add them as a mod and follower to main
2021-01-18 21:57:31 +00:00
if no_admins {
2019-06-02 16:34:45 +00:00
let community_moderator_form = CommunityModeratorForm {
community_id : main_community . id ,
2021-03-10 22:33:55 +00:00
person_id : inserted_person . id ,
2019-06-02 16:34:45 +00:00
} ;
2020-07-01 12:54:29 +00:00
let join = move | conn : & '_ _ | CommunityModerator ::join ( conn , & community_moderator_form ) ;
2020-08-18 13:43:50 +00:00
if blocking ( context . pool ( ) , join ) . await ? . is_err ( ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " community_moderator_already_exists " ) . into ( ) ) ;
2020-07-01 12:54:29 +00:00
}
2019-06-02 16:34:45 +00:00
}
2019-05-05 05:20:38 +00:00
// Return the jwt
2019-09-07 15:35:05 +00:00
Ok ( LoginResponse {
2021-03-18 20:25:21 +00:00
jwt : Claims ::jwt ( inserted_local_user . id . 0 , Settings ::get ( ) . hostname ( ) ) ? ,
2019-09-07 15:35:05 +00:00
} )
2019-05-05 05:20:38 +00:00
}
}
2020-07-29 13:02:46 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for GetCaptcha {
2020-07-29 13:02:46 +00:00
type Response = GetCaptchaResponse ;
async fn perform (
& self ,
2020-08-24 11:58:24 +00:00
context : & Data < LemmyContext > ,
_websocket_id : Option < ConnectionId > ,
2020-07-29 13:02:46 +00:00
) -> Result < Self ::Response , LemmyError > {
2021-03-01 17:24:11 +00:00
let captcha_settings = Settings ::get ( ) . captcha ( ) ;
2020-07-29 13:02:46 +00:00
if ! captcha_settings . enabled {
return Ok ( GetCaptchaResponse { ok : None } ) ;
}
let captcha = match captcha_settings . difficulty . as_str ( ) {
" easy " = > gen ( Difficulty ::Easy ) ,
" medium " = > gen ( Difficulty ::Medium ) ,
" hard " = > gen ( Difficulty ::Hard ) ,
_ = > gen ( Difficulty ::Medium ) ,
} ;
let answer = captcha . chars_as_string ( ) ;
let png_byte_array = captcha . as_png ( ) . expect ( " failed to generate captcha " ) ;
let png = base64 ::encode ( png_byte_array ) ;
let uuid = uuid ::Uuid ::new_v4 ( ) . to_string ( ) ;
let wav = captcha_espeak_wav_base64 ( & answer ) . ok ( ) ;
let captcha_item = CaptchaItem {
answer ,
uuid : uuid . to_owned ( ) ,
expires : naive_now ( ) + Duration ::minutes ( 10 ) , // expires in 10 minutes
} ;
2020-08-24 11:58:24 +00:00
// Stores the captcha item on the queue
context . chat_server ( ) . do_send ( captcha_item ) ;
2020-07-29 13:02:46 +00:00
Ok ( GetCaptchaResponse {
ok : Some ( CaptchaResponse { png , uuid , wav } ) ,
} )
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for SaveUserSettings {
2020-04-20 03:59:07 +00:00
type Response = LoginResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < LoginResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & SaveUserSettings = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2019-08-14 02:52:43 +00:00
2021-03-02 12:41:48 +00:00
let avatar = diesel_option_overwrite_to_url ( & data . avatar ) ? ;
let banner = diesel_option_overwrite_to_url ( & data . banner ) ? ;
2020-08-09 02:36:29 +00:00
let email = diesel_option_overwrite ( & data . email ) ;
2020-09-25 15:16:49 +00:00
let bio = diesel_option_overwrite ( & data . bio ) ;
let preferred_username = diesel_option_overwrite ( & data . preferred_username ) ;
let matrix_user_id = diesel_option_overwrite ( & data . matrix_user_id ) ;
2020-08-05 16:03:46 +00:00
2020-09-25 15:16:49 +00:00
if let Some ( Some ( bio ) ) = & bio {
if bio . chars ( ) . count ( ) > 300 {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " bio_length_overflow " ) . into ( ) ) ;
2020-08-12 11:13:44 +00:00
}
2020-09-25 15:16:49 +00:00
}
if let Some ( Some ( preferred_username ) ) = & preferred_username {
if ! is_valid_preferred_username ( preferred_username . trim ( ) ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " invalid_username " ) . into ( ) ) ;
2020-09-25 15:16:49 +00:00
}
}
2020-07-10 00:04:09 +00:00
2021-03-11 04:43:11 +00:00
let local_user_id = local_user_view . local_user . id ;
let person_id = local_user_view . person . id ;
2020-01-01 20:46:14 +00:00
let password_encrypted = match & data . new_password {
Some ( new_password ) = > {
match & data . new_password_verify {
Some ( new_password_verify ) = > {
2021-03-02 15:36:10 +00:00
password_length_check ( & new_password ) ? ;
2020-01-01 20:46:14 +00:00
// Make sure passwords match
if new_password ! = new_password_verify {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " passwords_dont_match " ) . into ( ) ) ;
2020-01-01 20:46:14 +00:00
}
// Check the old password
match & data . old_password {
Some ( old_password ) = > {
2021-03-11 04:43:11 +00:00
let valid : bool =
verify ( old_password , & local_user_view . local_user . password_encrypted )
. unwrap_or ( false ) ;
2020-01-01 20:46:14 +00:00
if ! valid {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " password_incorrect " ) . into ( ) ) ;
2020-01-01 20:46:14 +00:00
}
2020-07-01 12:54:29 +00:00
let new_password = new_password . to_owned ( ) ;
2020-08-18 13:43:50 +00:00
let user = blocking ( context . pool ( ) , move | conn | {
2021-03-11 04:43:11 +00:00
LocalUser ::update_password ( conn , local_user_id , & new_password )
2020-07-01 12:54:29 +00:00
} )
. await ? ? ;
user . password_encrypted
2020-01-01 20:46:14 +00:00
}
2021-02-22 18:04:32 +00:00
None = > return Err ( ApiError ::err ( " password_incorrect " ) . into ( ) ) ,
2020-01-01 20:46:14 +00:00
}
}
2021-02-22 18:04:32 +00:00
None = > return Err ( ApiError ::err ( " passwords_dont_match " ) . into ( ) ) ,
2020-01-01 20:46:14 +00:00
}
}
2021-03-11 04:43:11 +00:00
None = > local_user_view . local_user . password_encrypted ,
2020-01-01 20:46:14 +00:00
} ;
2020-12-26 03:22:25 +00:00
let default_listing_type = data . default_listing_type ;
let default_sort_type = data . default_sort_type ;
2020-12-20 01:10:47 +00:00
2021-03-11 04:43:11 +00:00
let person_form = PersonForm {
name : local_user_view . person . name ,
2020-07-10 00:04:09 +00:00
avatar ,
2020-08-05 16:03:46 +00:00
banner ,
2021-02-04 16:34:58 +00:00
inbox_url : None ,
2020-08-05 16:03:46 +00:00
preferred_username ,
2021-03-11 04:43:11 +00:00
published : None ,
2019-08-14 02:52:43 +00:00
updated : Some ( naive_now ( ) ) ,
2021-03-11 04:43:11 +00:00
banned : None ,
deleted : None ,
actor_id : None ,
bio ,
local : None ,
private_key : None ,
public_key : None ,
last_refreshed_at : None ,
shared_inbox_url : None ,
} ;
let person_res = blocking ( context . pool ( ) , move | conn | {
Person ::update ( conn , person_id , & person_form )
} )
. await ? ;
2021-03-11 22:47:44 +00:00
let _updated_person : Person = match person_res {
2021-03-11 04:43:11 +00:00
Ok ( p ) = > p ,
Err ( _ ) = > {
return Err ( ApiError ::err ( " user_already_exists " ) . into ( ) ) ;
}
} ;
let local_user_form = LocalUserForm {
person_id ,
email ,
matrix_user_id ,
password_encrypted ,
admin : None ,
2019-08-14 02:52:43 +00:00
show_nsfw : data . show_nsfw ,
2019-10-15 19:21:27 +00:00
theme : data . theme . to_owned ( ) ,
2020-12-20 01:10:47 +00:00
default_sort_type ,
default_listing_type ,
2019-12-09 08:24:53 +00:00
lang : data . lang . to_owned ( ) ,
2020-01-02 21:55:54 +00:00
show_avatars : data . show_avatars ,
send_notifications_to_email : data . send_notifications_to_email ,
2019-08-14 02:52:43 +00:00
} ;
2021-03-11 04:43:11 +00:00
let local_user_res = blocking ( context . pool ( ) , move | conn | {
LocalUser ::update ( conn , local_user_id , & local_user_form )
2020-08-18 13:43:50 +00:00
} )
. await ? ;
2021-03-11 22:47:44 +00:00
let updated_local_user = match local_user_res {
Ok ( u ) = > u ,
2020-01-18 01:34:16 +00:00
Err ( e ) = > {
let err_type = if e . to_string ( )
2021-03-11 04:43:11 +00:00
= = " duplicate key value violates unique constraint \" local_user_email_key \" "
2020-01-18 01:34:16 +00:00
{
" email_already_exists "
} else {
" user_already_exists "
} ;
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( err_type ) . into ( ) ) ;
2020-01-18 01:34:16 +00:00
}
2019-08-14 02:52:43 +00:00
} ;
// Return the jwt
2019-09-07 15:35:05 +00:00
Ok ( LoginResponse {
2021-03-18 20:25:21 +00:00
jwt : Claims ::jwt ( updated_local_user . id . 0 , Settings ::get ( ) . hostname ( ) ) ? ,
2019-09-07 15:35:05 +00:00
} )
2019-08-14 02:52:43 +00:00
}
}
2019-05-05 05:20:38 +00:00
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2021-03-11 04:43:11 +00:00
impl Perform for GetPersonDetails {
type Response = GetPersonDetailsResponse ;
2020-04-20 03:59:07 +00:00
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2021-03-11 04:43:11 +00:00
) -> Result < GetPersonDetailsResponse , LemmyError > {
let data : & GetPersonDetails = & self ;
let local_user_view = get_local_user_view_from_jwt_opt ( & data . auth , context . pool ( ) ) . await ? ;
2019-08-14 02:52:43 +00:00
2021-03-11 04:43:11 +00:00
let show_nsfw = match & local_user_view {
Some ( uv ) = > uv . local_user . show_nsfw ,
2019-09-07 15:35:05 +00:00
None = > false ,
2019-08-14 02:52:43 +00:00
} ;
2019-05-05 05:20:38 +00:00
let sort = SortType ::from_str ( & data . sort ) ? ;
2020-07-01 12:54:29 +00:00
let username = data
. username
. to_owned ( )
. unwrap_or_else ( | | " admin " . to_string ( ) ) ;
2021-03-11 04:43:11 +00:00
let person_details_id = match data . person_id {
2019-05-05 05:20:38 +00:00
Some ( id ) = > id ,
2019-09-07 15:35:05 +00:00
None = > {
2021-03-11 04:43:11 +00:00
let person = blocking ( context . pool ( ) , move | conn | {
Person ::find_by_name ( conn , & username )
2020-08-18 13:43:50 +00:00
} )
. await ? ;
2021-03-11 04:43:11 +00:00
match person {
Ok ( p ) = > p . id ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( " couldnt_find_that_username_or_email " ) . into ( ) ) ,
2019-12-29 01:58:01 +00:00
}
2019-09-07 15:35:05 +00:00
}
2019-05-05 05:20:38 +00:00
} ;
2021-03-11 04:43:11 +00:00
let person_id = local_user_view . map ( | uv | uv . person . id ) ;
2020-12-04 00:47:58 +00:00
2021-01-18 21:57:31 +00:00
// You don't need to return settings for the user, since this comes back with GetSite
// `my_user`
2021-03-11 04:43:11 +00:00
let person_view = blocking ( context . pool ( ) , move | conn | {
PersonViewSafe ::read ( conn , person_details_id )
2021-01-18 21:57:31 +00:00
} )
. await ? ? ;
2020-10-30 22:19:47 +00:00
2020-07-01 12:54:29 +00:00
let page = data . page ;
let limit = data . limit ;
let saved_only = data . saved_only ;
let community_id = data . community_id ;
2020-10-30 22:19:47 +00:00
2020-08-18 13:43:50 +00:00
let ( posts , comments ) = blocking ( context . pool ( ) , move | conn | {
2020-12-16 18:59:43 +00:00
let mut posts_query = PostQueryBuilder ::create ( conn )
2020-07-01 12:54:29 +00:00
. sort ( & sort )
. show_nsfw ( show_nsfw )
. saved_only ( saved_only )
2020-12-16 18:59:43 +00:00
. community_id ( community_id )
2021-03-11 04:43:11 +00:00
. my_person_id ( person_id )
2020-07-01 12:54:29 +00:00
. page ( page )
. limit ( limit ) ;
2020-12-16 18:59:43 +00:00
let mut comments_query = CommentQueryBuilder ::create ( conn )
2021-03-11 04:43:11 +00:00
. my_person_id ( person_id )
2020-07-01 12:54:29 +00:00
. sort ( & sort )
. saved_only ( saved_only )
. page ( page )
. limit ( limit ) ;
// If its saved only, you don't care what creator it was
// Or, if its not saved, then you only want it for that specific creator
if ! saved_only {
2021-03-11 04:43:11 +00:00
posts_query = posts_query . creator_id ( person_details_id ) ;
comments_query = comments_query . creator_id ( person_details_id ) ;
2020-07-01 12:54:29 +00:00
}
let posts = posts_query . list ( ) ? ;
let comments = comments_query . list ( ) ? ;
Ok ( ( posts , comments ) ) as Result < _ , LemmyError >
} )
. await ? ? ;
2021-02-11 13:53:17 +00:00
let mut follows = vec! [ ] ;
2021-03-11 04:43:11 +00:00
if let Some ( pid ) = person_id {
if pid = = person_details_id {
2021-02-11 13:53:17 +00:00
follows = blocking ( context . pool ( ) , move | conn | {
2021-03-11 04:43:11 +00:00
CommunityFollowerView ::for_person ( conn , person_details_id )
2021-02-11 13:53:17 +00:00
} )
. await ? ? ;
}
} ;
2020-08-18 13:43:50 +00:00
let moderates = blocking ( context . pool ( ) , move | conn | {
2021-03-11 04:43:11 +00:00
CommunityModeratorView ::for_person ( conn , person_details_id )
2020-07-01 12:54:29 +00:00
} )
. await ? ? ;
2019-12-07 12:03:03 +00:00
2019-05-05 05:20:38 +00:00
// Return the jwt
2021-03-11 04:43:11 +00:00
Ok ( GetPersonDetailsResponse {
person_view ,
2019-12-09 19:08:19 +00:00
follows ,
moderates ,
comments ,
posts ,
2019-09-07 15:35:05 +00:00
} )
2019-05-05 05:20:38 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for AddAdmin {
2020-04-20 03:59:07 +00:00
type Response = AddAdminResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < AddAdminResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & AddAdmin = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2019-05-05 05:20:38 +00:00
// Make sure user is an admin
2021-03-11 04:43:11 +00:00
is_admin ( & local_user_view ) ? ;
2019-05-05 05:20:38 +00:00
2020-07-01 12:54:29 +00:00
let added = data . added ;
2021-03-15 18:02:27 +00:00
let added_person_id = data . person_id ;
2021-03-11 04:43:11 +00:00
let added_admin = match blocking ( context . pool ( ) , move | conn | {
2021-03-15 18:02:27 +00:00
LocalUser ::add_admin ( conn , added_person_id , added )
2021-03-11 04:43:11 +00:00
} )
. await ?
{
Ok ( a ) = > a ,
Err ( _ ) = > {
return Err ( ApiError ::err ( " couldnt_update_user " ) . into ( ) ) ;
}
} ;
2019-05-05 05:20:38 +00:00
// Mod tables
let form = ModAddForm {
2021-03-11 04:43:11 +00:00
mod_person_id : local_user_view . person . id ,
other_person_id : added_admin . person_id ,
2019-05-05 05:20:38 +00:00
removed : Some ( ! data . added ) ,
} ;
2020-08-18 13:43:50 +00:00
blocking ( context . pool ( ) , move | conn | ModAdd ::create ( conn , & form ) ) . await ? ? ;
2019-05-05 05:20:38 +00:00
2020-08-18 13:43:50 +00:00
let site_creator_id = blocking ( context . pool ( ) , move | conn | {
Site ::read ( conn , 1 ) . map ( | s | s . creator_id )
} )
. await ? ? ;
2020-07-01 12:54:29 +00:00
2021-03-11 04:43:11 +00:00
let mut admins = blocking ( context . pool ( ) , move | conn | PersonViewSafe ::admins ( conn ) ) . await ? ? ;
2020-08-13 15:46:31 +00:00
let creator_index = admins
. iter ( )
2021-03-11 04:43:11 +00:00
. position ( | r | r . person . id = = site_creator_id )
2020-08-13 15:46:31 +00:00
. context ( location_info! ( ) ) ? ;
2021-03-11 04:43:11 +00:00
let creator_person = admins . remove ( creator_index ) ;
admins . insert ( 0 , creator_person ) ;
2019-05-05 05:20:38 +00:00
2020-04-19 22:08:25 +00:00
let res = AddAdminResponse { admins } ;
2020-08-24 11:58:24 +00:00
context . chat_server ( ) . do_send ( SendAllMessage {
op : UserOperation ::AddAdmin ,
response : res . clone ( ) ,
websocket_id ,
} ) ;
2020-04-19 22:08:25 +00:00
Ok ( res )
2019-05-05 05:20:38 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2021-03-11 04:43:11 +00:00
impl Perform for BanPerson {
type Response = BanPersonResponse ;
2020-04-20 03:59:07 +00:00
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
websocket_id : Option < ConnectionId > ,
2021-03-11 04:43:11 +00:00
) -> Result < BanPersonResponse , LemmyError > {
let data : & BanPerson = & self ;
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2019-05-05 05:20:38 +00:00
// Make sure user is an admin
2021-03-11 04:43:11 +00:00
is_admin ( & local_user_view ) ? ;
2019-05-05 05:20:38 +00:00
2020-07-01 12:54:29 +00:00
let ban = data . ban ;
2021-03-11 04:43:11 +00:00
let banned_person_id = data . person_id ;
let ban_person = move | conn : & '_ _ | Person ::ban_person ( conn , banned_person_id , ban ) ;
if blocking ( context . pool ( ) , ban_person ) . await ? . is_err ( ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_user " ) . into ( ) ) ;
2020-07-01 12:54:29 +00:00
}
2019-05-05 05:20:38 +00:00
2020-08-17 18:12:36 +00:00
// Remove their data if that's desired
2020-12-20 01:10:47 +00:00
if data . remove_data {
2020-08-17 18:12:36 +00:00
// Posts
2020-08-18 13:43:50 +00:00
blocking ( context . pool ( ) , move | conn : & '_ _ | {
2021-03-11 04:43:11 +00:00
Post ::update_removed_for_creator ( conn , banned_person_id , None , true )
2020-08-17 18:12:36 +00:00
} )
. await ? ? ;
// Communities
2020-08-18 13:43:50 +00:00
blocking ( context . pool ( ) , move | conn : & '_ _ | {
2021-03-11 04:43:11 +00:00
Community ::update_removed_for_creator ( conn , banned_person_id , true )
2020-08-17 18:12:36 +00:00
} )
. await ? ? ;
// Comments
2020-08-18 13:43:50 +00:00
blocking ( context . pool ( ) , move | conn : & '_ _ | {
2021-03-11 04:43:11 +00:00
Comment ::update_removed_for_creator ( conn , banned_person_id , true )
2020-08-17 18:12:36 +00:00
} )
. await ? ? ;
}
2019-05-05 05:20:38 +00:00
// Mod tables
let expires = match data . expires {
Some ( time ) = > Some ( naive_from_unix ( time ) ) ,
2019-09-07 15:35:05 +00:00
None = > None ,
2019-05-05 05:20:38 +00:00
} ;
let form = ModBanForm {
2021-03-11 04:43:11 +00:00
mod_person_id : local_user_view . person . id ,
other_person_id : data . person_id ,
2019-05-05 05:20:38 +00:00
reason : data . reason . to_owned ( ) ,
banned : Some ( data . ban ) ,
2019-12-09 19:08:19 +00:00
expires ,
2019-05-05 05:20:38 +00:00
} ;
2020-08-18 13:43:50 +00:00
blocking ( context . pool ( ) , move | conn | ModBan ::create ( conn , & form ) ) . await ? ? ;
2019-05-05 05:20:38 +00:00
2021-03-11 04:43:11 +00:00
let person_id = data . person_id ;
let person_view = blocking ( context . pool ( ) , move | conn | {
PersonViewSafe ::read ( conn , person_id )
2020-08-18 13:43:50 +00:00
} )
. await ? ? ;
2019-05-05 05:20:38 +00:00
2021-03-11 04:43:11 +00:00
let res = BanPersonResponse {
person_view ,
2019-09-07 15:35:05 +00:00
banned : data . ban ,
2020-04-19 22:08:25 +00:00
} ;
2020-08-24 11:58:24 +00:00
context . chat_server ( ) . do_send ( SendAllMessage {
2021-03-10 22:33:55 +00:00
op : UserOperation ::BanPerson ,
2020-08-24 11:58:24 +00:00
response : res . clone ( ) ,
websocket_id ,
} ) ;
2020-04-19 22:08:25 +00:00
Ok ( res )
2019-05-05 05:20:38 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for GetReplies {
2020-04-20 03:59:07 +00:00
type Response = GetRepliesResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < GetRepliesResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & GetReplies = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2019-05-05 05:20:38 +00:00
let sort = SortType ::from_str ( & data . sort ) ? ;
2020-07-01 12:54:29 +00:00
let page = data . page ;
let limit = data . limit ;
let unread_only = data . unread_only ;
2021-03-11 04:43:11 +00:00
let person_id = local_user_view . person . id ;
2020-08-18 13:43:50 +00:00
let replies = blocking ( context . pool ( ) , move | conn | {
2020-12-16 18:59:43 +00:00
CommentQueryBuilder ::create ( conn )
2020-07-01 12:54:29 +00:00
. sort ( & sort )
. unread_only ( unread_only )
2021-03-11 04:43:11 +00:00
. recipient_id ( person_id )
. my_person_id ( person_id )
2020-07-01 12:54:29 +00:00
. page ( page )
. limit ( limit )
. list ( )
} )
. await ? ? ;
2019-05-05 05:20:38 +00:00
2020-01-16 14:39:08 +00:00
Ok ( GetRepliesResponse { replies } )
2019-05-05 05:20:38 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2021-03-11 04:43:11 +00:00
impl Perform for GetPersonMentions {
type Response = GetPersonMentionsResponse ;
2020-04-20 03:59:07 +00:00
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2021-03-11 04:43:11 +00:00
) -> Result < GetPersonMentionsResponse , LemmyError > {
let data : & GetPersonMentions = & self ;
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2019-10-20 00:46:29 +00:00
let sort = SortType ::from_str ( & data . sort ) ? ;
2020-07-01 12:54:29 +00:00
let page = data . page ;
let limit = data . limit ;
let unread_only = data . unread_only ;
2021-03-11 04:43:11 +00:00
let person_id = local_user_view . person . id ;
2020-08-18 13:43:50 +00:00
let mentions = blocking ( context . pool ( ) , move | conn | {
2021-03-11 04:43:11 +00:00
PersonMentionQueryBuilder ::create ( conn )
. recipient_id ( person_id )
. my_person_id ( person_id )
2020-07-01 12:54:29 +00:00
. sort ( & sort )
. unread_only ( unread_only )
. page ( page )
. limit ( limit )
. list ( )
} )
. await ? ? ;
2019-10-20 00:46:29 +00:00
2021-03-11 04:43:11 +00:00
Ok ( GetPersonMentionsResponse { mentions } )
2019-10-20 00:46:29 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2021-03-11 04:43:11 +00:00
impl Perform for MarkPersonMentionAsRead {
type Response = PersonMentionResponse ;
2020-04-20 03:59:07 +00:00
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2021-03-11 04:43:11 +00:00
) -> Result < PersonMentionResponse , LemmyError > {
let data : & MarkPersonMentionAsRead = & self ;
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2019-10-20 00:46:29 +00:00
2021-03-11 04:43:11 +00:00
let person_mention_id = data . person_mention_id ;
let read_person_mention = blocking ( context . pool ( ) , move | conn | {
PersonMention ::read ( conn , person_mention_id )
2020-08-18 13:43:50 +00:00
} )
. await ? ? ;
2019-10-20 00:46:29 +00:00
2021-03-11 04:43:11 +00:00
if local_user_view . person . id ! = read_person_mention . recipient_id {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_comment " ) . into ( ) ) ;
2020-07-14 16:12:04 +00:00
}
2021-03-11 04:43:11 +00:00
let person_mention_id = read_person_mention . id ;
2020-07-20 14:56:40 +00:00
let read = data . read ;
2021-03-11 04:43:11 +00:00
let update_mention =
move | conn : & '_ _ | PersonMention ::update_read ( conn , person_mention_id , read ) ;
2020-08-18 13:43:50 +00:00
if blocking ( context . pool ( ) , update_mention ) . await ? . is_err ( ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_comment " ) . into ( ) ) ;
2020-07-01 12:54:29 +00:00
} ;
2019-10-20 00:46:29 +00:00
2021-03-11 04:43:11 +00:00
let person_mention_id = read_person_mention . id ;
let person_id = local_user_view . person . id ;
let person_mention_view = blocking ( context . pool ( ) , move | conn | {
PersonMentionView ::read ( conn , person_mention_id , Some ( person_id ) )
2020-07-01 12:54:29 +00:00
} )
. await ? ? ;
2019-10-20 00:46:29 +00:00
2021-03-11 04:43:11 +00:00
Ok ( PersonMentionResponse {
person_mention_view ,
} )
2019-10-20 00:46:29 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for MarkAllAsRead {
2020-04-20 03:59:07 +00:00
type Response = GetRepliesResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < GetRepliesResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & MarkAllAsRead = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2019-05-05 05:20:38 +00:00
2021-03-11 04:43:11 +00:00
let person_id = local_user_view . person . id ;
2020-08-18 13:43:50 +00:00
let replies = blocking ( context . pool ( ) , move | conn | {
2020-12-16 18:59:43 +00:00
CommentQueryBuilder ::create ( conn )
2021-03-11 04:43:11 +00:00
. my_person_id ( person_id )
. recipient_id ( person_id )
2020-07-01 12:54:29 +00:00
. unread_only ( true )
. page ( 1 )
. limit ( 999 )
. list ( )
} )
. await ? ? ;
2019-05-05 05:20:38 +00:00
2020-07-01 12:54:29 +00:00
// TODO: this should probably be a bulk operation
2020-07-21 01:37:44 +00:00
// Not easy to do as a bulk operation,
// because recipient_id isn't in the comment table
2020-12-15 19:39:18 +00:00
for comment_view in & replies {
let reply_id = comment_view . comment . id ;
2020-07-21 01:37:44 +00:00
let mark_as_read = move | conn : & '_ _ | Comment ::update_read ( conn , reply_id , true ) ;
2020-08-18 13:43:50 +00:00
if blocking ( context . pool ( ) , mark_as_read ) . await ? . is_err ( ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_comment " ) . into ( ) ) ;
2020-07-01 12:54:29 +00:00
}
2019-05-05 05:20:38 +00:00
}
2020-07-20 14:56:40 +00:00
// Mark all user mentions as read
2021-03-11 04:43:11 +00:00
let update_person_mentions =
move | conn : & '_ _ | PersonMention ::mark_all_as_read ( conn , person_id ) ;
if blocking ( context . pool ( ) , update_person_mentions )
2020-08-18 13:43:50 +00:00
. await ?
. is_err ( )
{
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_comment " ) . into ( ) ) ;
2019-10-20 00:46:29 +00:00
}
2019-05-05 05:20:38 +00:00
2020-07-20 04:29:44 +00:00
// Mark all private_messages as read
2021-03-11 04:43:11 +00:00
let update_pm = move | conn : & '_ _ | PrivateMessage ::mark_all_as_read ( conn , person_id ) ;
2020-08-18 13:43:50 +00:00
if blocking ( context . pool ( ) , update_pm ) . await ? . is_err ( ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_private_message " ) . into ( ) ) ;
2020-01-22 21:35:29 +00:00
}
2020-01-16 14:39:08 +00:00
Ok ( GetRepliesResponse { replies : vec ! [ ] } )
2019-05-05 05:20:38 +00:00
}
}
2019-10-15 22:09:01 +00:00
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for DeleteAccount {
2020-04-20 03:59:07 +00:00
type Response = LoginResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < LoginResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & DeleteAccount = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2019-10-18 04:25:23 +00:00
// Verify the password
2021-03-11 04:43:11 +00:00
let valid : bool = verify (
& data . password ,
& local_user_view . local_user . password_encrypted ,
)
. unwrap_or ( false ) ;
2019-10-18 04:25:23 +00:00
if ! valid {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " password_incorrect " ) . into ( ) ) ;
2019-10-18 04:25:23 +00:00
}
2019-10-15 22:09:01 +00:00
// Comments
2021-03-11 04:43:11 +00:00
let person_id = local_user_view . person . id ;
let permadelete = move | conn : & '_ _ | Comment ::permadelete_for_creator ( conn , person_id ) ;
2020-08-18 13:43:50 +00:00
if blocking ( context . pool ( ) , permadelete ) . await ? . is_err ( ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_comment " ) . into ( ) ) ;
2019-10-15 22:09:01 +00:00
}
// Posts
2021-03-11 04:43:11 +00:00
let permadelete = move | conn : & '_ _ | Post ::permadelete_for_creator ( conn , person_id ) ;
2020-08-18 13:43:50 +00:00
if blocking ( context . pool ( ) , permadelete ) . await ? . is_err ( ) {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_post " ) . into ( ) ) ;
2019-10-15 22:09:01 +00:00
}
2020-11-27 21:00:18 +00:00
blocking ( context . pool ( ) , move | conn | {
2021-03-11 04:43:11 +00:00
Person ::delete_account ( conn , person_id )
2020-11-27 21:00:18 +00:00
} )
. await ? ? ;
2019-10-15 22:09:01 +00:00
Ok ( LoginResponse {
jwt : data . auth . to_owned ( ) ,
} )
}
}
2019-10-30 03:35:39 +00:00
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for PasswordReset {
2020-04-20 03:59:07 +00:00
type Response = PasswordResetResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < PasswordResetResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & PasswordReset = & self ;
2019-10-30 03:35:39 +00:00
// Fetch that email
2020-07-01 12:54:29 +00:00
let email = data . email . clone ( ) ;
2021-03-11 04:43:11 +00:00
let local_user_view = match blocking ( context . pool ( ) , move | conn | {
LocalUserView ::find_by_email ( conn , & email )
2020-08-18 13:43:50 +00:00
} )
. await ?
{
2021-03-11 04:43:11 +00:00
Ok ( lu ) = > lu ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( " couldnt_find_that_username_or_email " ) . into ( ) ) ,
2019-10-30 03:35:39 +00:00
} ;
// Generate a random token
let token = generate_random_string ( ) ;
2019-11-02 06:43:21 +00:00
2019-10-30 03:35:39 +00:00
// Insert the row
2020-07-01 12:54:29 +00:00
let token2 = token . clone ( ) ;
2021-03-11 04:43:11 +00:00
let local_user_id = local_user_view . local_user . id ;
2020-08-18 13:43:50 +00:00
blocking ( context . pool ( ) , move | conn | {
2021-03-11 04:43:11 +00:00
PasswordResetRequest ::create_token ( conn , local_user_id , & token2 )
2020-07-01 12:54:29 +00:00
} )
. await ? ? ;
2019-10-30 03:35:39 +00:00
// Email the pure token to the user.
// TODO no i18n support here.
2021-03-11 04:43:11 +00:00
let email = & local_user_view . local_user . email . expect ( " email " ) ;
let subject = & format! ( " Password reset for {} " , local_user_view . person . name ) ;
2020-09-25 15:33:00 +00:00
let hostname = & Settings ::get ( ) . get_protocol_and_hostname ( ) ;
2021-03-11 04:43:11 +00:00
let html = & format! ( " <h1>Password Reset Request for {} </h1><br><a href= {} /password_change/ {} >Click here to reset your password</a> " , local_user_view . person . name , hostname , & token ) ;
match send_email ( subject , email , & local_user_view . person . name , html ) {
2019-10-30 03:35:39 +00:00
Ok ( _o ) = > _o ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( & _e ) . into ( ) ) ,
2019-10-30 03:35:39 +00:00
} ;
2020-01-16 14:39:08 +00:00
Ok ( PasswordResetResponse { } )
2019-10-30 03:35:39 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for PasswordChange {
2020-04-20 03:59:07 +00:00
type Response = LoginResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < LoginResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & PasswordChange = & self ;
2019-10-30 03:35:39 +00:00
// Fetch the user_id from the token
2020-07-01 12:54:29 +00:00
let token = data . token . clone ( ) ;
2021-03-11 04:43:11 +00:00
let local_user_id = blocking ( context . pool ( ) , move | conn | {
2021-02-26 13:49:58 +00:00
PasswordResetRequest ::read_from_token ( conn , & token ) . map ( | p | p . local_user_id )
2020-07-01 12:54:29 +00:00
} )
. await ? ? ;
2019-10-30 03:35:39 +00:00
2021-03-02 15:36:10 +00:00
password_length_check ( & data . password ) ? ;
2019-10-30 03:35:39 +00:00
// Make sure passwords match
2020-01-02 11:30:00 +00:00
if data . password ! = data . password_verify {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " passwords_dont_match " ) . into ( ) ) ;
2019-10-30 03:35:39 +00:00
}
// Update the user with the new password
2020-07-01 12:54:29 +00:00
let password = data . password . clone ( ) ;
2021-03-11 04:43:11 +00:00
let updated_local_user = match blocking ( context . pool ( ) , move | conn | {
LocalUser ::update_password ( conn , local_user_id , & password )
2020-07-01 12:54:29 +00:00
} )
. await ?
{
2021-03-11 04:43:11 +00:00
Ok ( u ) = > u ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( " couldnt_update_user " ) . into ( ) ) ,
2019-10-30 03:35:39 +00:00
} ;
// Return the jwt
Ok ( LoginResponse {
2021-03-18 20:25:21 +00:00
jwt : Claims ::jwt ( updated_local_user . id . 0 , Settings ::get ( ) . hostname ( ) ) ? ,
2019-10-30 03:35:39 +00:00
} )
}
}
2020-01-22 21:35:29 +00:00
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for CreatePrivateMessage {
2020-04-20 03:59:07 +00:00
type Response = PrivateMessageResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < PrivateMessageResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & CreatePrivateMessage = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2020-01-22 21:35:29 +00:00
let content_slurs_removed = remove_slurs ( & data . content . to_owned ( ) ) ;
let private_message_form = PrivateMessageForm {
2020-05-06 02:06:24 +00:00
content : content_slurs_removed . to_owned ( ) ,
2021-03-11 04:43:11 +00:00
creator_id : local_user_view . person . id ,
2020-01-22 21:35:29 +00:00
recipient_id : data . recipient_id ,
deleted : None ,
read : None ,
updated : None ,
2020-08-31 13:48:02 +00:00
ap_id : None ,
2020-05-06 02:06:24 +00:00
local : true ,
published : None ,
2020-01-22 21:35:29 +00:00
} ;
2020-08-18 13:43:50 +00:00
let inserted_private_message = match blocking ( context . pool ( ) , move | conn | {
2020-07-01 12:54:29 +00:00
PrivateMessage ::create ( conn , & private_message_form )
} )
. await ?
{
2020-01-22 21:35:29 +00:00
Ok ( private_message ) = > private_message ,
Err ( _e ) = > {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_create_private_message " ) . into ( ) ) ;
2020-01-22 21:35:29 +00:00
}
} ;
2020-07-01 12:54:29 +00:00
let inserted_private_message_id = inserted_private_message . id ;
2021-02-04 16:34:58 +00:00
let updated_private_message = match blocking (
context . pool ( ) ,
move | conn | -> Result < PrivateMessage , LemmyError > {
let apub_id = generate_apub_endpoint (
EndpointType ::PrivateMessage ,
& inserted_private_message_id . to_string ( ) ,
) ? ;
Ok ( PrivateMessage ::update_ap_id (
& conn ,
inserted_private_message_id ,
apub_id ,
) ? )
} ,
)
2020-07-01 12:54:29 +00:00
. await ?
{
Ok ( private_message ) = > private_message ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( " couldnt_create_private_message " ) . into ( ) ) ,
2020-07-01 12:54:29 +00:00
} ;
2020-05-06 02:06:24 +00:00
2021-03-11 04:43:11 +00:00
updated_private_message
. send_create ( & local_user_view . person , context )
. await ? ;
2020-05-06 02:06:24 +00:00
2021-03-11 04:43:11 +00:00
let private_message_view = blocking ( context . pool ( ) , move | conn | {
2020-07-01 12:54:29 +00:00
PrivateMessageView ::read ( conn , inserted_private_message . id )
} )
. await ? ? ;
2020-01-22 21:35:29 +00:00
2020-12-20 01:10:47 +00:00
let res = PrivateMessageResponse {
2021-03-11 04:43:11 +00:00
private_message_view ,
2020-12-20 01:10:47 +00:00
} ;
2020-04-19 22:08:25 +00:00
2021-03-12 20:18:03 +00:00
// Send notifications to the local recipient, if one exists
let recipient_id = data . recipient_id ;
if let Ok ( local_recipient ) = blocking ( context . pool ( ) , move | conn | {
LocalUserView ::read_person ( conn , recipient_id )
} )
. await ?
{
2021-03-18 14:52:25 +00:00
send_email_to_user (
& local_recipient ,
" Private Message from " ,
" Private Message " ,
& content_slurs_removed ,
) ;
2021-03-12 20:18:03 +00:00
let local_recipient_id = local_recipient . local_user . id ;
context . chat_server ( ) . do_send ( SendUserRoomMessage {
op : UserOperation ::CreatePrivateMessage ,
response : res . clone ( ) ,
local_recipient_id ,
websocket_id ,
} ) ;
}
2020-04-19 22:08:25 +00:00
Ok ( res )
2020-01-22 21:35:29 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for EditPrivateMessage {
2020-04-20 03:59:07 +00:00
type Response = PrivateMessageResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < PrivateMessageResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & EditPrivateMessage = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2020-01-22 21:35:29 +00:00
2020-07-20 04:29:44 +00:00
// Checking permissions
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2020-08-18 13:43:50 +00:00
let orig_private_message = blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessage ::read ( conn , private_message_id )
2020-08-18 13:43:50 +00:00
} )
. await ? ? ;
2021-03-11 04:43:11 +00:00
if local_user_view . person . id ! = orig_private_message . creator_id {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " no_private_message_edit_allowed " ) . into ( ) ) ;
2020-01-22 21:35:29 +00:00
}
2020-07-20 04:29:44 +00:00
// Doing the update
let content_slurs_removed = remove_slurs ( & data . content ) ;
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2020-08-18 13:43:50 +00:00
let updated_private_message = match blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessage ::update_content ( conn , private_message_id , & content_slurs_removed )
2020-07-20 04:29:44 +00:00
} )
. await ?
{
Ok ( private_message ) = > private_message ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( " couldnt_update_private_message " ) . into ( ) ) ,
2020-01-22 21:35:29 +00:00
} ;
2020-07-20 04:29:44 +00:00
// Send the apub update
2021-03-11 04:43:11 +00:00
updated_private_message
. send_update ( & local_user_view . person , context )
. await ? ;
2020-07-20 04:29:44 +00:00
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2021-03-11 04:43:11 +00:00
let private_message_view = blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessageView ::read ( conn , private_message_id )
2020-08-18 13:43:50 +00:00
} )
. await ? ? ;
2020-07-20 04:29:44 +00:00
2020-12-20 01:10:47 +00:00
let res = PrivateMessageResponse {
2021-03-11 04:43:11 +00:00
private_message_view ,
2020-12-20 01:10:47 +00:00
} ;
2020-07-20 04:29:44 +00:00
2021-03-12 20:18:03 +00:00
// Send notifications to the local recipient, if one exists
let recipient_id = orig_private_message . recipient_id ;
if let Ok ( local_recipient ) = blocking ( context . pool ( ) , move | conn | {
LocalUserView ::read_person ( conn , recipient_id )
} )
. await ?
{
let local_recipient_id = local_recipient . local_user . id ;
context . chat_server ( ) . do_send ( SendUserRoomMessage {
op : UserOperation ::EditPrivateMessage ,
response : res . clone ( ) ,
local_recipient_id ,
websocket_id ,
} ) ;
}
2020-07-20 04:29:44 +00:00
Ok ( res )
}
}
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for DeletePrivateMessage {
2020-07-20 04:29:44 +00:00
type Response = PrivateMessageResponse ;
async fn perform (
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
websocket_id : Option < ConnectionId > ,
2020-07-20 04:29:44 +00:00
) -> Result < PrivateMessageResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & DeletePrivateMessage = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2020-07-20 04:29:44 +00:00
// Checking permissions
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2020-08-18 13:43:50 +00:00
let orig_private_message = blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessage ::read ( conn , private_message_id )
2020-08-18 13:43:50 +00:00
} )
. await ? ? ;
2021-03-11 04:43:11 +00:00
if local_user_view . person . id ! = orig_private_message . creator_id {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " no_private_message_edit_allowed " ) . into ( ) ) ;
2020-07-20 04:29:44 +00:00
}
// Doing the update
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2020-07-20 04:29:44 +00:00
let deleted = data . deleted ;
2020-08-18 13:43:50 +00:00
let updated_private_message = match blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessage ::update_deleted ( conn , private_message_id , deleted )
2020-07-01 12:54:29 +00:00
} )
. await ?
{
Ok ( private_message ) = > private_message ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( " couldnt_update_private_message " ) . into ( ) ) ,
2020-07-01 12:54:29 +00:00
} ;
2020-01-22 21:35:29 +00:00
2020-07-20 04:29:44 +00:00
// Send the apub update
if data . deleted {
2021-03-11 04:43:11 +00:00
updated_private_message
. send_delete ( & local_user_view . person , context )
. await ? ;
2020-05-06 02:06:24 +00:00
} else {
2020-07-01 12:54:29 +00:00
updated_private_message
2021-03-11 04:43:11 +00:00
. send_undo_delete ( & local_user_view . person , context )
2020-07-01 12:54:29 +00:00
. await ? ;
2020-05-06 02:06:24 +00:00
}
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2021-03-11 04:43:11 +00:00
let private_message_view = blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessageView ::read ( conn , private_message_id )
2020-08-18 13:43:50 +00:00
} )
. await ? ? ;
2020-01-22 21:35:29 +00:00
2020-12-20 01:10:47 +00:00
let res = PrivateMessageResponse {
2021-03-11 04:43:11 +00:00
private_message_view ,
2020-12-20 01:10:47 +00:00
} ;
2020-05-06 02:06:24 +00:00
2021-03-12 20:18:03 +00:00
// Send notifications to the local recipient, if one exists
let recipient_id = orig_private_message . recipient_id ;
if let Ok ( local_recipient ) = blocking ( context . pool ( ) , move | conn | {
LocalUserView ::read_person ( conn , recipient_id )
} )
. await ?
{
let local_recipient_id = local_recipient . local_user . id ;
context . chat_server ( ) . do_send ( SendUserRoomMessage {
op : UserOperation ::DeletePrivateMessage ,
response : res . clone ( ) ,
local_recipient_id ,
websocket_id ,
} ) ;
}
2020-07-20 04:29:44 +00:00
Ok ( res )
}
}
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for MarkPrivateMessageAsRead {
2020-07-20 04:29:44 +00:00
type Response = PrivateMessageResponse ;
async fn perform (
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
websocket_id : Option < ConnectionId > ,
2020-07-20 04:29:44 +00:00
) -> Result < PrivateMessageResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & MarkPrivateMessageAsRead = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2020-07-20 04:29:44 +00:00
// Checking permissions
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2020-08-18 13:43:50 +00:00
let orig_private_message = blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessage ::read ( conn , private_message_id )
2020-08-18 13:43:50 +00:00
} )
. await ? ? ;
2021-03-11 04:43:11 +00:00
if local_user_view . person . id ! = orig_private_message . recipient_id {
2021-02-22 18:04:32 +00:00
return Err ( ApiError ::err ( " couldnt_update_private_message " ) . into ( ) ) ;
2020-07-20 04:29:44 +00:00
}
// Doing the update
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2020-07-20 04:29:44 +00:00
let read = data . read ;
2020-08-18 13:43:50 +00:00
match blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessage ::update_read ( conn , private_message_id , read )
2020-07-20 04:29:44 +00:00
} )
. await ?
{
Ok ( private_message ) = > private_message ,
2021-02-22 18:04:32 +00:00
Err ( _e ) = > return Err ( ApiError ::err ( " couldnt_update_private_message " ) . into ( ) ) ,
2020-07-20 04:29:44 +00:00
} ;
// No need to send an apub update
2021-01-18 21:57:31 +00:00
let private_message_id = data . private_message_id ;
2021-03-11 04:43:11 +00:00
let private_message_view = blocking ( context . pool ( ) , move | conn | {
2021-01-18 21:57:31 +00:00
PrivateMessageView ::read ( conn , private_message_id )
2020-08-18 13:43:50 +00:00
} )
. await ? ? ;
2020-07-20 04:29:44 +00:00
2020-12-20 01:10:47 +00:00
let res = PrivateMessageResponse {
2021-03-11 04:43:11 +00:00
private_message_view ,
2020-12-20 01:10:47 +00:00
} ;
2020-07-20 04:29:44 +00:00
2021-03-12 20:18:03 +00:00
// Send notifications to the local recipient, if one exists
let recipient_id = orig_private_message . recipient_id ;
if let Ok ( local_recipient ) = blocking ( context . pool ( ) , move | conn | {
LocalUserView ::read_person ( conn , recipient_id )
} )
. await ?
{
let local_recipient_id = local_recipient . local_user . id ;
context . chat_server ( ) . do_send ( SendUserRoomMessage {
op : UserOperation ::MarkPrivateMessageAsRead ,
response : res . clone ( ) ,
local_recipient_id ,
websocket_id ,
} ) ;
}
2020-05-06 02:06:24 +00:00
Ok ( res )
2020-01-22 21:35:29 +00:00
}
}
2020-07-01 12:54:29 +00:00
#[ async_trait::async_trait(?Send) ]
2020-08-12 11:31:45 +00:00
impl Perform for GetPrivateMessages {
2020-04-20 03:59:07 +00:00
type Response = PrivateMessagesResponse ;
2020-07-01 12:54:29 +00:00
async fn perform (
2020-04-19 22:08:25 +00:00
& self ,
2020-08-18 13:43:50 +00:00
context : & Data < LemmyContext > ,
2020-08-24 11:58:24 +00:00
_websocket_id : Option < ConnectionId > ,
2020-07-01 12:54:29 +00:00
) -> Result < PrivateMessagesResponse , LemmyError > {
2020-08-12 11:31:45 +00:00
let data : & GetPrivateMessages = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
let person_id = local_user_view . person . id ;
2020-01-22 21:35:29 +00:00
2020-07-01 12:54:29 +00:00
let page = data . page ;
let limit = data . limit ;
let unread_only = data . unread_only ;
2020-08-18 13:43:50 +00:00
let messages = blocking ( context . pool ( ) , move | conn | {
2021-03-11 04:43:11 +00:00
PrivateMessageQueryBuilder ::create ( & conn , person_id )
2020-07-01 12:54:29 +00:00
. page ( page )
. limit ( limit )
. unread_only ( unread_only )
. list ( )
} )
. await ? ? ;
2020-01-22 21:35:29 +00:00
2020-12-20 01:10:47 +00:00
Ok ( PrivateMessagesResponse {
private_messages : messages ,
} )
2020-01-22 21:35:29 +00:00
}
}
2020-02-01 01:02:20 +00:00
2020-10-25 02:59:13 +00:00
#[ async_trait::async_trait(?Send) ]
impl Perform for GetReportCount {
type Response = GetReportCountResponse ;
async fn perform (
& self ,
context : & Data < LemmyContext > ,
websocket_id : Option < ConnectionId > ,
) -> Result < GetReportCountResponse , LemmyError > {
let data : & GetReportCount = & self ;
2021-03-11 04:43:11 +00:00
let local_user_view = get_local_user_view_from_jwt ( & data . auth , context . pool ( ) ) . await ? ;
2020-10-25 02:59:13 +00:00
2021-03-11 04:43:11 +00:00
let person_id = local_user_view . person . id ;
2020-10-25 02:59:13 +00:00
let community_id = data . community ;
2020-11-04 02:15:11 +00:00
let community_ids =
2021-03-11 04:43:11 +00:00
collect_moderated_communities ( person_id , community_id , context . pool ( ) ) . await ? ;
2020-10-25 02:59:13 +00:00
let res = {
if community_ids . is_empty ( ) {
GetReportCountResponse {
community : None ,
comment_reports : 0 ,
post_reports : 0 ,
}
} else {
let ids = community_ids . clone ( ) ;
2020-11-04 02:15:11 +00:00
let comment_reports = blocking ( context . pool ( ) , move | conn | {
CommentReportView ::get_report_count ( conn , & ids )
} )
. await ? ? ;
2020-10-25 02:59:13 +00:00
let ids = community_ids . clone ( ) ;
2020-11-04 02:15:11 +00:00
let post_reports = blocking ( context . pool ( ) , move | conn | {
PostReportView ::get_report_count ( conn , & ids )
} )
. await ? ? ;
2020-10-25 02:59:13 +00:00
GetReportCountResponse {
community : data . community ,
comment_reports ,
post_reports ,
}
}
} ;
context . chat_server ( ) . do_send ( SendUserRoomMessage {
op : UserOperation ::GetReportCount ,
response : res . clone ( ) ,
2021-03-18 20:25:21 +00:00
local_recipient_id : local_user_view . local_user . id ,
2020-10-25 02:59:13 +00:00
websocket_id ,
} ) ;
Ok ( res )
}
}