eeg_certs/backend/src/model/person.rs

74 lines
1.7 KiB
Rust
Raw Normal View History

2023-09-03 00:42:43 +00:00
use serde::{Deserialize, Serialize};
2023-08-31 03:34:27 +00:00
use crate::db;
2023-08-25 16:52:03 +00:00
#[derive(Serialize, Clone)]
2023-08-25 16:52:03 +00:00
pub struct Person {
/// Internal id
2023-08-25 16:52:03 +00:00
pub person_id: i32,
/// Country-specific id. For now only supports Peru's DNI.
///
/// Example: `74185293`
2023-08-25 16:52:03 +00:00
pub person_dni: String,
/// Names
///
/// Example: `Juan Carlos`
2023-08-25 16:52:03 +00:00
pub person_names: String,
/// First surname
///
/// Example: `Perez`
2023-08-25 16:52:03 +00:00
pub person_paternal_surname: String,
/// Second surname
///
/// Example: `Gomez`
2023-08-25 16:52:03 +00:00
pub person_maternal_surname: String,
}
impl Person {
pub fn default() -> Person {
Person {
person_id: -1,
person_dni: "".to_string(),
person_names: "".to_string(),
person_paternal_surname: "".to_string(),
person_maternal_surname: "".to_string(),
}
}
2023-09-07 22:18:21 +00:00
pub async fn get_by_dni(dni: i32) -> Result<Person, sqlx::Error> {
let db = db();
let result = sqlx::query_as!(Person, "SELECT * FROM person WHERE person_dni = ?", dni)
.fetch_one(db)
.await?;
Ok(result)
}
}
2023-08-31 03:34:27 +00:00
#[derive(Deserialize)]
pub struct PersonCreate {
pub person_dni: String,
pub person_names: String,
pub person_paternal_surname: String,
pub person_maternal_surname: String,
}
impl PersonCreate {
pub async fn create(&self) -> Result<(), sqlx::Error> {
let db = db();
2023-09-03 00:42:43 +00:00
sqlx::query!(
"INSERT INTO person (person_dni, person_names, person_paternal_surname, person_maternal_surname) VALUES (?, ?, ?, ?)",
self.person_dni,
self.person_names,
self.person_paternal_surname,
self.person_maternal_surname
)
2023-08-31 03:34:27 +00:00
.execute(db)
.await?;
2023-09-03 00:42:43 +00:00
2023-08-31 03:34:27 +00:00
Ok(())
}
}