mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-12 15:34:00 +00:00
Sanitize registration application answer
Signed-off-by: Apple Sheeple <AppleSheeple@github>
This commit is contained in:
parent
5fff7504e5
commit
c05458adcd
1 changed files with 4 additions and 1 deletions
|
@ -11,6 +11,7 @@ use lemmy_api_common::{
|
||||||
local_site_to_slur_regex,
|
local_site_to_slur_regex,
|
||||||
password_length_check,
|
password_length_check,
|
||||||
sanitize_html_api,
|
sanitize_html_api,
|
||||||
|
sanitize_html_api_opt,
|
||||||
send_new_applicant_email_to_admins,
|
send_new_applicant_email_to_admins,
|
||||||
send_verification_email,
|
send_verification_email,
|
||||||
EndpointType,
|
EndpointType,
|
||||||
|
@ -94,6 +95,8 @@ pub async fn register(
|
||||||
Err(LemmyErrorType::InvalidName)?;
|
Err(LemmyErrorType::InvalidName)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let answer = sanitize_html_api_opt(&data.answer);
|
||||||
|
|
||||||
let actor_keypair = generate_actor_keypair()?;
|
let actor_keypair = generate_actor_keypair()?;
|
||||||
is_valid_actor_name(&data.username, local_site.actor_name_max_length as usize)?;
|
is_valid_actor_name(&data.username, local_site.actor_name_max_length as usize)?;
|
||||||
let actor_id = generate_local_apub_endpoint(
|
let actor_id = generate_local_apub_endpoint(
|
||||||
|
@ -149,7 +152,7 @@ pub async fn register(
|
||||||
let form = RegistrationApplicationInsertForm {
|
let form = RegistrationApplicationInsertForm {
|
||||||
local_user_id: inserted_local_user.id,
|
local_user_id: inserted_local_user.id,
|
||||||
// We already made sure answer was not null above
|
// We already made sure answer was not null above
|
||||||
answer: data.answer.clone().expect("must have an answer"),
|
answer: answer.expect("must have an answer"),
|
||||||
};
|
};
|
||||||
|
|
||||||
RegistrationApplication::create(&mut context.pool(), &form).await?;
|
RegistrationApplication::create(&mut context.pool(), &form).await?;
|
||||||
|
|
Loading…
Reference in a new issue