surrealpatch/src/web/sql.rs

54 lines
1.5 KiB
Rust
Raw Normal View History

use crate::dbs::Session;
use crate::web::conf;
2020-06-29 15:36:01 +00:00
use crate::web::head;
use crate::web::output;
use bytes::Bytes;
2020-06-29 15:36:01 +00:00
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(conf::build())
2020-06-29 15:36:01 +00:00
.and(warp::header::<String>(http::header::CONTENT_TYPE.as_str()))
.and(warp::body::content_length_limit(1024 * 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())
}
async fn handler(
session: Session,
output: String,
sql: Bytes,
) -> Result<impl warp::Reply, warp::Rejection> {
2021-03-29 15:43:37 +00:00
let sql = std::str::from_utf8(&sql).unwrap();
2022-01-14 17:13:44 +00:00
match crate::dbs::execute(sql, session, None).await {
Ok(res) => match output.as_ref() {
"application/json" => Ok(output::json(&res)),
"application/cbor" => Ok(output::cbor(&res)),
"application/msgpack" => Ok(output::pack(&res)),
2022-01-14 17:13:44 +00:00
_ => Err(warp::reject::not_found()),
},
Err(err) => Err(warp::reject::custom(err)),
2020-06-29 15:36:01 +00:00
}
}