pub mod config;
use axum::http::header;
use axum::response::{Html, IntoResponse, Response};
pub fn fonts_list_response(cors_origin: Option<&str>) -> Response {
let families = blit_fonts::list_monospace_font_families();
let json = format!(
"[{}]",
families
.iter()
.map(|f| format!("\"{}\"", f.replace('"', "\\\"")))
.collect::<Vec<_>>()
.join(",")
);
let mut resp = (
[
(header::CONTENT_TYPE, "application/json"),
(header::CACHE_CONTROL, "public, max-age=3600"),
],
json,
)
.into_response();
add_cors(&mut resp, cors_origin);
resp
}
pub fn font_response(name: &str, cors_origin: Option<&str>) -> Response {
match blit_fonts::font_face_css(name) {
Some(css) => {
let mut resp = (
[
(header::CONTENT_TYPE, "text/css"),
(header::CACHE_CONTROL, "public, max-age=86400, immutable"),
],
css,
)
.into_response();
add_cors(&mut resp, cors_origin);
resp
}
None => (axum::http::StatusCode::NOT_FOUND, "font not found").into_response(),
}
}
pub fn font_metrics_response(name: &str, cors_origin: Option<&str>) -> Response {
match blit_fonts::font_advance_ratio(name) {
Some(ratio) => {
let json = format!("{{\"advanceRatio\":{}}}", ratio);
let mut resp = (
[
(header::CONTENT_TYPE, "application/json"),
(header::CACHE_CONTROL, "public, max-age=86400, immutable"),
],
json,
)
.into_response();
add_cors(&mut resp, cors_origin);
resp
}
None => (axum::http::StatusCode::NOT_FOUND, "font not found").into_response(),
}
}
fn add_cors(resp: &mut Response, origin: Option<&str>) {
if let Some(origin) = origin {
if let Ok(val) = origin.parse() {
resp.headers_mut()
.insert(header::ACCESS_CONTROL_ALLOW_ORIGIN, val);
}
}
}
pub fn html_response(html: &'static str, etag: &str, if_none_match: Option<&[u8]>) -> Response {
if let Some(inm) = if_none_match {
if inm == etag.as_bytes() {
return (
axum::http::StatusCode::NOT_MODIFIED,
[(axum::http::header::ETAG, etag)],
)
.into_response();
}
}
([(axum::http::header::ETAG, etag)], Html(html)).into_response()
}
pub fn try_font_route(path: &str, cors_origin: Option<&str>) -> Option<Response> {
if path == "/fonts" || path.ends_with("/fonts") {
return Some(fonts_list_response(cors_origin));
}
if let Some(raw) = path.rsplit_once("/font-metrics/").map(|(_, n)| n) {
if !raw.contains('/') && !raw.is_empty() {
let name = percent_encoding::percent_decode_str(raw).decode_utf8_lossy();
return Some(font_metrics_response(&name, cors_origin));
}
}
if let Some(raw) = path.rsplit_once("/font/").map(|(_, n)| n) {
if !raw.contains('/') && !raw.is_empty() {
let name = percent_encoding::percent_decode_str(raw).decode_utf8_lossy();
return Some(font_response(&name, cors_origin));
}
}
None
}
pub fn html_etag(html: &str) -> String {
use std::hash::{Hash, Hasher};
let mut h = std::collections::hash_map::DefaultHasher::new();
html.hash(&mut h);
format!("\"blit-{:x}\"", h.finish())
}