Compare commits
3 Commits
5df6b9e233
...
h8r
| Author | SHA1 | Date | |
|---|---|---|---|
|
fe7fab6c9f
|
|||
|
55672c77c2
|
|||
|
c2ceee564b
|
+5
-4
@@ -1,12 +1,13 @@
|
||||
- [x] server on fixed port responding "oh no"
|
||||
- [ ] configurable port and working directory
|
||||
- [ ] string responses
|
||||
- [ ] error page paths
|
||||
- [ ] serve "index.txt" file if exists, else 404
|
||||
- [x] configurable addr
|
||||
- [x] serve "index.txt" file if exists, else 404
|
||||
- [ ] serve relative paths with mime type text/plain
|
||||
- [ ] guess mime type
|
||||
- [ ] configurable working directory
|
||||
- [ ] string responses
|
||||
- [ ] automatic directory index
|
||||
- [ ] content ranges
|
||||
- [ ] error page paths
|
||||
- [ ] liquid template rendering
|
||||
- [ ] upstream proxy via prefix
|
||||
- [ ] upstream proxy path match
|
||||
|
||||
+51
-18
@@ -1,42 +1,75 @@
|
||||
use std::io::Write;
|
||||
use std::net::{Shutdown, TcpListener};
|
||||
use std::env;
|
||||
use std::fs;
|
||||
use std::io::{self, Write};
|
||||
use std::net;
|
||||
|
||||
fn handle_conn(stream: &mut impl Write) -> std::io::Result<()> {
|
||||
eprintln!("attempting to respond");
|
||||
fn main() -> io::Result<()> {
|
||||
let addr = env::var("H8R_ADDR").unwrap_or("127.0.0.1:17321".to_string());
|
||||
|
||||
let response = concat![
|
||||
"HTTP/1.1 200 OK\r\n",
|
||||
"content-type: text/plain\r\n",
|
||||
"\r\n",
|
||||
"oh no\n",
|
||||
];
|
||||
|
||||
stream.write_all(response.as_bytes()).unwrap();
|
||||
stream.flush()?;
|
||||
run_server(addr)?;
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn main() -> std::io::Result<()> {
|
||||
let listener = TcpListener::bind("127.0.0.1:17321").unwrap();
|
||||
fn run_server(addr: String) -> Result<(), io::Error> {
|
||||
let listener = net::TcpListener::bind(&addr).unwrap();
|
||||
|
||||
eprintln!("h8r: listening at {}", addr);
|
||||
|
||||
for stream in listener.incoming() {
|
||||
let mut stream = stream.unwrap();
|
||||
handle_conn(&mut stream)?;
|
||||
stream.shutdown(Shutdown::Both)?;
|
||||
stream.shutdown(net::Shutdown::Both)?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn handle_conn(outstream: &mut net::TcpStream) -> io::Result<()> {
|
||||
eprintln!("h8r: attempting to respond");
|
||||
|
||||
let relpath = "index.txt";
|
||||
|
||||
let index_res = fs::read_to_string(relpath);
|
||||
if index_res.is_ok() {
|
||||
let head = concat!["HTTP/1.1 200 OK\r\n", "content-type: text/plain\r\n"];
|
||||
let index = index_res.unwrap();
|
||||
let index_len = index.len();
|
||||
outstream.write_all(head.as_bytes()).unwrap();
|
||||
outstream
|
||||
.write_all(format!("content-length: {}\r\n", index_len).as_bytes())
|
||||
.unwrap();
|
||||
outstream.write_all("\r\n".as_bytes()).unwrap();
|
||||
outstream.write_all(index.as_bytes()).unwrap();
|
||||
} else {
|
||||
let response = concat![
|
||||
"HTTP/1.1 404 Not Found\r\n",
|
||||
"content-type: text/plain\r\n",
|
||||
"\r\n",
|
||||
"oh no\n",
|
||||
];
|
||||
|
||||
outstream.write_all(response.as_bytes()).unwrap();
|
||||
}
|
||||
|
||||
outstream.flush()?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn handle_conn_writes_response() {
|
||||
let mut stream = [100u8].repeat(64_000);
|
||||
let test_addr = "127.0.0.1:27321".to_string();
|
||||
|
||||
let _l = net::TcpListener::bind(&test_addr);
|
||||
let mut stream = match net::TcpStream::connect(&("127.0.0.1", 27321)) {
|
||||
Ok(s) => s,
|
||||
Err(e) => panic!("cannot connect to test server: {}", e),
|
||||
};
|
||||
|
||||
let _ = handle_conn(&mut stream);
|
||||
assert!(str::from_utf8(&stream).unwrap().contains("oh no"));
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user