added static file hosting & changed error handling again

This commit is contained in:
emilis 2022-09-11 17:30:19 +01:00
parent 8fe959967e
commit 1d9802530d
9 changed files with 149 additions and 56 deletions

92
Cargo.lock generated
View File

@ -214,12 +214,15 @@ dependencies = [
"anyhow",
"base-62",
"handlebars",
"mime_guess",
"rand",
"rust-embed",
"serde",
"serde_json",
"tokio",
"tokio-postgres",
"warp",
"warp-embed",
]
[[package]]
@ -786,7 +789,7 @@ dependencies = [
"md-5",
"memchr",
"rand",
"sha2",
"sha2 0.10.5",
"stringprep",
]
@ -881,6 +884,40 @@ dependencies = [
"winapi",
]
[[package]]
name = "rust-embed"
version = "6.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a17e5ac65b318f397182ae94e532da0ba56b88dd1200b774715d36c4943b1c3"
dependencies = [
"rust-embed-impl",
"rust-embed-utils",
"walkdir",
]
[[package]]
name = "rust-embed-impl"
version = "6.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94e763e24ba2bf0c72bc6be883f967f794a019fafd1b86ba1daff9c91a7edd30"
dependencies = [
"proc-macro2",
"quote",
"rust-embed-utils",
"syn",
"walkdir",
]
[[package]]
name = "rust-embed-utils"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "756feca3afcbb1487a1d01f4ecd94cf8ec98ea074c55a69e7136d29fb6166029"
dependencies = [
"sha2 0.9.9",
"walkdir",
]
[[package]]
name = "rustc-demangle"
version = "0.1.21"
@ -899,6 +936,15 @@ version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "scoped-tls"
version = "1.0.0"
@ -989,6 +1035,19 @@ dependencies = [
"digest 0.10.3",
]
[[package]]
name = "sha2"
version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
dependencies = [
"block-buffer 0.9.0",
"cfg-if",
"cpufeatures",
"digest 0.9.0",
"opaque-debug",
]
[[package]]
name = "sha2"
version = "0.10.5"
@ -1368,6 +1427,17 @@ version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
"winapi",
"winapi-util",
]
[[package]]
name = "want"
version = "0.3.0"
@ -1408,6 +1478,17 @@ dependencies = [
"tracing",
]
[[package]]
name = "warp-embed"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b958139e25f097e0ebde85342a3a2dbb728983ca893ba96b7fb8f448337110af"
dependencies = [
"mime_guess",
"rust-embed",
"warp",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
@ -1430,6 +1511,15 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"

View File

@ -9,9 +9,12 @@ edition = "2021"
anyhow = "1.0.64"
base-62 = "0.1.1"
handlebars = "4.3.3"
mime_guess = "2.0.4"
rand = "0.8.5"
rust-embed = "6.4.0"
serde = { version = "1.0.144", features = ["derive", "std", "serde_derive"]}
serde_json = "1.0.85"
tokio = { version = "1", features = ["full"] }
tokio-postgres = { version = "0.7.7", features = ["with-serde_json-1"] }
warp = { version = "0.3.2" }
warp-embed = "0.4.0"

View File

@ -1,20 +0,0 @@
use warp::hyper::StatusCode;
pub(crate) fn html_with_status(body: String, status: StatusCode) -> warp::http::Response<String> {
warp::http::Response::builder()
.header("Content-Type", "text/html; charset=utf-8")
.status(status)
.body(body)
.expect("failed marshalling html response")
}
pub(crate) fn html(body: String) -> warp::http::Response<String> {
html_with_status(body, StatusCode::OK)
}
// pub(crate) fn html(body: String) -> Result<warp::http::Response<String>, warp::http::Error> {
// warp::http::Response::builder()
// .header("Content-Type", "text/html; charset=utf-8")
// .status(StatusCode::OK)
// .body(body)
// }

View File

@ -1,5 +1,4 @@
mod database;
mod helpers;
mod model;
mod servek;
mod svc;

View File

@ -1,8 +1,13 @@
use std::str::FromStr;
use warp::{hyper::Uri, Filter, Rejection, Reply};
use warp::{http::HeaderValue, hyper::Uri, path::Tail, reply::Response, Filter, Rejection, Reply};
use super::servek::{Server, ServerError};
use rust_embed::RustEmbed;
#[derive(RustEmbed)]
#[folder = "static"]
struct StaticData;
impl Server {
pub(super) async fn html(
@ -10,7 +15,7 @@ impl Server {
) -> impl Filter<Extract = impl warp::Reply, Error = warp::Rejection> + Clone {
Self::index()
.or(self.profile().await)
.or(self.create_profile().await)
.or(self.create_profile().await.or(Server::static_files()))
}
fn index() -> impl Filter<Extract = impl warp::Reply, Error = warp::Rejection> + Clone {
@ -64,4 +69,23 @@ impl Server {
}),
)
}
fn static_files() -> impl Filter<Extract = impl Reply, Error = Rejection> + Clone {
warp::get().and(warp::path("static").and(warp::path::tail()).and_then(
|path: Tail| async move {
let asset = match StaticData::get(path.as_str()) {
Some(a) => a,
None => return Err(ServerError::NotFound.reject_self()),
};
let mime = mime_guess::from_path(path.as_str()).first_or_octet_stream();
let mut res = Response::new(asset.data.into());
res.headers_mut().insert(
"Content-Type",
HeaderValue::from_str(mime.as_ref()).unwrap(),
);
Ok(res)
},
))
}
}

View File

@ -2,9 +2,14 @@ use core::panic;
use std::{convert::Infallible, fmt::Display};
use handlebars::{Handlebars, RenderError};
use warp::{hyper::StatusCode, reject::Reject, Filter, Rejection, Reply};
use warp::{
hyper::StatusCode,
reject::{MethodNotAllowed, Reject},
Filter, Rejection, Reply,
};
use crate::{
database::users::User,
model,
svc::profiles::{Profiler, UserError},
};
@ -46,20 +51,19 @@ impl Server {
code = StatusCode::INTERNAL_SERVER_ERROR;
message = "internal server error";
}
ServerError::User(u) => match u {
UserError::Duplicate => {
code = StatusCode::BAD_REQUEST;
message = "duplicate entry";
}
UserError::Other(_) => {
panic!("FIXME: other case should already be handled in conversions")
}
UserError::NotFound => {
code = StatusCode::NOT_FOUND;
message = "not found";
}
},
ServerError::NotFound => {
code = StatusCode::NOT_FOUND;
message = "not found";
}
ServerError::Duplicate => {
code = StatusCode::BAD_REQUEST;
message = "duplicate entry exists";
}
}
} else if let Some(err) = err.find::<MethodNotAllowed>() {
println!("MethodNotAllowed: {:#?}", err);
code = StatusCode::NOT_FOUND;
message = "not found";
} else {
// We should have expected this... Just log and say its a 500
println!("FIXME: unhandled rejection: {:?}", err);
@ -77,7 +81,8 @@ impl Server {
#[derive(Clone, Debug)]
pub(super) enum ServerError {
Internal(String),
User(UserError),
NotFound,
Duplicate,
}
impl ServerError {
@ -97,8 +102,8 @@ impl From<RenderError> for ServerError {
impl From<UserError> for ServerError {
fn from(u: UserError) -> Self {
match u {
UserError::Duplicate => Self::User(u),
UserError::NotFound => Self::User(u),
UserError::Duplicate => Self::Duplicate,
UserError::NotFound => Self::NotFound,
UserError::Other(o) => Self::Internal(format!("UserError: {}", o)),
}
}

View File

@ -2,3 +2,7 @@ body {
background-color: black;
color: rebeccapurple;
}
h1 {
text-align: center;
}

View File

@ -3,13 +3,7 @@
<head>
<title>flabk</title>
<style>
body {
background-color: black;
color: rebeccapurple;
}
</style>
<link rel="stylesheet" href="/static/style/main.css">
</head>
<body>

View File

@ -3,17 +3,11 @@
<head>
<title>@{{username}}</title>
<style>
body {
background-color: black;
color: rebeccapurple;
}
</style>
<link rel="stylesheet" href="/static/style/main.css">
</head>
<body>
<h1>hi {{username}}</h1>
<h1>hi {{username}}, your id is {{id}}</h1>
</body>
</html>