embed web source
This commit is contained in:
parent
6bd7379df3
commit
f5ef251458
3 changed files with 44 additions and 62 deletions
28
src/main.rs
28
src/main.rs
|
@ -1,6 +1,6 @@
|
||||||
use std::io::{Result};
|
use std::io::{Result};
|
||||||
use std::net::{ToSocketAddrs};
|
use std::net::{ToSocketAddrs};
|
||||||
use std::{env, fs};
|
use std::{env};
|
||||||
|
|
||||||
use mcstatusface::http::{HttpServer, StatusCode};
|
use mcstatusface::http::{HttpServer, StatusCode};
|
||||||
use mcstatusface::{MinecraftStatus};
|
use mcstatusface::{MinecraftStatus};
|
||||||
|
@ -58,29 +58,19 @@ env!("CARGO_PKG_VERSION"));
|
||||||
}
|
}
|
||||||
|
|
||||||
if request.path() == "/style/index.css" {
|
if request.path() == "/style/index.css" {
|
||||||
match fs::read_to_string("./public/style/index.css") {
|
let content = include_str!("public/style/index.css");
|
||||||
Ok(content) => {
|
|
||||||
response.set_header("Content-Type", "text/css".to_string());
|
response.set_header("Content-Type", "text/css".to_string());
|
||||||
response.status(StatusCode::OK);
|
response.status(StatusCode::OK);
|
||||||
response.body(content.to_string());
|
response.body(content.to_string());
|
||||||
return response.send();
|
return response.send();
|
||||||
}
|
}
|
||||||
Err(err) => {
|
|
||||||
eprint!("failed to load index.css: {}\n", err.to_string());
|
|
||||||
response.status(StatusCode::InternalServerError);
|
|
||||||
response.body("Internal Server Error\n".to_string());
|
|
||||||
return response.send();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if request.path() == "/" {
|
if request.path() == "/" {
|
||||||
if request.headers().get("Accept").is_some_and(
|
if request.headers().get("Accept").is_some_and(
|
||||||
|accept| accept.contains("text/html")
|
|accept| accept.contains("text/html")
|
||||||
) {
|
) {
|
||||||
// HTML response
|
// HTML response
|
||||||
match fs::read_to_string("./views/index.html") {
|
let content = include_str!("views/index.html");
|
||||||
Ok(mut content) => {
|
|
||||||
response.set_header("Content-Type", "text/html".to_string());
|
response.set_header("Content-Type", "text/html".to_string());
|
||||||
response.status(StatusCode::OK);
|
response.status(StatusCode::OK);
|
||||||
let query_response: String;
|
let query_response: String;
|
||||||
|
@ -129,23 +119,15 @@ env!("CARGO_PKG_VERSION"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
content = content
|
let response_content = content
|
||||||
.replace("{{response}}", &query_response)
|
.replace("{{response}}", &query_response)
|
||||||
.replace("{{host}}", match request.headers().get("Host") {
|
.replace("{{host}}", match request.headers().get("Host") {
|
||||||
Some(host) => { host }
|
Some(host) => { host }
|
||||||
None => { "mcq.bliss.town" }
|
None => { "mcq.bliss.town" }
|
||||||
});
|
});
|
||||||
response.body(content.to_string());
|
response.body(response_content.to_string());
|
||||||
return response.send();
|
return response.send();
|
||||||
}
|
}
|
||||||
Err(err) => {
|
|
||||||
eprint!("failed to load index.html: {}\n", err.to_string());
|
|
||||||
response.status(StatusCode::InternalServerError);
|
|
||||||
response.body("Internal Server Error\n".to_string());
|
|
||||||
return response.send();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// JSON response
|
// JSON response
|
||||||
match request.query().get("s") {
|
match request.query().get("s") {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue