Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct error messages if user registers with taken user/email #3093

Merged
merged 3 commits into from
Jun 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 7 additions & 17 deletions crates/api_crud/src/user/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,12 @@ impl PerformCrud for Register {
&context.settings().get_protocol_and_hostname(),
)?;

if let Some(email) = &data.email {
if LocalUser::is_email_taken(context.pool(), email).await? {
return Err(LemmyError::from_message("email_already_exists"));
}
}

// We have to create both a person, and local_user

// Register the new person
Expand Down Expand Up @@ -116,23 +122,7 @@ impl PerformCrud for Register {
.accepted_application(accepted_application)
.build();

let inserted_local_user = match LocalUser::create(context.pool(), &local_user_form).await {
Ok(lu) => lu,
Err(e) => {
let err_type = if e.to_string()
== "duplicate key value violates unique constraint \"local_user_email_key\""
{
"email_already_exists"
} else {
"user_already_exists"
};

// If the local user creation errored, then delete that person
Person::delete(context.pool(), inserted_person.id).await?;

return Err(LemmyError::from_error_message(e, err_type));
}
};
let inserted_local_user = LocalUser::create(context.pool(), &local_user_form).await?;

if local_site.site_setup && require_registration_application {
// Create the registration application
Expand Down
2 changes: 1 addition & 1 deletion crates/apub/src/objects/person.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ impl Object for ApubPerson {
matrix_user_id: person.matrix_user_id,
instance_id,
};
let person = DbPerson::create(context.pool(), &person_form).await?;
let person = DbPerson::upsert(context.pool(), &person_form).await?;

Ok(person.into())
}
Expand Down
12 changes: 10 additions & 2 deletions crates/db_schema/src/impls/local_user.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use crate::{
newtypes::LocalUserId,
schema::local_user::dsl::{
accepted_application,
email,
email_verified,
local_user,
password_encrypted,
Expand Down Expand Up @@ -53,6 +54,14 @@ impl LocalUser {
.get_results::<Self>(conn)
.await
}

pub async fn is_email_taken(pool: &DbPool, email_: &str) -> Result<bool, Error> {
use diesel::dsl::{exists, select};
let conn = &mut get_conn(pool).await?;
select(exists(local_user.filter(email.eq(email_))))
.get_result(conn)
.await
}
}

#[async_trait]
Expand Down Expand Up @@ -80,8 +89,7 @@ impl Crud for LocalUser {
let local_user_ = insert_into(local_user)
.values(form_with_encrypted_password)
.get_result::<Self>(conn)
.await
.expect("couldnt create local user");
.await?;

let site_languages = SiteLanguage::read_local_raw(pool).await;
if let Ok(langs) = site_languages {
Expand Down
16 changes: 13 additions & 3 deletions crates/db_schema/src/impls/person.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,6 @@ impl Crud for Person {
let conn = &mut get_conn(pool).await?;
insert_into(person::table)
.values(form)
.on_conflict(person::actor_id)
.do_update()
.set(form)
.get_result::<Self>(conn)
.await
}
Expand All @@ -57,6 +54,19 @@ impl Crud for Person {
}

impl Person {
/// Update or insert the person.
///
/// This is necessary for federation, because Activitypub doesnt distinguish between these actions.
pub async fn upsert(pool: &DbPool, form: &PersonInsertForm) -> Result<Self, Error> {
let conn = &mut get_conn(pool).await?;
insert_into(person::table)
.values(form)
.on_conflict(person::actor_id)
.do_update()
.set(form)
.get_result::<Self>(conn)
.await
}
pub async fn delete_account(pool: &DbPool, person_id: PersonId) -> Result<Person, Error> {
let conn = &mut get_conn(pool).await?;

Expand Down