source: code/trunk/cli/html.ml@ 45

Last change on this file since 45 was 43, checked in by fox, 2 years ago

Relation dates, with conversion condition upon it

File size: 7.9 KB
RevLine 
[3]1type templates_t = { header: string option; footer: string option }
[20]2type t = { templates : templates_t; style : string }
[2]3
[3]4let ext = ".htm"
5let empty_templates = { header = None; footer = None }
[20]6let default_opts = { templates = empty_templates; style = "" }
[3]7
8let init kv =
9 let open Logarion in
[18]10 let to_string key kv = match Store.KV.find key kv with
[3]11 | fname -> Some (File_store.to_string fname)
12 | exception Not_found -> None in
[18]13 let header = to_string "HTM-header" kv in
14 let footer = to_string "HTM-footer" kv in
[20]15 let style = match to_string "HTM-style" kv with
16 | Some s -> Printf.sprintf "<style>%s</style>" s | None -> "" in
17 { templates = { header; footer}; style }
[3]18
[19]19let wrap conv htm text_title body =
[20]20 let site_title = try Logarion.Store.KV.find "Title" conv.Conversion.kv with Not_found -> "" in
[3]21 let replace x = let open Str in
[20]22 global_replace (regexp "{{archive-title}}") site_title x
[3]23 |> global_replace (regexp "{{text-title}}") text_title
24 in
[20]25 let feed = try Logarion.Store.KV.find "HTM-feed" conv.Conversion.kv
26 with Not_found -> if Sys.file_exists (Filename.concat conv.Conversion.dir "feed.atom")
27 then "feed.atom" else "" in
[39]28 let header = match htm.templates.header with
[20]29 | Some x -> replace x
[21]30 | None -> Printf.(sprintf "<header><a href='.'>%s</a>%s</header>" site_title
[20]31 (if feed <> "" then sprintf "<nav><a href='%s' id='feed'>feed</a></nav>" feed else ""))
[3]32 in
[18]33 let footer = match htm.templates.footer with None -> "" | Some x -> replace x in
[20]34 Printf.sprintf "<!DOCTYPE HTML><html><head><title>%s%s</title>\n%s\n%s\
[18]35 <meta charset='utf-8'/><meta name='viewport' content='width=device-width, initial-scale=1.0'>\
36 </head><body>\n%s%s%s</body></html>"
37 text_title (if site_title <> "" then (" • " ^ site_title) else "")
[20]38 htm.style
39 (if feed <> "" then Printf.sprintf "<link rel='alternate' href='%s' type='application/atom+xml'>" feed else "")
[18]40 header body footer
[3]41
[41]42let topic_link root topic =
[18]43 let replaced_space = String.map (function ' '->'+' | x->x) in
44 "<a href='index." ^ root ^ ".htm#" ^ replaced_space topic ^ "'>"
45 ^ String.capitalize_ascii topic ^ "</a>"
[2]46
[3]47module HtmlConverter = struct
48 include Converter.Html
[41]49 let uid_uri u a = Printf.sprintf "%s<a href='%s%s'>&lt;%s&gt;</a>" a u ext u
[38]50 let angled_uri u a =
51 if try String.sub u 0 10 = "urn:txtid:" with Invalid_argument _ -> false
52 then angled_uri (String.(sub u 10 (length u - 10)) ^ ext) a else angled_uri u a
[3]53end
54
55let page htm conversion text =
[18]56 let open Logarion in
57 let open Text in
58 let module T = Parsers.Plain_text.Make (HtmlConverter) in
59 let sep_append ?(sep=", ") a x = match a,x with "",_ -> x | _, "" -> a | _ -> a ^ sep ^ x in
60 let opt_kv key value = if String.length value > 0
61 then "<dt>" ^ key ^ "<dd>" ^ value else "" in
62(* let author acc auth = sep_append acc Person.(auth.name ^ " ") in*)
[24]63 let authors = Person.Set.to_string text.authors in
[18]64 let header =
[19]65 let time x = Printf.sprintf {|<time datetime="%s">%s</time>|}
66 (Date.rfc_string x) (Date.pretty_date x) in
[18]67 let topic_links x =
68 let to_linked t a =
69 let ts = Topic_set.of_string t in
70 sep_append a (List.fold_left (fun a t -> sep_append ~sep:" > " a (topic_link (List.hd ts) t)) "" ts) in
71 String_set.fold to_linked x "" in
[38]72 let ref_links x =
[39]73 let link l = HtmlConverter.uid_uri l "" in
[38]74 String_set.fold (fun r a -> sep_append a (link r)) x ""
75 in
[43]76 let references, replies = let open Conversion in
77 let Rel.{ref_set; rep_set; _} =
78 try Rel.Id_map.find text.id conversion.relations
79 with Not_found -> Rel.empty in
80 ref_links ref_set, ref_links rep_set
81 in
[18]82 "<article><header><dl>"
83 ^ opt_kv "Title:" text.title
84 ^ opt_kv "Authors:" authors
[24]85 ^ opt_kv "Date:" (time (Date.listing text.date))
86 ^ opt_kv "Series:" (str_set "series" text)
87 ^ opt_kv "Topics:" (topic_links (set "topics" text))
88 ^ opt_kv "Id:" text.id
[39]89 ^ opt_kv "Refers:" (ref_links (set "references" text))
[41]90 ^ opt_kv "In reply to:" (ref_links (set "in-reply-to" text))
[43]91 ^ opt_kv "Referred by:" references
92 ^ opt_kv "Replies:" replies
[18]93 ^ {|</dl></header><pre style="white-space:pre-wrap">|} in
94 wrap conversion htm text.title ((T.of_string text.body header) ^ "</pre></article>")
[2]95
96let to_dated_links ?(limit) meta_list =
[18]97 let meta_list = match limit with
98 | None -> meta_list
99 | Some limit->
100 let rec reduced acc i = function
101 | [] -> acc
102 | h::t -> if i < limit then reduced (h::acc) (i+1) t else acc in
103 List.rev @@ reduced [] 0 meta_list
104 in
105 List.fold_left
106 (fun a m -> Printf.sprintf "%s<li> %s <a href=\"%s.htm\">%s</a>" a
107 Logarion.(Date.(pretty_date (listing m.Text.date)))
108 (Logarion.Text.short_id m) m.Logarion.Text.title)
109 "" meta_list
[2]110
[3]111let date_index ?(limit) conv htm meta_list =
[18]112 match limit with
113 | Some limit -> wrap conv htm "Index" (to_dated_links ~limit meta_list)
114 | None -> wrap conv htm "Index" (to_dated_links meta_list)
[2]115
116let fold_topic_roots topic_roots =
[18]117 let list_item root t = "<li>" ^ topic_link root t in
118 "<nav><h2>Main topics</h2>"
119 ^ List.fold_left (fun a x -> a ^ list_item x x) "<ul>" (List.rev topic_roots)
120 ^ "</ul></nav>"
[2]121
122let fold_topics topic_map topic_roots metas =
[18]123 let open Logarion in
124 let rec unordered_list root topic =
125 List.fold_left (fun a x -> a ^ list_item root x) "<ul>" topic
126 ^ "</ul>"
127 and sub_items root topic = match Topic_set.Map.find_opt topic topic_map with
128 | None -> ""
129 | Some (_, subtopics) -> unordered_list root (String_set.elements subtopics)
130 and list_item root t =
131 let item =
132 if List.exists (fun x -> String_set.mem t (String_set.map Topic_set.topic (Text.set "topics" x))) metas
133 then topic_link root t else String.capitalize_ascii t
134 in
135 "<li>" ^ item ^ sub_items root t
136 in
137 "<nav><h2>Topics</h2>"
138 ^ List.fold_left (fun a x -> a ^ list_item x x) "<ul>" (List.rev topic_roots)
139 ^ "</ul></nav>"
[2]140
141let text_item path meta =
[18]142 let open Logarion in
143 "<time>" ^ Date.(pretty_date (listing meta.Text.date))
144 ^ {|</time> <a href="|} ^ path ^ Text.short_id meta ^ {|.htm">|} ^ meta.Text.title
145 ^ "</a><br>"
[2]146
147let listing_index topic_map topic_roots path metas =
[18]148 let rec item_group topics =
149 List.fold_left (fun acc topic -> acc ^ sub_groups topic ^ items topic) "" topics
150 and sub_groups topic = match Logarion.Topic_set.Map.find_opt topic topic_map with
151 | None -> ""
152 | Some (_, subtopics) -> item_group (Logarion.String_set.elements subtopics)
153 and items topic =
154 let items =
155 let open Logarion in
156 List.fold_left
157 (fun a e ->
158 if String_set.mem topic (String_set.map (Logarion.Topic_set.topic) (Text.set "Topics" e))
159 then text_item path e ^ a else a) "" metas in
160 match items with
161 | "" -> ""
162 | x -> {|<h2 id="|} ^ topic ^ {|">|} ^ String.capitalize_ascii topic ^ "</h2>" ^ x
163 in
164 "<nav><h1>Texts</h1>" ^ item_group topic_roots ^ "</nav>"
[2]165
[3]166let topic_main_index conv htm topic_roots metas =
[18]167 wrap conv htm "Topics"
168 (fold_topic_roots topic_roots
169 ^ "<nav><h1>Latest</h1><ul>" ^ to_dated_links ~limit:8 metas
170 ^ {|</ul><a href="index.date.htm">More by date</a>|}
[20]171 ^ let peers = try Logarion.Store.KV.find "Peers" conv.kv with Not_found -> "" in
[18]172 (if peers = "" then "" else
173 List.fold_left (fun a s -> Printf.sprintf {|%s<li><a href="%s">%s</a>|} a s s) "<h1>Peers</h1><ul>"
174 (Str.split (Str.regexp ";\n") (Logarion.Store.KV.find "Peers" conv.kv))
175 ^ "</ul>"))
[2]176
[3]177let topic_sub_index conv htm topic_map topic_root metas =
[18]178 wrap conv htm topic_root
179 (fold_topics topic_map [topic_root] metas
180(* ^ {|<a href=".atom" id="feed">|}^ String.capitalize_ascii topic_root ^{| feed </a>|}*)
181 ^ listing_index topic_map [topic_root] "" metas)
[3]182
183let indices htm c =
184 let file name = Logarion.File_store.file (Filename.concat c.Conversion.dir name) in
[19]185 let index_name = try Logarion.Store.KV.find "HTM-index" c.Conversion.kv with Not_found -> "index.html" in
186 if index_name <> "" then file index_name (topic_main_index c htm c.topic_roots c.texts);
[3]187 file "index.date.htm" (date_index c htm c.texts);
188 List.iter
189 (fun root -> file ("index." ^ root ^ ".htm") (topic_sub_index c htm c.topics root c.texts))
[19]190 c.topic_roots
[3]191
[19]192let converter kv =
193 let htm = init kv in
194 Conversion.{ ext; page = Some (page htm); indices = Some (indices htm) }
Note: See TracBrowser for help on using the repository browser.