schala/src/webapp.rs

37 lines
938 B
Rust
Raw Normal View History

use rocket;
use rocket::response::NamedFile;
2017-09-19 20:29:08 -07:00
use rocket_contrib::Json;
2017-10-02 00:15:39 -07:00
use schala_lang;
use language::{ProgrammingLanguageInterface, EvalOptions};
#[get("/")]
fn index() -> Result<NamedFile, ()> {
NamedFile::open("static/index.html").map_err(|_| ())
}
#[get("/bundle.js")]
fn js_bundle() -> Result<NamedFile, ()> {
NamedFile::open("static/bundle.js").map_err(|_| ())
}
2017-10-01 23:25:36 -07:00
#[derive(Debug, Serialize, Deserialize)]
2017-09-19 20:29:08 -07:00
struct Input {
source: String,
}
#[derive(Serialize, Deserialize)]
struct Output {
text: String,
}
#[post("/input", format = "application/json", data = "<input>")]
fn interpreter_input(input: Json<Input>) -> Json<Output> {
2017-10-02 00:15:39 -07:00
let mut schala = schala_lang::Schala::new();
let code_output = schala.evaluate_in_repl(&input.source, &EvalOptions::default());
Json(Output { text: code_output.to_string() })
2017-09-19 20:29:08 -07:00
}
pub fn web_main() {
rocket::ignite().mount("/", routes![index, js_bundle, interpreter_input]).launch();
}