async-graphql/src/types/upload.rs

64 lines
2.0 KiB
Rust
Raw Normal View History

2020-03-19 09:20:12 +00:00
use crate::{registry, InputValueType, Type, Value};
2020-03-14 03:46:20 +00:00
use std::borrow::Cow;
/// Upload file type
///
/// Reference: https://github.com/jaydenseric/graphql-multipart-request-spec
pub struct Upload {
2020-03-20 03:56:08 +00:00
/// Filename
2020-03-14 03:46:20 +00:00
pub filename: String,
2020-03-20 03:56:08 +00:00
/// Content type, such as `application/json`, `image/jpg` ...
2020-03-14 03:46:20 +00:00
pub content_type: Option<String>,
2020-03-20 03:56:08 +00:00
/// File content
2020-03-14 03:46:20 +00:00
pub content: Vec<u8>,
}
2020-03-19 09:20:12 +00:00
impl<'a> Type for Upload {
2020-03-14 03:46:20 +00:00
fn type_name() -> Cow<'static, str> {
Cow::Borrowed("Upload")
}
fn create_type_info(registry: &mut registry::Registry) -> String {
registry.create_type::<Self, _>(|_| registry::Type::Scalar {
name: Self::type_name().to_string(),
description: None,
is_valid: |value| match value {
Value::String(s) => s.starts_with("file:"),
_ => false,
},
})
}
}
2020-03-19 09:20:12 +00:00
impl<'a> InputValueType for Upload {
2020-03-14 03:46:20 +00:00
fn parse(value: &Value) -> Option<Self> {
if let Value::String(s) = value {
if s.starts_with("file:") {
let s = &s[5..];
if let Some(idx) = s.find("|") {
let name_and_type = &s[..idx];
let content = &s[idx + 1..];
if let Some(type_idx) = name_and_type.find(":") {
let name = &name_and_type[..type_idx];
let mime_type = &name_and_type[type_idx + 1..];
return Some(Self {
filename: name.to_string(),
content_type: Some(mime_type.to_string()),
content: content.as_bytes().to_vec(),
});
} else {
return Some(Self {
filename: name_and_type.to_string(),
content_type: None,
content: content.as_bytes().to_vec(),
});
}
}
}
}
None
}
}