async-graphql/src/scalars/id.rs

96 lines
2.0 KiB
Rust
Raw Normal View History

use crate::{InputValueError, InputValueResult, ScalarType, Value};
use async_graphql_derive::Scalar;
2020-05-16 16:08:03 +00:00
#[cfg(feature = "bson")]
2020-05-07 06:42:34 +00:00
use bson::oid::{self, ObjectId};
2020-05-10 14:13:41 +00:00
use std::convert::TryFrom;
use std::num::ParseIntError;
2020-03-01 16:59:04 +00:00
use std::ops::{Deref, DerefMut};
2020-03-09 10:05:52 +00:00
/// ID scalar
///
/// The input is a `&str`, `String`, `usize` or `uuid::UUID`, and the output is a string.
2020-03-01 16:59:04 +00:00
#[derive(Clone, Ord, PartialOrd, Eq, PartialEq, Hash, Debug)]
pub struct ID(String);
impl Deref for ID {
type Target = String;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl DerefMut for ID {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
2020-05-10 13:49:29 +00:00
impl<T> From<T> for ID
where
T: std::fmt::Display,
{
fn from(value: T) -> Self {
ID(value.to_string())
2020-03-17 09:26:59 +00:00
}
}
impl Into<String> for ID {
fn into(self) -> String {
self.0
}
}
2020-05-10 14:13:41 +00:00
impl TryFrom<ID> for usize {
type Error = ParseIntError;
2020-05-10 14:13:41 +00:00
fn try_from(id: ID) -> std::result::Result<Self, Self::Error> {
id.0.parse()
}
}
2020-05-16 16:08:03 +00:00
impl TryFrom<ID> for uuid::Uuid {
type Error = uuid::Error;
2020-05-10 14:13:41 +00:00
fn try_from(id: ID) -> std::result::Result<Self, Self::Error> {
2020-05-16 16:08:03 +00:00
uuid::Uuid::parse_str(&id.0)
}
}
2020-05-16 16:08:03 +00:00
#[cfg(feature = "bson")]
2020-05-10 14:13:41 +00:00
impl TryFrom<ID> for ObjectId {
2020-05-07 06:42:34 +00:00
type Error = oid::Error;
2020-05-10 14:13:41 +00:00
fn try_from(id: ID) -> std::result::Result<Self, oid::Error> {
ObjectId::with_string(&id.0)
2020-05-07 06:42:34 +00:00
}
}
2020-04-10 02:20:43 +00:00
impl PartialEq<&str> for ID {
fn eq(&self, other: &&str) -> bool {
self.0.as_str() == *other
}
}
#[Scalar(internal)]
impl ScalarType for ID {
fn parse(value: Value) -> InputValueResult<Self> {
2020-03-01 16:59:04 +00:00
match value {
Value::Int(n) => Ok(ID(n.to_string())),
2020-05-16 13:14:26 +00:00
Value::String(s) => Ok(ID(s)),
_ => Err(InputValueError::ExpectedType(value)),
}
}
fn is_valid(value: &Value) -> bool {
match value {
Value::Int(_) | Value::String(_) => true,
_ => false,
2020-03-01 16:59:04 +00:00
}
}
fn to_value(&self) -> Value {
Value::String(self.0.clone())
2020-03-01 16:59:04 +00:00
}
}