-
Notifications
You must be signed in to change notification settings - Fork 53
/
ext.rs
302 lines (265 loc) · 8.67 KB
/
ext.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
//! Developer extensions for basic-http-server
//!
//! This code is not as clean and well-documented as main.rs,
//! but could still be a useful read.
use super::{Config, HtmlCfg};
use comrak::ComrakOptions;
use futures::{future, StreamExt};
use http::{Request, Response, StatusCode};
use hyper::{header, Body};
use log::{trace, warn};
use percent_encoding::{utf8_percent_encode, AsciiSet, CONTROLS};
use std::error::Error as StdError;
use std::ffi::OsStr;
use std::fmt::Write;
use std::io;
use std::path::{Path, PathBuf};
use tokio_fs::DirEntry;
/// The entry point to extensions. Extensions are given both the request and the
/// response result from regular file serving, and have the opportunity to
/// replace the response with their own response.
pub async fn serve(
config: Config,
req: Request<Body>,
resp: super::Result<Response<Body>>,
) -> super::Result<Response<Body>> {
trace!("checking extensions");
if !config.use_extensions {
return resp;
}
let path = super::local_path_for_request(&req.uri(), &config.root_dir)?;
let file_ext = path.extension().and_then(OsStr::to_str).unwrap_or("");
if file_ext == "md" {
trace!("using markdown extension");
return Ok(md_path_to_html(&path).await?);
}
match resp {
Ok(mut resp) => {
// Serve source code as plain text to render them in the browser
maybe_convert_mime_type_to_text(&req, &mut resp);
Ok(resp)
}
Err(super::Error::Io(e)) => {
// If the requested file was not found, then try doing a directory listing.
if e.kind() == io::ErrorKind::NotFound {
let list_dir_resp = maybe_list_dir(&config.root_dir, &path).await?;
trace!("using directory list extension");
if let Some(f) = list_dir_resp {
Ok(f)
} else {
Err(super::Error::from(e))
}
} else {
Err(super::Error::from(e))
}
}
r => r,
}
}
/// Load a markdown file, render to HTML, and return the response.
async fn md_path_to_html(path: &Path) -> Result<Response<Body>> {
// Render Markdown like GitHub
let mut options = ComrakOptions::default();
options.ext_autolink = true;
options.ext_header_ids = None;
options.ext_table = true;
options.ext_strikethrough = true;
options.ext_tagfilter = true;
options.ext_tasklist = true;
options.github_pre_lang = true;
options.ext_header_ids = Some("user-content-".to_string());
let buf = tokio::fs::read(path).await?;
let s = String::from_utf8(buf).map_err(|_| Error::MarkdownUtf8)?;
let html = comrak::markdown_to_html(&s, &options);
let cfg = HtmlCfg {
title: String::new(),
body: html,
};
let html = super::render_html(cfg)?;
Response::builder()
.status(StatusCode::OK)
.header(header::CONTENT_LENGTH, html.len() as u64)
.header(header::CONTENT_TYPE, mime::TEXT_HTML.as_ref())
.body(Body::from(html))
.map_err(Error::from)
}
fn maybe_convert_mime_type_to_text(req: &Request<Body>, resp: &mut Response<Body>) {
let path = req.uri().path();
let file_name = path.rsplit('/').next();
if let Some(file_name) = file_name {
let mut do_convert = false;
let ext = file_name.rsplit('.').next();
if let Some(ext) = ext {
if TEXT_EXTENSIONS.contains(&ext) {
do_convert = true;
}
}
if TEXT_FILES.contains(&file_name) {
do_convert = true;
}
if do_convert {
use http::header::HeaderValue;
let val =
HeaderValue::from_str(mime::TEXT_PLAIN.as_ref()).expect("mime is valid header");
resp.headers_mut().insert(header::CONTENT_TYPE, val);
}
}
}
#[rustfmt::skip]
static TEXT_EXTENSIONS: &[&'static str] = &[
"c",
"cc",
"cpp",
"csv",
"fst",
"h",
"java",
"md",
"mk",
"proto",
"py",
"rb",
"rs",
"rst",
"sh",
"toml",
"yml",
];
#[rustfmt::skip]
static TEXT_FILES: &[&'static str] = &[
".gitattributes",
".gitignore",
".mailmap",
"AUTHORS",
"CODE_OF_CONDUCT",
"CONTRIBUTING",
"COPYING",
"COPYRIGHT",
"Cargo.lock",
"LICENSE",
"LICENSE-APACHE",
"LICENSE-MIT",
"Makefile",
"rust-toolchain",
];
/// Try to treat the path as a directory and list the contents as HTML.
async fn maybe_list_dir(root_dir: &Path, path: &Path) -> Result<Option<Response<Body>>> {
let meta = tokio::fs::metadata(path).await?;
if meta.is_dir() {
Ok(Some(list_dir(&root_dir, path).await?))
} else {
Ok(None)
}
}
/// List the contents of a directory as HTML.
async fn list_dir(root_dir: &Path, path: &Path) -> Result<Response<Body>> {
let up_dir = path.join("..");
let path = path.to_owned();
let dents = tokio::fs::read_dir(path).await?;
let dents = dents.filter_map(|dent| match dent {
Ok(dent) => future::ready(Some(dent)),
Err(e) => {
warn!("directory entry error: {}", e);
future::ready(None)
}
});
let paths = dents.map(|dent| DirEntry::path(&dent));
let mut paths: Vec<_> = paths.collect().await;
paths.sort();
let paths = Some(up_dir).into_iter().chain(paths);
let paths: Vec<_> = paths.collect();
let html = make_dir_list_body(&root_dir, &paths)?;
let resp = super::html_str_to_response(html, StatusCode::OK)?;
Ok(resp)
}
fn make_dir_list_body(root_dir: &Path, paths: &[PathBuf]) -> Result<String> {
let mut buf = String::new();
writeln!(buf, "<div>").map_err(Error::WriteInDirList)?;
let dot_dot = OsStr::new("..");
for path in paths {
let full_url = path
.strip_prefix(root_dir)
.map_err(Error::StripPrefixInDirList)?;
let maybe_dot_dot = || {
if path.ends_with("..") {
Some(dot_dot)
} else {
None
}
};
if let Some(file_name) = path.file_name().or_else(maybe_dot_dot) {
if let Some(file_name) = file_name.to_str() {
if let Some(full_url) = full_url.to_str() {
// %-encode filenames
// https://url.spec.whatwg.org/#fragment-percent-encode-set
const FRAGMENT_SET: &AsciiSet =
&CONTROLS.add(b' ').add(b'"').add(b'<').add(b'>').add(b'`');
const PATH_SET: &AsciiSet =
&FRAGMENT_SET.add(b'#').add(b'?').add(b'{').add(b'}');
let full_url = utf8_percent_encode(full_url, &PATH_SET);
// TODO: Make this a relative URL
writeln!(buf, "<div><a href='/{}'>{}</a></div>", full_url, file_name)
.map_err(Error::WriteInDirList)?;
} else {
warn!("non-unicode url: {}", full_url.to_string_lossy());
}
} else {
warn!("non-unicode path: {}", file_name.to_string_lossy());
}
} else {
warn!("path without file name: {}", path.display());
}
}
writeln!(buf, "</div>").map_err(Error::WriteInDirList)?;
let cfg = HtmlCfg {
title: String::new(),
body: buf,
};
Ok(super::render_html(cfg)?)
}
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Debug, Display)]
pub enum Error {
// blanket "pass-through" error types
#[display(fmt = "engine error")]
Engine(Box<super::Error>),
#[display(fmt = "HTTP error")]
Http(http::Error),
#[display(fmt = "I/O error")]
Io(io::Error),
// custom "semantic" error types
#[display(fmt = "markdown is not UTF-8")]
MarkdownUtf8,
#[display(fmt = "failed to strip prefix in directory listing")]
StripPrefixInDirList(std::path::StripPrefixError),
#[display(fmt = "formatting error while creating directory listing")]
WriteInDirList(std::fmt::Error),
}
impl StdError for Error {
fn source(&self) -> Option<&(dyn StdError + 'static)> {
use Error::*;
match self {
Engine(e) => Some(e),
Io(e) => Some(e),
Http(e) => Some(e),
MarkdownUtf8 => None,
StripPrefixInDirList(e) => Some(e),
WriteInDirList(e) => Some(e),
}
}
}
impl From<super::Error> for Error {
fn from(e: super::Error) -> Error {
Error::Engine(Box::new(e))
}
}
impl From<http::Error> for Error {
fn from(e: http::Error) -> Error {
Error::Http(e)
}
}
impl From<io::Error> for Error {
fn from(e: io::Error) -> Error {
Error::Io(e)
}
}