diff options
author | Santo Cariotti <santo@dcariotti.me> | 2024-08-22 22:25:57 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2024-08-22 22:26:24 +0200 |
commit | fc51ff9e22a809e257ae92f12272f1dbcb31f594 (patch) | |
tree | b1e0fcd8e9ca931f7d89b976eaf2a40388e98f6c /src/dates.rs | |
parent | 8738cf2c6b1ce9f99e3399f35ba9f49832ffed52 (diff) |
Add position type and query on it
Diffstat (limited to 'src/dates.rs')
-rw-r--r-- | src/dates.rs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/dates.rs b/src/dates.rs new file mode 100644 index 0000000..87e6f5e --- /dev/null +++ b/src/dates.rs @@ -0,0 +1,35 @@ +use async_graphql::{InputValueError, InputValueResult, Scalar, ScalarType, Value}; +use chrono::{DateTime, Utc}; +use serde::{Deserialize, Serialize}; + +#[derive(Serialize, Deserialize, Debug, Clone)] +pub struct GraphQLDate(pub DateTime<Utc>); + +impl From<DateTime<Utc>> for GraphQLDate { + fn from(dt: DateTime<Utc>) -> Self { + GraphQLDate(dt) + } +} + +impl From<GraphQLDate> for DateTime<Utc> { + fn from(my_dt: GraphQLDate) -> Self { + my_dt.0 + } +} + +#[Scalar] +impl ScalarType for GraphQLDate { + fn parse(value: Value) -> InputValueResult<Self> { + if let Value::String(s) = &value { + DateTime::parse_from_rfc3339(s) + .map(|dt| GraphQLDate(dt.with_timezone(&Utc))) + .map_err(|e| InputValueError::custom(format!("Invalid DateTime: {}", e))) + } else { + Err(InputValueError::expected_type(value)) + } + } + + fn to_value(&self) -> Value { + Value::String(self.0.to_rfc3339()) + } +} |