cas/graphql/types/
user.rs

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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
use crate::{errors::AppError, state::AppState};
use async_graphql::{Context, Error, FieldResult, InputObject, Object};
use serde::{Deserialize, Serialize};
use tokio_postgres::Client;

use super::jwt::Authentication;

#[derive(Clone, Debug, Serialize, Deserialize)]
/// User struct
pub struct User {
    pub id: i32,
    pub email: String,
    pub password: String,
    pub name: Option<String>,
    pub address: Option<String>,
    pub notification_token: Option<String>,
    pub is_admin: bool,
}

#[Object]
impl User {
    async fn id(&self) -> i32 {
        self.id
    }

    async fn email(&self) -> String {
        self.email.clone()
    }

    async fn password(&self) -> String {
        String::from("******")
    }

    async fn name(&self) -> String {
        self.name.clone().unwrap_or_default()
    }

    async fn address(&self) -> String {
        self.address.clone().unwrap_or_default()
    }

    async fn notification_token(&self) -> String {
        String::from("******")
    }

    async fn is_admin(&self) -> bool {
        self.is_admin
    }
}

#[derive(InputObject, Debug)]
pub struct RegisterNotificationToken {
    pub token: String,
}

#[derive(InputObject, Debug)]
pub struct UserEdit {
    pub email: String,
    pub name: Option<String>,
    pub address: Option<String>,
}

#[derive(InputObject, Debug)]
pub struct UserPasswordEdit {
    pub password1: String,
    pub password2: String,
}

/// Find an user with id = `id` using the PostgreSQL `client`
pub async fn find_user(client: &Client, id: i32) -> Result<User, AppError> {
    let rows = client
        .query(
            "SELECT id, email, name, address, is_admin FROM users WHERE id = $1",
            &[&id],
        )
        .await
        .unwrap();

    let users: Vec<User> = rows
        .iter()
        .map(|row| User {
            id: row.get("id"),
            email: row.get("email"),
            password: String::new(),
            name: row.get("name"),
            address: row.get("address"),
            notification_token: None,
            is_admin: row.get("is_admin"),
        })
        .collect();

    if users.len() == 1 {
        Ok(users[0].clone())
    } else {
        Err(AppError::NotFound("User".to_string()))
    }
}

pub mod query {
    use super::*;

    /// Get users from the database
    pub async fn get_users<'ctx>(
        ctx: &Context<'ctx>,

        // Optional limit results
        limit: Option<i64>,
        // Optional offset results. It should be used with limit field.
        offset: Option<i64>,
    ) -> Result<Option<Vec<User>>, AppError> {
        let state = ctx.data::<AppState>().expect("Can't connect to db");
        let client = &*state.client;
        let auth: &Authentication = ctx.data()?;
        match auth {
            Authentication::NotLogged => Err(AppError::Unauthorized),
            Authentication::Logged(claims) => {
                let claim_user = find_user(client, claims.user_id)
                    .await
                    .expect("Should not be here");

                if !claim_user.is_admin {
                    return Err(AppError::Unauthorized);
                }

                let rows = client
                    .query(
                        "SELECT id, email, name, address, is_admin FROM users LIMIT $1 OFFSET $2",
                        &[&limit.unwrap_or(20), &offset.unwrap_or(0)],
                    )
                    .await?;

                let users: Vec<User> = rows
                    .iter()
                    .map(|row| User {
                        id: row.get("id"),
                        email: row.get("email"),
                        password: String::new(),
                        name: row.get("name"),
                        address: row.get("address"),
                        notification_token: None,
                        is_admin: row.get("is_admin"),
                    })
                    .collect();

                Ok(Some(users))
            }
        }
    }

    /// Get users from the database
    pub async fn get_user_by_id<'ctx>(ctx: &Context<'ctx>, id: i32) -> Result<User, AppError> {
        let state = ctx.data::<AppState>().expect("Can't connect to db");
        let client = &*state.client;
        let auth: &Authentication = ctx.data()?;
        match auth {
            Authentication::NotLogged => Err(AppError::Unauthorized),
            Authentication::Logged(claims) => {
                let claim_user = find_user(client, claims.user_id)
                    .await
                    .expect("Should not be here");

                let rows;
                if claim_user.is_admin {
                    rows = client
                        .query(
                            "SELECT id, email, name, address, is_admin FROM users
                            WHERE id = $1",
                            &[&id],
                        )
                        .await?;
                } else if claims.user_id != id {
                    return Err(AppError::Unauthorized);
                } else {
                    rows = client
                        .query(
                            "SELECT id, email, name, address, is_admin FROM users
                            WHERE id = $1",
                            &[&claims.user_id],
                        )
                        .await?;
                }

                let users: Vec<User> = rows
                    .iter()
                    .map(|row| User {
                        id: row.get("id"),
                        email: row.get("email"),
                        password: String::new(),
                        name: row.get("name"),
                        address: row.get("address"),
                        notification_token: None,
                        is_admin: row.get("is_admin"),
                    })
                    .collect();

                if users.is_empty() {
                    return Err(AppError::NotFound("User".to_string()));
                }

                Ok(users[0].clone())
            }
        }
    }
}

pub mod mutations {
    use super::*;

    /// Register device mutation edits the `notification_token` value for a logged user
    pub async fn register_device<'ctx>(
        ctx: &Context<'ctx>,
        input: RegisterNotificationToken,
    ) -> FieldResult<User> {
        let state = ctx.data::<AppState>().expect("Can't connect to db");
        let client = &*state.client;

        let auth: &Authentication = ctx.data()?;
        match auth {
            Authentication::NotLogged => Err(Error::new("Can't find the owner")),
            Authentication::Logged(claims) => {
                let user = find_user(client, claims.user_id)
                    .await
                    .expect("Should not be here");

                client
                    .query(
                        "UPDATE users SET notification_token = $1 WHERE id = $2",
                        &[&input.token, &claims.user_id],
                    )
                    .await?;

                Ok(user)
            }
        }
    }

    /// Edit user info
    pub async fn user_edit<'ctx>(
        ctx: &Context<'ctx>,
        input: UserEdit,
        id: i32,
    ) -> FieldResult<User> {
        let state = ctx.data::<AppState>().expect("Can't connect to db");
        let client = &*state.client;

        let auth: &Authentication = ctx.data()?;
        match auth {
            Authentication::NotLogged => Err(Error::new("Can't find the owner")),
            Authentication::Logged(claims) => {
                let user = find_user(client, claims.user_id)
                    .await
                    .expect("should not be here");

                if find_user(client, id).await.is_err() {
                    return Err(Error::new("User not found"));
                }

                if !(user.is_admin || user.id == id) {
                    return Err(Error::new("Not found"));
                }

                client
                    .query(
                        "UPDATE users SET email = $1, name = $2, address = $3 WHERE id = $4",
                        &[&input.email, &input.name, &input.address, &id],
                    )
                    .await?;

                let user = find_user(client, claims.user_id)
                    .await
                    .expect("Should not be here");

                Ok(user)
            }
        }
    }

    /// Edit user password
    pub async fn user_password_edit<'ctx>(
        ctx: &Context<'ctx>,
        input: UserPasswordEdit,
    ) -> FieldResult<User> {
        let state = ctx.data::<AppState>().expect("Can't connect to db");
        let client = &*state.client;

        let auth: &Authentication = ctx.data()?;
        match auth {
            Authentication::NotLogged => Err(Error::new("Can't find the owner")),
            Authentication::Logged(claims) => {
                let user = find_user(client, claims.user_id)
                    .await
                    .expect("should not be here");

                if input.password1 != input.password2 {
                    return Err(Error::new("`password1` and `password2` must be equals"));
                }

                if input.password1.len() < 8 {
                    return Err(Error::new("`password1` length must be >= 8"));
                }

                let password = sha256::digest(input.password1);
                client
                    .query(
                        "UPDATE users SET password = $1 WHERE id = $2",
                        &[&password, &user.id],
                    )
                    .await?;

                Ok(user)
            }
        }
    }
}