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
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
use crate::{
expo,
graphql::types::{
alert,
jwt::{self, Authentication},
notification, position,
user::{self, find_user},
},
state::AppState,
};
use async_graphql::{Context, Error, FieldResult, Object};
/// Mutation struct
pub struct Mutation;
#[Object]
impl Mutation {
/// Make GraphQL login
///
/// Example:
/// ```text
/// curl -X POST http://localhost:8000/graphql \
/// -H "Content-Type: application/json" \
/// -d '{
/// "query": "mutation Login($input: LoginCredentials!) { login(input: $input) { accessToken tokenType userId } }",
/// "variables": {
/// "input": {
/// "email": "***",
/// "password": "***"
/// }
/// }
/// }'
/// ```
async fn login<'ctx>(
&self,
ctx: &Context<'ctx>,
input: jwt::LoginCredentials,
) -> FieldResult<jwt::AuthBody> {
let state = ctx.data::<AppState>().expect("Can't connect to db");
let client = &*state.client;
let password = sha256::digest(input.password);
let rows = client
.query(
"SELECT id FROM users WHERE email = $1 AND password = $2",
&[&input.email, &password],
)
.await
.unwrap();
let id: Vec<i32> = rows.iter().map(|row| row.get(0)).collect();
if id.len() == 1 {
// Create a new claim using the found ID
let claims = jwt::Claims::new(id[0]);
let token = claims.get_token().unwrap();
Ok(jwt::AuthBody::new(token, id[0]))
} else {
Err(Error::new("Invalid email or password"))
}
}
/// Make GraphQL call to register a notification device token for the user.
///
/// Example:
/// ```text
/// curl -X POST http://localhost:8000/graphql \
/// -H "Content-Type: application/json" \
/// -d '{
/// "query": "mutation RegisterDevice($input: RegisterNotificationToken!) { registerDevice(input: $input) { id name email } }",
/// "variables": {
/// "input": {
/// "token": "***",
/// }
/// }
/// }'
/// ```
async fn register_device<'ctx>(
&self,
ctx: &Context<'ctx>,
input: user::RegisterNotificationToken,
) -> FieldResult<user::User> {
let state = ctx.data::<AppState>().expect("Can't connect to db");
let client = &*state.client;
let auth: &Authentication = ctx.data().unwrap();
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
.unwrap();
Ok(user)
}
}
}
/// Make GraphQL request to create new position to track
///
/// Example:
/// ```text
/// curl -X POST http://localhost:8000/graphql \
/// -H "Content-Type: application/json" \
/// -H "Authorization: Bearer ***" \
/// -d '{
/// "query": "mutation NewPosition($input: PositionInput!) { newPosition(input: $input) { id userId createdAt latitude longitude movingActivity } }",
/// "variables": {
/// "input": {
/// "latitude": 44.50800643571219,
/// "longitude": 11.299600981136905,
/// "movingActivity": "STILL"
/// }
/// }
/// }'
/// ```
async fn new_position<'ctx>(
&self,
ctx: &Context<'ctx>,
input: position::PositionInput,
) -> FieldResult<position::Position> {
let state = ctx.data::<AppState>().expect("Can't connect to db");
let client = &*state.client;
let auth: &Authentication = ctx.data().unwrap();
match auth {
Authentication::NotLogged => Err(Error::new("Can't find the owner")),
Authentication::Logged(claims) => {
let rows = client
.query(
"INSERT INTO positions (user_id, location, activity)
VALUES (
$1,
ST_SetSRID(ST_MakePoint($2, $3), 4326),
$4
)
RETURNING id, user_id, extract(epoch from created_at)::double precision as created_at, ST_Y(location::geometry) AS latitude, ST_X(location::geometry) AS longitude, activity
",
&[
&claims.user_id,
&input.longitude,
&input.latitude,
&input.moving_activity,
],
)
.await
.unwrap();
let positions: Vec<position::Position> = rows
.iter()
.map(|row| position::Position {
id: row.get("id"),
user_id: row.get("user_id"),
created_at: row.get::<_, f64>("created_at") as i64,
latitude: row.get("latitude"),
longitude: row.get("longitude"),
moving_activity: row.get("activity"),
})
.collect();
Ok(positions[0].clone())
}
}
}
/// Make GraphQL request to create new alert. Only for admins.
///
/// Example:
/// ```text
/// curl -X POST http://localhost:8000/graphql \
/// -H "Content-Type: application/json" \
/// -H "Authorization: Bearer ****" \
/// -d '{
/// "query": "mutation NewAlert($input: AlertInput!) { newAlert(input: $input) { id createdAt level } }",
/// "variables": {
/// "input": {
/// "points": [
/// { "latitude": 44.490025, "longitude": 11.311499},
/// { "latitude": 44.490361, "longitude": 11.327903},
/// { "latitude": 44.497280, "longitude": 11.327776},
/// { "latitude": 44.498321, "longitude": 11.312145},
/// { "latitude": 44.490025, "longitude": 11.311498}
/// ],
/// "level": "TWO"
/// }
/// }
/// }
async fn new_alert<'ctx>(
&self,
ctx: &Context<'ctx>,
input: alert::AlertInput,
) -> FieldResult<alert::Alert> {
let state = ctx.data::<AppState>().expect("Can't connect to db");
let client = &*state.client;
let auth: &Authentication = ctx.data().unwrap();
match auth {
Authentication::NotLogged => Err(Error::new("Can't find the owner")),
Authentication::Logged(claims) => {
let claim_user = find_user(client, claims.user_id).await.unwrap();
if !claim_user.is_admin {
return Err(Error::new("Unauthorized"));
}
let points: String = input
.points
.iter()
.map(|x| {
format!(
"ST_SetSRID(ST_MakePoint({}, {}), 4326)",
x.longitude, x.latitude
)
})
.collect::<Vec<String>>()
.join(",");
let polygon = format!("ST_MakePolygon(ST_MakeLine(ARRAY[{}]))", points);
let valid_query = format!("SELECT ST_IsValid({}) as is_valid", polygon);
let rows = client.query(&valid_query, &[]).await.unwrap();
let is_valid: bool = rows[0].get("is_valid");
if !is_valid {
return Err(Error::new("Polygon is not valid"));
}
let insert_query = format!(
"INSERT INTO alerts (user_id, area, level)
VALUES($1, {}, $2)
RETURNING id, user_id, extract(epoch from created_at)::double precision as created_at, ST_AsText(area) as area,
ST_AsText(ST_Buffer(area::geography, CASE WHEN level = 'One' THEN 0 WHEN level = 'Two' THEN 1000 WHEN level = 'Three' THEN 2000 ELSE 0 END)) as extended_area, level, reached_users",
polygon
);
let rows = client
.query(&insert_query, &[&claims.user_id, &input.level])
.await
.unwrap();
let mut alert = rows
.iter()
.map(|row| alert::Alert {
id: row.get("id"),
user_id: row.get("user_id"),
created_at: row.get::<_, f64>("created_at") as i64,
area: row.get("area"),
extended_area: row.get("extended_area"),
level: row.get("level"),
reached_users: row.get("reached_users"),
})
.collect::<Vec<alert::Alert>>()
.first()
.cloned()
.ok_or_else(|| Error::new("Failed to create alert"))?;
let distance: f64 = match alert.level {
alert::LevelAlert::One => 0.0,
alert::LevelAlert::Two => 1000.0,
alert::LevelAlert::Three => 2000.0,
};
let position_ids: Vec<i32> = client
.query(
"
SELECT id FROM positions
WHERE ST_DWithin(
location::geography,
(SELECT area::geography FROM alerts WHERE id = $1),
$2
)",
&[&alert.id, &distance],
)
.await
.unwrap()
.iter()
.map(|row| row.get(0))
.collect();
let mut notification_ids = vec![];
for id in &position_ids {
let notification = notification::Notification::insert_db(client, alert.id, *id)
.await
.unwrap();
notification_ids.push(notification);
}
alert.reached_users = notification_ids.len() as i32;
client
.query(
"UPDATE alerts SET reached_users = $1 WHERE id = $2",
&[&alert.reached_users, &alert.id],
)
.await
.unwrap();
let placeholders: Vec<String> = (1..=position_ids.len())
.map(|i| format!("${}", i))
.collect();
let query = format!(
"SELECT u.notification_token FROM positions p JOIN users u ON u.id = p.user_id
WHERE p.id IN ({}) AND notification_token IS NOT NULL",
placeholders.join(", ")
);
let tokens: Vec<String> = client
.query(
&query,
&position_ids
.iter()
.map(|id| id as &(dyn tokio_postgres::types::ToSql + Sync))
.collect::<Vec<&(dyn tokio_postgres::types::ToSql + Sync)>>(),
)
.await
.unwrap()
.iter()
.map(|row| format!("ExponentPushToken[{}]", row.get::<usize, String>(0)))
.collect();
expo::send(
tokens,
"New Alert!".to_string(),
"Keep an eye open".to_string(),
)
.await
.unwrap();
Ok(alert)
}
}
}
}
|