1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
use lightspeed_core::error::{ErrorDetails, LightSpeedError};
use lightspeed_core::model::language::Language;
use lightspeed_core::service::validator::boolean::validate_is_true;
use lightspeed_core::service::validator::email::validate_email;
use lightspeed_core::service::validator::must_match::validate_must_be_equals;
use lightspeed_core::service::validator::Validable;
use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use typescript_definitions::TypeScriptify;

#[derive(Clone, Serialize, Deserialize, TypeScriptify)]
#[serde(rename_all = "camelCase")]
pub struct CreateLoginDto {
    pub username: Option<String>,
    pub email: String,
    pub password: String,
    pub password_confirm: String,
    pub language: Language,
    pub data: HashMap<String, String>,
    pub accept_privacy_policy: bool,
}

impl Validable for CreateLoginDto {
    fn validate(&self, error_details: &mut ErrorDetails) -> Result<(), LightSpeedError> {
        validate_must_be_equals(
            error_details,
            "password",
            &self.password,
            "password_confirm",
            &self.password_confirm,
        );
        validate_is_true(
            error_details,
            "accept_privacy_policy",
            self.accept_privacy_policy,
        );
        validate_email(error_details, "email", &self.email);
        Ok(())
    }
}

#[derive(Clone)]
pub struct AuthAccountCreatedEvent {
    pub user_id: i64,
    pub data: HashMap<String, String>,
    pub accept_privacy_policy: bool,
    pub language: Language,
}