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
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/// A Person is the primary object defined and managed by Sitter. It could
/// also be referred to as the User.
use serde::{Deserialize, Serialize};
use uuid::Uuid;

use anyhow::Result;
use sqlx::postgres::PgRow;
use sqlx::{Done, FromRow, PgPool, Row};

#[derive(Serialize, FromRow, Debug)]
pub struct Person {
    pub id: Uuid,
    pub name: String,
    pub email: String,
    pub pass: String,
}

#[allow(unused_variables)]
pub trait PersonHook {
    /// Validate the PersonRequest.
    fn validate(&self, person: &PersonRequest, action: &str) -> Result<()>;
    /// Do any necessary preprocessing to the PersonRequest.
    fn prepare(&self, person: &mut PersonRequest, action: &str) -> Result<()>;
    /// Do any necessary preprocessing to the Id (Read and Delete).
    fn prepare_id(&self, id: &mut Uuid, action: &str) -> Result<()>;
    /// Do any necessary postprocessing to the Person.
    fn processed(&self, person: &mut Person, action: &str) -> Result<()>;
}

pub struct PersonHooks {
    hooks: Vec<Box<dyn PersonHook + Send>>,
}
impl PersonHooks {
    pub fn initialize() -> Self {
        Self { hooks: Vec::new() }
    }

    pub fn register_hook<H: PersonHook + 'static + Send>(&mut self, hook: H) {
        self.hooks.push(Box::new(hook));
    }
}

#[derive(Deserialize, Serialize, Debug)]
pub struct PersonRequest {
    pub name: String,
    pub email: String,
    pub pass: String,
}

impl Person {
    /// Add a Person object to the database.
    pub async fn create(
        person_request: PersonRequest,
        db: &PgPool,
        hooks: &PersonHooks,
    ) -> Result<Person> {
        let action = "create";

        // Invoke hook_validate().
        for hook in &hooks.hooks {
            hook.validate(&person_request, action)?;
        }

        // Invoke hook_prepare().
        let mut request = person_request;
        for hook in &hooks.hooks {
            hook.prepare(&mut request, action)?;
        }

        let mut transaction = db.begin().await?;
        let mut person = sqlx::query("INSERT INTO person (name, email, pass) VALUES ($1, $2, $3) RETURNING id, name, email, pass")
            .bind(&request.name)
            .bind(&request.email)
            .bind(&request.pass)
            .map(|row: PgRow| {
                Person {
                    id: row.get(0),
                    name: row.get(1),
                    email: row.get(2),
                    pass: row.get(3)
                }
            })
            .fetch_one(&mut transaction)
            .await?;
        transaction.commit().await?;

        // Invoke hook_processed().
        for hook in &hooks.hooks {
            hook.processed(&mut person, action)?;
        }

        Ok(person)
    }

    /// List one or more Person objects from the database.
    pub async fn read(uuid: Option<Uuid>, db: &PgPool, hooks: &PersonHooks) -> Result<Vec<Person>> {
        let action = "read";

        if let Some(mut id) = uuid {
            // Invoke hook_prepare_id().
            for hook in &hooks.hooks {
                hook.prepare_id(&mut id, action)?;
            }
        }

        let records = if let Some(id) = uuid {
            sqlx::query(
                r#"
                    SELECT id, name, email, pass
                    FROM person
                    WHERE id = $1
                "#,
            )
            .bind(id)
            .map(|row: PgRow| Person {
                id: row.get(0),
                name: row.get(1),
                email: row.get(2),
                pass: row.get(3),
            })
            .fetch_all(db)
            .await?
        } else {
            sqlx::query(
                r#"
                    SELECT id, name, email, pass
                    FROM person
                "#,
            )
            .map(|row: PgRow| Person {
                id: row.get(0),
                name: row.get(1),
                email: row.get(2),
                pass: row.get(3),
            })
            .fetch_all(db)
            .await?
        };

        let mut persons = vec![];
        for record in records {
            persons.push(Person {
                id: record.id,
                name: record.name,
                email: record.email,
                pass: record.pass,
            });
        }

        Ok(persons)
    }

    pub async fn update(
        id: Uuid,
        person_request: PersonRequest,
        db: &PgPool,
        hooks: &PersonHooks,
    ) -> Result<Person> {
        let action = "update";
        // @TODO: Properly register and invoke hook_validate().
        // Invoke hook_validate().
        for hook in &hooks.hooks {
            hook.validate(&person_request, action)?;
        }

        // Invoke hook_prepare().
        let mut request = person_request;
        if !request.pass.is_empty() {
            for hook in &hooks.hooks {
                hook.prepare(&mut request, action)?;
            }
        }

        let mut transaction = db.begin().await.unwrap();
        let mut person = sqlx::query(
            r#"
                UPDATE person SET name = $1, email = $2
                WHERE id = $3
                RETURNING id, name, email, pass
            "#,
        )
        .bind(&request.name)
        .bind(&request.email)
        .bind(id)
        .map(|row: PgRow| Person {
            id: row.get(0),
            name: row.get(1),
            email: row.get(2),
            pass: row.get(3),
        })
        .fetch_one(&mut transaction)
        .await?;
        transaction.commit().await.unwrap();

        // Invoke hook_processed().
        for hook in &hooks.hooks {
            hook.processed(&mut person, action)?;
        }

        Ok(person)
    }

    pub async fn delete(mut id: Uuid, db: &PgPool, hooks: &PersonHooks) -> Result<u64> {
        let action = "delete";

        // Invoke hook_prepare_id().
        for hook in &hooks.hooks {
            hook.prepare_id(&mut id, action)?;
        }

        let mut transaction = db.begin().await?;
        let deleted = sqlx::query("DELETE FROM person WHERE id = $1")
            .bind(id)
            .execute(&mut transaction)
            .await?
            .rows_affected();

        transaction.commit().await?;

        // @TODO: Load person from db before deleting it, for logging?
        // Invoke hook_processed().
        //for hook in &hooks.hooks {
        //    hook.processed(&mut person, "deleted")?;
        //}

        Ok(deleted)
    }
}