]> Untitled Git - lemmy.git/blob - crates/api_crud/src/user/create.rs
2bfd48ef0c74c2c7aa7bfa8c65b8e973d80d0a9a
[lemmy.git] / crates / api_crud / src / user / create.rs
1 use crate::PerformCrud;
2 use activitypub_federation::http_signatures::generate_actor_keypair;
3 use actix_web::web::Data;
4 use lemmy_api_common::{
5   context::LemmyContext,
6   person::{LoginResponse, Register},
7   utils::{
8     generate_inbox_url,
9     generate_local_apub_endpoint,
10     generate_shared_inbox_url,
11     honeypot_check,
12     local_site_to_slur_regex,
13     password_length_check,
14     send_new_applicant_email_to_admins,
15     send_verification_email,
16     EndpointType,
17   },
18 };
19 use lemmy_db_schema::{
20   aggregates::structs::PersonAggregates,
21   source::{
22     captcha_answer::{CaptchaAnswer, CheckCaptchaAnswer},
23     local_user::{LocalUser, LocalUserInsertForm},
24     person::{Person, PersonInsertForm},
25     registration_application::{RegistrationApplication, RegistrationApplicationInsertForm},
26   },
27   traits::Crud,
28   RegistrationMode,
29 };
30 use lemmy_db_views::structs::{LocalUserView, SiteView};
31 use lemmy_utils::{
32   claims::Claims,
33   error::{LemmyError, LemmyErrorExt, LemmyErrorType},
34   utils::{
35     slurs::{check_slurs, check_slurs_opt},
36     validation::is_valid_actor_name,
37   },
38 };
39
40 #[async_trait::async_trait(?Send)]
41 impl PerformCrud for Register {
42   type Response = LoginResponse;
43
44   #[tracing::instrument(skip(self, context))]
45   async fn perform(&self, context: &Data<LemmyContext>) -> Result<LoginResponse, LemmyError> {
46     let data: &Register = self;
47
48     let site_view = SiteView::read_local(context.pool()).await?;
49     let local_site = site_view.local_site;
50     let require_registration_application =
51       local_site.registration_mode == RegistrationMode::RequireApplication;
52
53     if local_site.registration_mode == RegistrationMode::Closed {
54       return Err(LemmyErrorType::RegistrationClosed)?;
55     }
56
57     password_length_check(&data.password)?;
58     honeypot_check(&data.honeypot)?;
59
60     if local_site.require_email_verification && data.email.is_none() {
61       return Err(LemmyErrorType::EmailRequired)?;
62     }
63
64     if local_site.site_setup && require_registration_application && data.answer.is_none() {
65       return Err(LemmyErrorType::RegistrationApplicationAnswerRequired)?;
66     }
67
68     // Make sure passwords match
69     if data.password != data.password_verify {
70       return Err(LemmyErrorType::PasswordsDoNotMatch)?;
71     }
72
73     if local_site.site_setup && local_site.captcha_enabled {
74       if let Some(captcha_uuid) = &data.captcha_uuid {
75         let uuid = uuid::Uuid::parse_str(captcha_uuid)?;
76         let check = CaptchaAnswer::check_captcha(
77           context.pool(),
78           CheckCaptchaAnswer {
79             uuid,
80             answer: data.captcha_answer.clone().unwrap_or_default(),
81           },
82         )
83         .await?;
84         if !check {
85           return Err(LemmyErrorType::CaptchaIncorrect)?;
86         }
87       } else {
88         return Err(LemmyErrorType::CaptchaIncorrect)?;
89       }
90     }
91
92     let slur_regex = local_site_to_slur_regex(&local_site);
93     check_slurs(&data.username, &slur_regex)?;
94     check_slurs_opt(&data.answer, &slur_regex)?;
95
96     let actor_keypair = generate_actor_keypair()?;
97     is_valid_actor_name(&data.username, local_site.actor_name_max_length as usize)?;
98     let actor_id = generate_local_apub_endpoint(
99       EndpointType::Person,
100       &data.username,
101       &context.settings().get_protocol_and_hostname(),
102     )?;
103
104     if let Some(email) = &data.email {
105       if LocalUser::is_email_taken(context.pool(), email).await? {
106         return Err(LemmyErrorType::EmailAlreadyExists)?;
107       }
108     }
109
110     // We have to create both a person, and local_user
111
112     // Register the new person
113     let person_form = PersonInsertForm::builder()
114       .name(data.username.clone())
115       .actor_id(Some(actor_id.clone()))
116       .private_key(Some(actor_keypair.private_key))
117       .public_key(actor_keypair.public_key)
118       .inbox_url(Some(generate_inbox_url(&actor_id)?))
119       .shared_inbox_url(Some(generate_shared_inbox_url(&actor_id)?))
120       // If its the initial site setup, they are an admin
121       .admin(Some(!local_site.site_setup))
122       .instance_id(site_view.site.instance_id)
123       .build();
124
125     // insert the person
126     let inserted_person = Person::create(context.pool(), &person_form)
127       .await
128       .with_lemmy_type(LemmyErrorType::UserAlreadyExists)?;
129
130     // Automatically set their application as accepted, if they created this with open registration.
131     // Also fixes a bug which allows users to log in when registrations are changed to closed.
132     let accepted_application = Some(!require_registration_application);
133
134     // Create the local user
135     let local_user_form = LocalUserInsertForm::builder()
136       .person_id(inserted_person.id)
137       .email(data.email.as_deref().map(str::to_lowercase))
138       .password_encrypted(data.password.to_string())
139       .show_nsfw(Some(data.show_nsfw))
140       .accepted_application(accepted_application)
141       .build();
142
143     let inserted_local_user = LocalUser::create(context.pool(), &local_user_form).await?;
144
145     if local_site.site_setup && require_registration_application {
146       // Create the registration application
147       let form = RegistrationApplicationInsertForm {
148         local_user_id: inserted_local_user.id,
149         // We already made sure answer was not null above
150         answer: data.answer.clone().expect("must have an answer"),
151       };
152
153       RegistrationApplication::create(context.pool(), &form).await?;
154     }
155
156     // Email the admins
157     if local_site.application_email_admins {
158       send_new_applicant_email_to_admins(&data.username, context.pool(), context.settings())
159         .await?;
160     }
161
162     let mut login_response = LoginResponse {
163       jwt: None,
164       registration_created: false,
165       verify_email_sent: false,
166     };
167
168     // Log the user in directly if the site is not setup, or email verification and application aren't required
169     if !local_site.site_setup
170       || (!require_registration_application && !local_site.require_email_verification)
171     {
172       login_response.jwt = Some(
173         Claims::jwt(
174           inserted_local_user.id.0,
175           &context.secret().jwt_secret,
176           &context.settings().hostname,
177         )?
178         .into(),
179       );
180     } else {
181       if local_site.require_email_verification {
182         let local_user_view = LocalUserView {
183           local_user: inserted_local_user,
184           person: inserted_person,
185           counts: PersonAggregates::default(),
186         };
187         // we check at the beginning of this method that email is set
188         let email = local_user_view
189           .local_user
190           .email
191           .clone()
192           .expect("email was provided");
193
194         send_verification_email(&local_user_view, &email, context.pool(), context.settings())
195           .await?;
196         login_response.verify_email_sent = true;
197       }
198
199       if require_registration_application {
200         login_response.registration_created = true;
201       }
202     }
203
204     Ok(login_response)
205   }
206 }