devoyage-subgraph 0.0.15

Subgraph is a CLI that instantly generates a GraphQL API around Mongo, SQL, and HTTP APIs.
Documentation
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
use bson::{oid::ObjectId, Bson};
use log::{debug, error, trace};

use super::DocumentUtils;

#[derive(Debug)]
pub enum DocumentValue {
    String(String),
    StringArray(Vec<String>),
    Int(i32),
    IntArray(Vec<i32>),
    Boolean(bool),
    BooleanArray(Vec<bool>),
    ObjectID(bson::oid::ObjectId),
    ObjectIDArray(Vec<bson::oid::ObjectId>),
    Document(bson::Document),
    DocumentArray(Vec<bson::Document>),
    UUID(uuid::Uuid),
    UUIDArray(Vec<uuid::Uuid>),
    DateTime(chrono::DateTime<chrono::Utc>),
    DateTimeArray(Vec<chrono::DateTime<chrono::Utc>>),
    Null,
    None,
}

impl DocumentUtils {
    pub fn get_document_string_scalar(
        document: &bson::Document,
        field_name: &str,
        is_list: bool,
    ) -> Result<DocumentValue, async_graphql::Error> {
        debug!("Getting Document String Scalar: {}", field_name);

        if document.get(field_name).is_none() {
            return Ok(DocumentValue::None);
        }

        if document.get(field_name).unwrap().as_null().is_some() {
            return Ok(DocumentValue::Null);
        }

        if is_list {
            if let Some(Bson::Array(documents)) = document.get(field_name) {
                let valid_strings = documents.iter().all(|value| value.as_str().is_some());

                if !valid_strings {
                    error!("Not all values are strings for field {}", field_name);
                    return Err(async_graphql::Error::new(format!(
                        "Not all values are strings for field {}",
                        field_name
                    )));
                }

                let values = documents
                    .into_iter()
                    .map(|value| value.as_str().unwrap().to_string())
                    .collect::<Vec<String>>();
                trace!("Document Value String Array: {:?}", values);
                return Ok(DocumentValue::StringArray(values));
            } else {
                trace!("Document Value String Array: Empty Vec");
                return Ok(DocumentValue::StringArray(vec![]));
            }
        }

        let value = document.get_str(field_name).map_err(|err| {
            error!("Value is not a string: {}", err);
            async_graphql::Error::new(format!("Value is not a string: {}", err))
        })?;

        trace!("Found String Value: {:?}", value);
        Ok(DocumentValue::String(value.to_string()))
    }

    pub fn get_document_int_scalar(
        document: &bson::Document,
        field_name: &str,
        is_list: bool,
    ) -> Result<DocumentValue, async_graphql::Error> {
        debug!("Getting Document Int Scalar: {}", field_name);

        if document.get(field_name).is_none() {
            return Ok(DocumentValue::None);
        }

        if document.get(field_name).unwrap().as_null().is_some() {
            return Ok(DocumentValue::Null);
        }

        if is_list {
            if let Some(Bson::Array(documents)) = document.get(field_name) {
                // Check that all values are i32 or i64
                let valid = documents.iter().all(|value| {
                    let i32_value = value.as_i32();
                    if i32_value.is_none() {
                        let i64_value = value.as_f64();
                        if i64_value.is_some() {
                            return true;
                        } else {
                            return false;
                        }
                    }
                    return true;
                });

                if !valid {
                    error!("Not all values are ints for field {}", field_name);
                    return Err(async_graphql::Error::new(format!(
                        "Not all values are ints for field {}",
                        field_name
                    )));
                }

                let values = documents
                    .into_iter()
                    .map(|value| {
                        let i32_value = value.as_i32();
                        if i32_value.is_none() {
                            let i64_value = value.as_f64();
                            if i64_value.is_some() {
                                return i64_value.unwrap() as i32;
                            } else {
                                // Alrady checked above.
                                error!("Could not parse int value: {:?}", value);
                                return -1;
                            }
                        }
                        return i32_value.unwrap();
                    })
                    .collect::<Vec<i32>>();
                trace!("Document Value Int Array: {:?}", values);
                return Ok(DocumentValue::IntArray(values));
            } else {
                trace!("Document Value Int Array: Empty Vec");
                return Ok(DocumentValue::IntArray(vec![]));
            }
        }

        let value = document.get(field_name).unwrap();
        let i32_value = value.as_i32();
        if i32_value.is_none() {
            let i64_value = value.as_i64();
            if i64_value.is_some() {
                return Ok(DocumentValue::Int(i64_value.unwrap() as i32));
            } else {
                error!("Could not parse int value: {:?}", value);
                return Err(async_graphql::Error::new(format!(
                    "Could not parse int value: {:?}",
                    value
                )));
            }
        }
        trace!("Found Int Value: {:?}", value);
        Ok(DocumentValue::Int(i32_value.unwrap()))
    }

    pub fn get_document_boolean_scalar(
        document: &bson::Document,
        field_name: &str,
        is_list: bool,
    ) -> Result<DocumentValue, async_graphql::Error> {
        debug!("Getting Document Boolean Scalar: {}", field_name);

        if document.get(field_name).is_none() {
            return Ok(DocumentValue::None);
        }

        if document.get(field_name).unwrap().as_null().is_some() {
            return Ok(DocumentValue::Null);
        }

        if is_list {
            let valid_bools = document
                .get_array(field_name)?
                .into_iter()
                .all(|value| value.as_bool().is_some());

            if !valid_bools {
                error!("Not all values are booleans for field {}", field_name);
                return Err(async_graphql::Error::new(format!(
                    "Not all values are booleans for field {}",
                    field_name
                )));
            }

            let values = document
                .get_array(field_name)?
                .into_iter()
                .map(|value| value.as_bool().unwrap())
                .collect::<Vec<bool>>();
            trace!("Document Value Boolean Array: {:?}", values);
            return Ok(DocumentValue::BooleanArray(values));
        }

        let value = document.get_bool(field_name).map_err(|err| {
            error!("Value is not a boolean: {}", err);
            async_graphql::Error::new(format!("Value is not a boolean: {}", err))
        })?;
        trace!("Found Boolean Value: {:?}", value);
        Ok(DocumentValue::Boolean(value))
    }

    pub fn get_document_uuid_scalar(
        document: &bson::Document,
        field_name: &str,
        is_list: bool,
    ) -> Result<DocumentValue, async_graphql::Error> {
        debug!("Getting Document UUID Scalar: {}", field_name);

        if document.get(field_name).is_none() {
            return Ok(DocumentValue::None);
        }

        if document.get(field_name).unwrap().as_null().is_some() {
            return Ok(DocumentValue::Null);
        }

        if is_list {
            if let Some(Bson::Array(documents)) = document.get(field_name) {
                let valid_uuids = documents.iter().all(|value| {
                    let value = value.as_str().unwrap_or("");
                    let uuid = uuid::Uuid::parse_str(value);
                    if uuid.is_err() {
                        return false;
                    } else {
                        return true;
                    }
                });

                if !valid_uuids {
                    error!("Not all values are uuids for field {}", field_name);
                    return Err(async_graphql::Error::new(format!(
                        "Not all values are uuids for field {}",
                        field_name
                    )));
                }

                let values = documents
                    .into_iter()
                    .map(|value| {
                        let value = value.as_str().unwrap_or("");
                        let uuid = uuid::Uuid::parse_str(value);
                        if uuid.is_err() {
                            uuid::Uuid::nil()
                        } else {
                            uuid.unwrap()
                        }
                    })
                    .collect();
                trace!("Document Value UUID Array: {:?}", values);
                return Ok(DocumentValue::UUIDArray(values));
            } else {
                trace!("Document Value UUID Array: Empty Vec");
                return Ok(DocumentValue::UUIDArray(vec![]));
            }
        }

        let value = document.get_str(field_name).map_err(|err| {
            error!("Value is not a uuid: {}", err);
            async_graphql::Error::new(format!("Value is not a uuid: {}", err))
        })?;

        trace!("Document Value UUID: {:?}", value);
        Ok(DocumentValue::UUID(uuid::Uuid::parse_str(value).unwrap()))
    }

    pub fn get_document_datetime_scalar(
        document: &bson::Document,
        field_name: &str,
        is_list: bool,
    ) -> Result<DocumentValue, async_graphql::Error> {
        debug!("Getting Document DateTime Scalar: {}", field_name);

        if document.get(field_name).is_none() {
            return Ok(DocumentValue::None);
        }

        if document.get(field_name).unwrap().as_null().is_some() {
            return Ok(DocumentValue::Null);
        }

        if is_list {
            if let Some(Bson::Array(documents)) = document.get(field_name) {
                // Check all values are valid dates
                let is_valid = documents.iter().all(|value| {
                    let value = value.as_datetime();
                    if value.is_none() {
                        return false;
                    }
                    true
                });
                if !is_valid {
                    error!("Not all values are valid dates for field {}", field_name);
                    return Err(async_graphql::Error::new("Invalid DateTime"));
                }
                let values = documents
                    .into_iter()
                    .map(|value| {
                        let value = value.as_datetime().unwrap();
                        value.to_chrono()
                    })
                    .collect();
                trace!("Document Value DateTime Array: {:?}", values);
                return Ok(DocumentValue::DateTimeArray(values));
            } else {
                trace!("Document Value DateTime Array: Empty Vec");
                return Ok(DocumentValue::DateTimeArray(vec![]));
            }
        }

        let value = document.get_datetime(field_name).map_err(|err| {
            error!("Value is not a datetime: {}", err);
            async_graphql::Error::new(format!("Value is not a datetime: {}", err))
        })?;
        // convert bson datetime to chrono datetime
        trace!("Document Value DateTime: {:?}", value);
        Ok(DocumentValue::DateTime(value.to_chrono()))
    }

    pub fn get_document_object_id_scalar(
        document: &bson::Document,
        field_name: &str,
        is_list: bool,
    ) -> Result<DocumentValue, async_graphql::Error> {
        debug!("Getting Document ObjectID Scalar: {}", field_name);

        if document.get(field_name).is_none() {
            return Ok(DocumentValue::None);
        }

        if document.get(field_name).unwrap().as_null().is_some() {
            return Ok(DocumentValue::Null);
        }

        if is_list {
            if let Some(Bson::Array(documents)) = document.get(field_name) {
                let valid_object_ids = documents.iter().all(|value| {
                    let value = value.as_object_id();
                    if value.is_none() {
                        return false;
                    }
                    true
                });

                if !valid_object_ids {
                    error!("Not all values are object ids for field {}", field_name);
                    return Err(async_graphql::Error::new(format!(
                        "Not all values are object ids for field {}",
                        field_name
                    )));
                }

                let value = documents
                    .into_iter()
                    .map(|value| value.as_object_id().unwrap())
                    .collect::<Vec<ObjectId>>();
                trace!("Document Value ObjectID Array: {:?}", value);
                return Ok(DocumentValue::ObjectIDArray(value));
            } else {
                trace!("Document Value ObjectID Array: Empty Vec");
                return Ok(DocumentValue::ObjectIDArray(vec![]));
            }
        }
        let value = document.get_object_id(field_name).map_err(|err| {
            error!("Value is not an object id: {}", err);
            async_graphql::Error::new(format!("Value is not an object id: {}", err))
        })?;
        trace!("Document Value ObjectID: {:?}", value);
        Ok(DocumentValue::ObjectID(value))
    }

    pub fn get_document_object_scalar(
        document: &bson::Document,
        field_name: &str,
        is_list: bool,
    ) -> Result<DocumentValue, async_graphql::Error> {
        debug!("Get Document Object Scalar");
        trace!("Field Name: {}", field_name);

        if document.get(field_name).is_none() {
            return Ok(DocumentValue::None);
        }

        if document.get(field_name).unwrap().as_null().is_some() {
            return Ok(DocumentValue::Null);
        }

        let value = document.get(field_name).unwrap();

        if is_list {
            if let Some(bson_array) = value.as_array() {
                let valid_docs = bson_array.iter().all(|value| {
                    let value = value.as_document();
                    if value.is_none() {
                        return false;
                    }
                    true
                });

                if !valid_docs {
                    error!("Not all values are documents for field {}", field_name);
                    return Err(async_graphql::Error::new(format!(
                        "Not all values are documents for field {}",
                        field_name
                    )));
                }

                let values = bson_array
                    .into_iter()
                    .map(|value| value.as_document().unwrap().clone())
                    .collect::<Vec<bson::Document>>();
                trace!("Document Value Object Array: {:?}", values);
                return Ok(DocumentValue::DocumentArray(values));
            } else {
                trace!("Document Value Object Array: Empty Vec");
                return Ok(DocumentValue::DocumentArray(vec![]));
            }
        } else {
            trace!("Document Value Object: {:?}", value);
            Ok(DocumentValue::Document(
                value.as_document().unwrap().clone(),
            ))
        }
    }

    pub fn get_document_enum_scalar(
        document: &bson::Document,
        field_name: &str,
        is_list: bool,
    ) -> Result<DocumentValue, async_graphql::Error> {
        debug!("Resolving Enum Scalar");

        if document.get(field_name).is_none() {
            trace!(
                "Field `{}` not found, returning DocumentValue::None",
                field_name
            );
            return Ok(DocumentValue::None);
        }

        if document.get(field_name).unwrap().as_null().is_some() {
            trace!(
                "Field `{}` is null, returning DocumentValue::Null",
                field_name
            );
            return Ok(DocumentValue::Null);
        }

        if is_list {
            if let Some(Bson::Array(documents)) = document.get(field_name) {
                let valid_strings = documents.iter().all(|value| value.as_str().is_some());

                if !valid_strings {
                    error!("Not all values are strings for field {}", field_name);
                    return Err(async_graphql::Error::new(format!(
                        "Not all values are strings for field {}",
                        field_name
                    )));
                }

                let values = documents
                    .into_iter()
                    .map(|value| value.as_str().unwrap().to_string())
                    .collect::<Vec<String>>();
                trace!("Document Value String Array: {:?}", values);
                return Ok(DocumentValue::StringArray(values));
            } else {
                trace!("Document Value String Array: Empty Vec");
                return Ok(DocumentValue::StringArray(vec![]));
            }
        }

        let value = document.get_str(field_name).map_err(|err| {
            error!("Value is not a string: {}", err);
            async_graphql::Error::new(format!("Value is not a string: {}", err))
        })?;

        trace!("Found String Value: {:?}", value);
        Ok(DocumentValue::String(value.to_string()))
    }
}