surrealpatch/src/web/sql.rs

42 lines
1.3 KiB
Rust
Raw Normal View History

2020-06-29 15:36:01 +00:00
use crate::web::head;
use futures::{FutureExt, StreamExt};
use warp::Filter;
pub fn config() -> impl Filter<Extract = impl warp::Reply, Error = warp::Rejection> + Clone {
// Set base path
let base = warp::path("sql").and(warp::path::end());
// Set opts method
let opts = base.and(warp::options()).map(warp::reply);
// Set post method
let post = base
.and(warp::post())
.and(warp::header::<String>(http::header::CONTENT_TYPE.as_str()))
.and(warp::body::content_length_limit(1024 * 1)) // 1MiB
2021-03-29 15:43:37 +00:00
.and(warp::body::bytes())
2020-06-29 15:36:01 +00:00
.and_then(handler);
// Set sock method
let sock = base.and(warp::ws()).map(|ws: warp::ws::Ws| {
ws.on_upgrade(|websocket| {
// Just echo all messages back...
let (tx, rx) = websocket.split();
rx.forward(tx).map(|result| {
if let Err(e) = result {
eprintln!("websocket error: {:?}", e);
}
})
})
});
// Specify route
opts.or(post).or(sock).with(head::cors())
}
2021-03-29 15:43:37 +00:00
async fn handler(out: String, sql: bytes::Bytes) -> Result<impl warp::Reply, warp::Rejection> {
let sql = std::str::from_utf8(&sql).unwrap();
2020-06-29 15:36:01 +00:00
let res = crate::dbs::execute(sql, None).unwrap();
match out.as_ref() {
"application/json" => Ok(warp::reply::json(&res)),
"application/cbor" => Ok(warp::reply::json(&res)),
_ => Err(warp::reject::not_found()),
}
}