2022-02-05 23:06:16 +00:00
|
|
|
use http::header::{HeaderValue, CONTENT_TYPE};
|
|
|
|
use http::StatusCode;
|
|
|
|
use serde::Serialize;
|
2023-05-05 18:54:49 +00:00
|
|
|
use serde_json::Value as Json;
|
|
|
|
use surrealdb::sql;
|
2022-02-05 23:06:16 +00:00
|
|
|
|
|
|
|
pub enum Output {
|
|
|
|
None,
|
2022-07-04 00:00:39 +00:00
|
|
|
Fail,
|
2022-09-25 12:05:56 +00:00
|
|
|
Text(String),
|
2022-02-05 23:06:16 +00:00
|
|
|
Json(Vec<u8>), // JSON
|
|
|
|
Cbor(Vec<u8>), // CBOR
|
|
|
|
Pack(Vec<u8>), // MessagePack
|
2023-03-31 22:36:07 +00:00
|
|
|
Full(Vec<u8>), // Full type serialization
|
2022-02-05 23:06:16 +00:00
|
|
|
}
|
|
|
|
|
2022-07-04 00:00:39 +00:00
|
|
|
pub fn none() -> Output {
|
|
|
|
Output::None
|
|
|
|
}
|
|
|
|
|
2022-09-25 12:05:56 +00:00
|
|
|
pub fn text(val: String) -> Output {
|
|
|
|
Output::Text(val)
|
|
|
|
}
|
|
|
|
|
2022-02-05 23:06:16 +00:00
|
|
|
pub fn json<T>(val: &T) -> Output
|
|
|
|
where
|
|
|
|
T: Serialize,
|
|
|
|
{
|
|
|
|
match serde_json::to_vec(val) {
|
|
|
|
Ok(v) => Output::Json(v),
|
2022-07-04 00:00:39 +00:00
|
|
|
Err(_) => Output::Fail,
|
2022-02-05 23:06:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn cbor<T>(val: &T) -> Output
|
|
|
|
where
|
|
|
|
T: Serialize,
|
|
|
|
{
|
|
|
|
match serde_cbor::to_vec(val) {
|
|
|
|
Ok(v) => Output::Cbor(v),
|
2022-07-04 00:00:39 +00:00
|
|
|
Err(_) => Output::Fail,
|
2022-02-05 23:06:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pack<T>(val: &T) -> Output
|
|
|
|
where
|
|
|
|
T: Serialize,
|
|
|
|
{
|
|
|
|
match serde_pack::to_vec(val) {
|
|
|
|
Ok(v) => Output::Pack(v),
|
2022-07-04 00:00:39 +00:00
|
|
|
Err(_) => Output::Fail,
|
2022-02-05 23:06:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-31 22:36:07 +00:00
|
|
|
pub fn full<T>(val: &T) -> Output
|
2023-03-27 12:52:28 +00:00
|
|
|
where
|
|
|
|
T: Serialize,
|
|
|
|
{
|
2023-04-29 15:58:22 +00:00
|
|
|
match bung::to_vec(val) {
|
2023-03-31 22:36:07 +00:00
|
|
|
Ok(v) => Output::Full(v),
|
2023-03-27 12:52:28 +00:00
|
|
|
Err(_) => Output::Fail,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-05 18:54:49 +00:00
|
|
|
/// Convert and simplify the value into JSON
|
|
|
|
pub fn simplify<T: Serialize>(v: T) -> Json {
|
|
|
|
sql::to_value(v).unwrap().into()
|
|
|
|
}
|
|
|
|
|
2022-02-05 23:06:16 +00:00
|
|
|
impl warp::Reply for Output {
|
|
|
|
fn into_response(self) -> warp::reply::Response {
|
|
|
|
match self {
|
2022-09-25 12:05:56 +00:00
|
|
|
Output::Text(v) => {
|
|
|
|
let mut res = warp::reply::Response::new(v.into());
|
|
|
|
let con = HeaderValue::from_static("text/plain");
|
|
|
|
res.headers_mut().insert(CONTENT_TYPE, con);
|
|
|
|
res
|
|
|
|
}
|
2022-02-05 23:06:16 +00:00
|
|
|
Output::Json(v) => {
|
|
|
|
let mut res = warp::reply::Response::new(v.into());
|
|
|
|
let con = HeaderValue::from_static("application/json");
|
|
|
|
res.headers_mut().insert(CONTENT_TYPE, con);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
Output::Cbor(v) => {
|
|
|
|
let mut res = warp::reply::Response::new(v.into());
|
|
|
|
let con = HeaderValue::from_static("application/cbor");
|
|
|
|
res.headers_mut().insert(CONTENT_TYPE, con);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
Output::Pack(v) => {
|
|
|
|
let mut res = warp::reply::Response::new(v.into());
|
2023-03-27 12:52:28 +00:00
|
|
|
let con = HeaderValue::from_static("application/pack");
|
|
|
|
res.headers_mut().insert(CONTENT_TYPE, con);
|
|
|
|
res
|
|
|
|
}
|
2023-03-31 22:36:07 +00:00
|
|
|
Output::Full(v) => {
|
2023-03-27 12:52:28 +00:00
|
|
|
let mut res = warp::reply::Response::new(v.into());
|
2023-03-31 22:36:07 +00:00
|
|
|
let con = HeaderValue::from_static("application/bung");
|
2022-02-05 23:06:16 +00:00
|
|
|
res.headers_mut().insert(CONTENT_TYPE, con);
|
|
|
|
res
|
|
|
|
}
|
2022-07-04 00:00:39 +00:00
|
|
|
Output::None => StatusCode::OK.into_response(),
|
|
|
|
Output::Fail => StatusCode::INTERNAL_SERVER_ERROR.into_response(),
|
2022-02-05 23:06:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|