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
#[cfg(feature = "chrono")]
use bson::DateTime as UtcDateTime;
use bson::{oid::ObjectId, Bson, Document, Uuid};
#[cfg(feature = "chrono")]
use chrono::{DateTime, Utc};
use crate::{InputValueError, InputValueResult, Scalar, ScalarType, Value};
#[Scalar(internal)]
impl ScalarType for ObjectId {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::String(s) => Ok(ObjectId::parse_str(&s)?),
_ => Err(InputValueError::expected_type(value)),
}
}
fn to_value(&self) -> Value {
Value::String(self.to_string())
}
}
#[Scalar(internal, name = "UUID")]
impl ScalarType for Uuid {
fn parse(value: Value) -> InputValueResult<Self> {
match value {
Value::String(s) => Ok(Uuid::parse_str(&s)?),
_ => Err(InputValueError::expected_type(value)),
}
}
fn to_value(&self) -> Value {
Value::String(self.to_string())
}
}
#[cfg(feature = "chrono")]
#[Scalar(internal, name = "DateTime")]
impl ScalarType for UtcDateTime {
fn parse(value: Value) -> InputValueResult<Self> {
<DateTime<Utc>>::parse(value)
.map_err(InputValueError::propagate)
.map(UtcDateTime::from_chrono)
}
fn to_value(&self) -> Value {
self.to_chrono().to_value()
}
}
#[Scalar(internal, name = "JSON")]
impl ScalarType for Bson {
fn parse(value: Value) -> InputValueResult<Self> {
bson::to_bson(&value).map_err(InputValueError::custom)
}
fn to_value(&self) -> Value {
bson::from_bson(self.clone()).unwrap_or_default()
}
}
#[Scalar(internal, name = "JSONObject")]
impl ScalarType for Document {
fn parse(value: Value) -> InputValueResult<Self> {
bson::to_document(&value).map_err(InputValueError::custom)
}
fn to_value(&self) -> Value {
bson::from_document(self.clone()).unwrap_or_default()
}
}