mirror of
https://github.com/yuzu-emu/liftinstall.git
synced 2025-11-05 01:34:48 +00:00
303 lines
11 KiB
Rust
303 lines
11 KiB
Rust
//! rest.rs
|
|
//!
|
|
//! Provides a HTTP/REST server for both frontend<->backend communication, as well
|
|
//! as talking to external applications.
|
|
|
|
use serde_json;
|
|
|
|
use futures::future;
|
|
use futures::Future;
|
|
use futures::Sink;
|
|
use futures::Stream;
|
|
|
|
use hyper::header::{ContentLength, ContentType};
|
|
use hyper::server::{Http, Request, Response, Service};
|
|
use hyper::{self, Error as HyperError, Get, Post, StatusCode};
|
|
|
|
use url::form_urlencoded;
|
|
|
|
use std::collections::HashMap;
|
|
use std::net::SocketAddr;
|
|
use std::process::exit;
|
|
use std::sync::mpsc::channel;
|
|
use std::sync::Arc;
|
|
use std::sync::RwLock;
|
|
use std::thread::{self, JoinHandle};
|
|
|
|
use assets;
|
|
|
|
use installer::InstallMessage;
|
|
use installer::InstallerFramework;
|
|
|
|
#[derive(Serialize)]
|
|
struct FileSelection {
|
|
path: Option<String>,
|
|
}
|
|
|
|
/// Acts as a communication mechanism between the Hyper WebService and the rest of the
|
|
/// application.
|
|
pub struct WebServer {
|
|
_handle: JoinHandle<()>,
|
|
addr: SocketAddr,
|
|
}
|
|
|
|
impl WebServer {
|
|
/// Returns the bound address that the server is running from.
|
|
pub fn get_addr(&self) -> SocketAddr {
|
|
self.addr.clone()
|
|
}
|
|
|
|
/// Creates a new web server with the specified address.
|
|
pub fn with_addr(
|
|
framework: Arc<RwLock<InstallerFramework>>,
|
|
addr: SocketAddr,
|
|
) -> Result<Self, HyperError> {
|
|
let (sender, receiver) = channel();
|
|
|
|
let handle = thread::spawn(move || {
|
|
let server = Http::new()
|
|
.bind(&addr, move || {
|
|
Ok(WebService {
|
|
framework: framework.clone(),
|
|
})
|
|
})
|
|
.unwrap();
|
|
|
|
sender.send(server.local_addr().unwrap()).unwrap();
|
|
|
|
server.run().unwrap();
|
|
});
|
|
|
|
let addr = receiver.recv().unwrap();
|
|
|
|
Ok(WebServer {
|
|
_handle: handle,
|
|
addr,
|
|
})
|
|
}
|
|
}
|
|
|
|
/// Holds internal state for Hyper
|
|
struct WebService {
|
|
framework: Arc<RwLock<InstallerFramework>>,
|
|
}
|
|
|
|
impl Service for WebService {
|
|
type Request = Request;
|
|
type Response = Response;
|
|
type Error = hyper::Error;
|
|
type Future = Box<Future<Item = Self::Response, Error = Self::Error>>;
|
|
|
|
/// HTTP request handler
|
|
fn call(&self, req: Self::Request) -> Self::Future {
|
|
Box::new(future::ok(match (req.method(), req.path()) {
|
|
// This endpoint should be usable directly from a <script> tag during loading.
|
|
// TODO: Handle errors
|
|
(&Get, "/api/config") => {
|
|
let framework = self.framework.read().unwrap();
|
|
|
|
let file =
|
|
enscapsulate_json("config", &framework.get_config().to_json_str().unwrap());
|
|
|
|
Response::<hyper::Body>::new()
|
|
.with_header(ContentLength(file.len() as u64))
|
|
.with_header(ContentType::json())
|
|
.with_body(file)
|
|
}
|
|
// This endpoint should be usable directly from a <script> tag during loading.
|
|
// TODO: Handle errors
|
|
(&Get, "/api/packages") => {
|
|
let framework = self.framework.read().unwrap();
|
|
|
|
let file = enscapsulate_json(
|
|
"packages",
|
|
&serde_json::to_string(&framework.database).unwrap(),
|
|
);
|
|
|
|
Response::<hyper::Body>::new()
|
|
.with_header(ContentLength(file.len() as u64))
|
|
.with_header(ContentType::json())
|
|
.with_body(file)
|
|
}
|
|
// Returns the default path for a installation
|
|
(&Get, "/api/default-path") => {
|
|
let framework = self.framework.read().unwrap();
|
|
let path = framework.get_default_path();
|
|
|
|
let response = FileSelection { path };
|
|
|
|
let file = serde_json::to_string(&response).unwrap();
|
|
|
|
Response::<hyper::Body>::new()
|
|
.with_header(ContentLength(file.len() as u64))
|
|
.with_header(ContentType::json())
|
|
.with_body(file)
|
|
}
|
|
// Immediately exits the application
|
|
(&Get, "/api/exit") => {
|
|
exit(0);
|
|
}
|
|
// Gets properties such as if the application is in maintenance mode
|
|
(&Get, "/api/installation-status") => {
|
|
let framework = self.framework.read().unwrap();
|
|
|
|
let response = framework.get_installation_status();
|
|
|
|
let file = serde_json::to_string(&response).unwrap();
|
|
|
|
Response::<hyper::Body>::new()
|
|
.with_header(ContentLength(file.len() as u64))
|
|
.with_header(ContentType::json())
|
|
.with_body(file)
|
|
}
|
|
// Streams the installation of a particular set of packages
|
|
(&Post, "/api/uninstall") => {
|
|
// We need to bit of pipelining to get this to work
|
|
let framework = self.framework.clone();
|
|
|
|
return Box::new(req.body().concat2().map(move |_b| {
|
|
let (sender, receiver) = channel();
|
|
let (tx, rx) = hyper::Body::pair();
|
|
|
|
// Startup a thread to do this operation for us
|
|
thread::spawn(move || {
|
|
let mut framework = framework.write().unwrap();
|
|
|
|
match framework.uninstall(&sender) {
|
|
Err(v) => {
|
|
eprintln!("Uninstall error occurred: {:?}", v);
|
|
sender.send(InstallMessage::Error(v)).unwrap();
|
|
},
|
|
_ => {}
|
|
}
|
|
sender.send(InstallMessage::EOF).unwrap();
|
|
});
|
|
|
|
// Spawn a thread for transforming messages to chunk messages
|
|
thread::spawn(move || {
|
|
let mut tx = tx;
|
|
loop {
|
|
let response = receiver.recv().unwrap();
|
|
|
|
match &response {
|
|
&InstallMessage::EOF => break,
|
|
_ => {}
|
|
}
|
|
|
|
let mut response = serde_json::to_string(&response).unwrap();
|
|
response.push('\n');
|
|
tx = tx.send(Ok(response.into_bytes().into())).wait().unwrap();
|
|
}
|
|
});
|
|
|
|
Response::<hyper::Body>::new()
|
|
//.with_header(ContentLength(file.len() as u64))
|
|
.with_header(ContentType::plaintext())
|
|
.with_body(rx)
|
|
}));
|
|
}
|
|
// Streams the installation of a particular set of packages
|
|
(&Post, "/api/start-install") => {
|
|
// We need to bit of pipelining to get this to work
|
|
let framework = self.framework.clone();
|
|
|
|
return Box::new(req.body().concat2().map(move |b| {
|
|
let results = form_urlencoded::parse(b.as_ref())
|
|
.into_owned()
|
|
.collect::<HashMap<String, String>>();
|
|
|
|
let mut to_install = Vec::new();
|
|
let mut path: Option<String> = None;
|
|
|
|
// Transform results into just an array of stuff to install
|
|
for (key, value) in results.iter() {
|
|
if key == "path" {
|
|
path = Some(value.to_owned());
|
|
continue;
|
|
}
|
|
|
|
if value == "true" {
|
|
to_install.push(key.to_owned());
|
|
}
|
|
}
|
|
|
|
// The frontend always provides this
|
|
let path = path.unwrap();
|
|
|
|
let (sender, receiver) = channel();
|
|
let (tx, rx) = hyper::Body::pair();
|
|
|
|
// Startup a thread to do this operation for us
|
|
thread::spawn(move || {
|
|
let mut framework = framework.write().unwrap();
|
|
|
|
let new_install = !framework.preexisting_install;
|
|
if new_install {
|
|
framework.set_install_dir(&path);
|
|
}
|
|
|
|
match framework.install(to_install, &sender, new_install) {
|
|
Err(v) => {
|
|
eprintln!("Install error occurred: {:?}", v);
|
|
sender.send(InstallMessage::Error(v)).unwrap();
|
|
},
|
|
_ => {}
|
|
}
|
|
sender.send(InstallMessage::EOF).unwrap();
|
|
});
|
|
|
|
// Spawn a thread for transforming messages to chunk messages
|
|
thread::spawn(move || {
|
|
let mut tx = tx;
|
|
loop {
|
|
let response = receiver.recv().unwrap();
|
|
|
|
match &response {
|
|
&InstallMessage::EOF => break,
|
|
_ => {}
|
|
}
|
|
|
|
let mut response = serde_json::to_string(&response).unwrap();
|
|
response.push('\n');
|
|
tx = tx.send(Ok(response.into_bytes().into())).wait().unwrap();
|
|
}
|
|
});
|
|
|
|
Response::<hyper::Body>::new()
|
|
//.with_header(ContentLength(file.len() as u64))
|
|
.with_header(ContentType::plaintext())
|
|
.with_body(rx)
|
|
}));
|
|
}
|
|
|
|
// Static file handler
|
|
(&Get, _) => {
|
|
// At this point, we have a web browser client. Search for a index page
|
|
// if needed
|
|
let mut path: String = req.path().to_owned();
|
|
if path.ends_with("/") {
|
|
path += "index.html";
|
|
}
|
|
|
|
match assets::file_from_string(&path) {
|
|
Some((content_type, file)) => {
|
|
let content_type = ContentType(content_type.parse().unwrap());
|
|
Response::<hyper::Body>::new()
|
|
.with_header(ContentLength(file.len() as u64))
|
|
.with_header(content_type)
|
|
.with_body(file)
|
|
}
|
|
None => Response::new().with_status(StatusCode::NotFound),
|
|
}
|
|
}
|
|
// Fallthrough for POST/PUT/CONNECT/...
|
|
_ => Response::new().with_status(StatusCode::NotFound),
|
|
}))
|
|
}
|
|
}
|
|
|
|
/// Encapsulates JSON as a injectable Javascript script.
|
|
fn enscapsulate_json(field_name: &str, json: &str) -> String {
|
|
format!("var {} = {};", field_name, json)
|
|
}
|