package tiny_httpd
Minimal HTTP server using good old threads
Install
Dune Dependency
Authors
Maintainers
Sources
v0.11.tar.gz
md5=21af1a39fdc4b139eb56d6f7b8c39863
sha512=07b17c0fdb3ab49e856fe248a0db7d1be974d900822c1b4d28758751ba096c86f24dc72b024ab272c1720370e640ea66f1cab4937b19c47ff66bda7b876ba781
doc/src/tiny_httpd/Tiny_httpd_dir.ml.html
Source file Tiny_httpd_dir.ml
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
module S = Tiny_httpd module U = Tiny_httpd_util module Pf = Printf type dir_behavior = | Index | Lists | Index_or_lists | Forbidden type config = { mutable download: bool; mutable dir_behavior: dir_behavior; mutable delete: bool; mutable upload: bool; mutable max_upload_size: int; } let default_config () : config = { download=true; dir_behavior=Forbidden; delete=false; upload=false; max_upload_size = 10 * 1024 * 1024; } let contains_dot_dot s = try String.iteri (fun i c -> if c='.' && i+1 < String.length s && String.get s (i+1) = '.' then raise Exit) s; false with Exit -> true (* Human readable size *) let human_size (x:int) : string = if x >= 1_000_000_000 then Printf.sprintf "%d.%dG" (x / 1_000_000_000) ((x/1_000_000) mod 1_000_000) else if x >= 1_000_000 then Printf.sprintf "%d.%dM" (x / 1_000_000) ((x/1000) mod 1_000) else if x >= 1_000 then Printf.sprintf "%d.%dk" (x/1000) ((x/100) mod 100) else Printf.sprintf "%db" x let header_html = "Content-Type", "text/html" let (//) = Filename.concat let encode_path s = U.percent_encode ~skip:(function '/' -> true|_->false) s let _decode_path s = match U.percent_decode s with Some s->s | None -> s let s = String.length s>0 && s.[0] = '.' let html_list_dir ~top ~parent d : string = let entries = Sys.readdir @@ (top // d) in Array.sort compare entries; let body = Buffer.create 256 in (* TODO: breadcrumbs for the path, each element a link to the given ancestor dir *) Printf.bprintf body {|<head><title> http_of_dir %S</title><meta charset="utf-8"> </head><body> <h2> Index of %S</h2> |} top d; begin match parent with | None -> () | Some p -> Printf.bprintf body "<a href=\"/%s\"> (parent directory) </a>\n" (encode_path p); end; Printf.bprintf body "<ul>\n"; let = ref 0 in Array.iteri (fun i f -> if is_hidden f && (i=0 || not (is_hidden entries.(i-1))) then ( hidden_stop := i; while !hidden_stop < Array.length entries && is_hidden entries.(!hidden_stop) do incr hidden_stop; done; Printf.bprintf body "<details> <summary>(%d hidden files)</summary>\n" (!hidden_stop-i); ) else if i = !hidden_stop then ( Printf.bprintf body "</details/>\n"; ); if not @@ contains_dot_dot (d // f) then ( let fpath = top // d // f in if not @@ Sys.file_exists fpath then ( Printf.bprintf body " <li> %s [invalid file]</li>\n" f ) else ( let size = try Printf.sprintf " (%s)" @@ human_size (Unix.stat fpath).Unix.st_size with _ -> "" in Printf.bprintf body " <li> <a href=\"/%s\"> %s </a> %s%s </li>\n" (encode_path (d // f)) f (if Sys.is_directory fpath then "[dir]" else "") size ); ) ) entries; Printf.bprintf body "</ul></body>\n"; Buffer.contents body let finally_ ~h x f = try let y = f x in h x; y with e -> h x; raise e let add_dir_path ~config ~dir ~prefix server = if config.delete then ( S.add_route_handler server ~meth:`DELETE S.Route.(exact_path prefix (rest_of_path_urlencoded)) (fun path _req -> if contains_dot_dot path then ( S.Response.fail_raise ~code:403 "invalid path in delete" ) else ( S.Response.make_string (try Sys.remove (dir // path); Ok "file deleted successfully" with e -> Error (500, Printexc.to_string e)) ) ); ) else ( S.add_route_handler server ~meth:`DELETE S.Route.(exact_path prefix (S.Route.(string @/ return))) (fun _ _ -> S.Response.make_raw ~code:405 "delete not allowed"); ); if config.upload then ( S.add_route_handler_stream server ~meth:`PUT S.Route.(exact_path prefix (rest_of_path_urlencoded)) ~accept:(fun req -> match S.Request.get_header_int req "Content-Length" with | Some n when n > config.max_upload_size -> Error (403, "max upload size is " ^ string_of_int config.max_upload_size) | Some _ when contains_dot_dot req.S.Request.path -> Error (403, "invalid path (contains '..')") | _ -> Ok () ) (fun path req -> let fpath = dir // path in let oc = try open_out fpath with e -> S.Response.fail_raise ~code:403 "cannot upload to %S: %s" path (Printexc.to_string e) in let req = S.Request.limit_body_size ~max_size:config.max_upload_size req in S.Byte_stream.to_chan oc req.S.Request.body; flush oc; close_out oc; S._debug (fun k->k "done uploading"); S.Response.make_raw ~code:201 "upload successful" ) ) else ( S.add_route_handler server ~meth:`PUT S.Route.(exact_path prefix (string @/ return)) (fun _ _ -> S.Response.make_raw ~code:405 "upload not allowed"); ); if config.download then ( S.add_route_handler server ~meth:`GET S.Route.(exact_path prefix (rest_of_path_urlencoded)) (fun path req -> let full_path = dir // path in let mtime = lazy ( try Printf.sprintf "mtime: %f" (Unix.stat full_path).Unix.st_mtime with _ -> S.Response.fail_raise ~code:403 "Cannot access file" ) in if contains_dot_dot full_path then ( S.Response.fail ~code:403 "Path is forbidden"; ) else if not (Sys.file_exists full_path) then ( S.Response.fail ~code:404 "File not found"; ) else if S.Request.get_header req "If-None-Match" = Some (Lazy.force mtime) then ( S._debug (fun k->k "cached object %S (etag: %S)" path (Lazy.force mtime)); S.Response.make_raw ~code:304 "" ) else if Sys.is_directory full_path then ( S._debug (fun k->k "list dir %S (topdir %S)" full_path dir); let parent = Filename.(dirname path) in let parent = if parent <> path then Some parent else None in match config.dir_behavior with | Index | Index_or_lists when Sys.file_exists (full_path // "index.html") -> (* redirect using path, not full path *) let new_path = "/" // path // "index.html" in S._debug (fun k->k "redirect to `%s`" new_path); S.Response.make_raw ~code:301 "" ~headers:S.Headers.(empty |> set "location" new_path) | Lists | Index_or_lists -> let body = html_list_dir ~top:dir path ~parent in S.Response.make_string ~headers:[header_html; "ETag", Lazy.force mtime] (Ok body) | Forbidden | Index -> S.Response.make_raw ~code:405 "listing dir not allowed" ) else ( try let ic = open_in full_path in let mime_type = if Filename.extension full_path = ".css" then ( ["Content-Type", "text/css"] ) else if Filename.extension full_path = ".js" then ( ["Content-Type", "text/javascript"] ) else try let p = Unix.open_process_in (Printf.sprintf "file -i -b %S" full_path) in finally_ ~h:(fun p->ignore @@ Unix.close_process_in p) p (fun p -> try ["Content-Type", String.trim (input_line p)] with _ -> []) with _ -> [] in S.Response.make_raw_stream ~headers:(mime_type@["Etag", Lazy.force mtime]) ~code:200 (S.Byte_stream.of_chan ic) with e -> S.Response.fail ~code:500 "error while reading file: %s" (Printexc.to_string e)) ) ) else ( S.add_route_handler server ~meth:`GET S.Route.(exact_path prefix (string @/ return)) (fun _ _ -> S.Response.make_raw ~code:405 "download not allowed"); );
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>