0.8.1: add logging config param.

This commit is contained in:
abbie 2024-01-22 18:16:03 +00:00
parent 2bb5ac2b24
commit 5c9d92523c
Signed by: threeoh6000
GPG key ID: 801FE4AD456E922C
4 changed files with 28 additions and 14 deletions

View file

@ -1 +1 @@
11
12

2
Cargo.lock generated
View file

@ -10,7 +10,7 @@ checksum = "17cbf58e19f2bda088d8c4c95a46b41895375e15a2d63dd686a4273f8c43d46b"
[[package]]
name = "herb"
version = "0.8.0-binugs"
version = "0.8.1"
dependencies = [
"frostwalker",
"packeteer",

View file

@ -1,6 +1,6 @@
[package]
name = "herb"
version = "0.8.0"
version = "0.8.1"
edition = "2018"
[dependencies]

View file

@ -29,16 +29,17 @@ struct Settings {
cgi: bool,
index_generation: bool,
address: String,
logging: bool,
}
impl Settings {
fn new() -> Settings {
return Settings { cgi: true, index_generation: true, address: "0.0.0.0:8080".to_string()};
return Settings { cgi: true, index_generation: true, address: "0.0.0.0:8080".to_string(), logging: false};
}
}
fn process_cgi(filename: String) -> Option<Vec<u8>> {
// This is gonna be the boggiest implementation of CGI that anyone
// This is gonna be the bodgiest implementation of CGI that anyone
// has ever seen in the history of the fucking world
let query;
@ -102,7 +103,6 @@ fn process_cgi_with_path(filename: String, segments: Vec<String>, location: i32)
}
path = format!("{}/", path);
println!("{}", path);
let output;
if query != "".to_string() {
output = Command::new(format!("./{}", script))
@ -218,7 +218,9 @@ fn get_page(filename: String, settings: Settings) -> GetPageResult {
let mut resultstruct = GetPageResult { is500: false, is502: false, is403: false, contents: vec![], iscgi: false };
println!("{} {} {}", path, checks, index);
if settings.logging {
println!("{} {} {}", path, checks, index);
}
if checks == true && index == false {
if path.contains(".") != true && path.contains(".cgi?") != true {
@ -329,8 +331,9 @@ fn process_request(request: Vec<u8>, settings: Settings) -> Resource {
let output;
if &request.method == "GET" {
println!("Stream sent GET request.");
if settings.logging {
println!("Stream sent GET request.");
}
if request.location.segments.len() != 0 {
let segclone = request.location.segments.clone();
path = unwrap_url_into_segments(request.location);
@ -393,7 +396,9 @@ fn process_request(request: Vec<u8>, settings: Settings) -> Resource {
}
} else {
let resource = Resource { contents: "<!DOCTYPE HTML><html><body><h1>501 Not Implemented</h1><p>The request sent by your web browser cannot be handled by this server software.</p></body></html>".to_string().into_bytes(), status_code: 501, mime: "text/html".to_string(), iscgi: false };
println!("Stream sent unhandlable request.");
if settings.logging {
println!("Stream sent unhandlable request.");
}
return resource;
}
@ -425,7 +430,10 @@ fn process_request(request: Vec<u8>, settings: Settings) -> Resource {
fn serve(mut stream: TcpStream, settings: Settings) {
thread::spawn(move || {
println!("Stream thread created.");
if settings.logging {
println!("Stream thread created.");
}
let mut request = Vec::new();
let mut reader = BufReader::new(&mut stream);
reader
@ -477,10 +485,14 @@ fn process_settings() -> Settings {
}
if hashmap.get("index_generation").is_some() {
println!("a");
if hashmap.get("index_generation").unwrap_or(&"".to_string()).parse::<bool>().is_ok() {
settings.index_generation = hashmap.get("index_generation").unwrap_or(&"true".to_string()).parse::<bool>().unwrap_or(true);
println!("{}", settings.index_generation);
}
}
if hashmap.get("logging").is_some() {
if hashmap.get("logging").unwrap_or(&"".to_string()).parse::<bool>().is_ok() {
settings.logging = hashmap.get("logging").unwrap_or(&"false".to_string()).parse::<bool>().unwrap_or(true);
}
}
@ -496,7 +508,9 @@ fn main() -> std::io::Result<()> {
let listen = TcpListener::bind(settings.address.clone())?;
for stream in listen.incoming() {
println!("Serving incoming stream.");
if settings.logging {
println!("Serving incoming stream.");
}
serve(stream?, settings.clone());
}
Ok(())