source: code/trunk/cli/convert.ml@ 34

Last change on this file since 34 was 21, checked in by fox, 2 years ago

Moved conversion file, conf -> pack, fixes

Conversion:

  • Configuration sought in: txt.conf, ~/.config/txt/txt.conf
  • logarion.conf to produce index and target formats

Publication:

  • publish <ids>: copies txt with ID into Pubdir/public_{html,gemini,gopher} (Pubdir fromtxt.conf), if dirs exist, and runs convert <pubdir>

Fixes:

  • Feed <nav> regression
File size: 3.8 KB
Line 
1open Logarion
2
3(*TODO: move to converters (style, feed checks)*)
4let is_older s d = try Unix.((stat d).st_mtime < (stat s).st_mtime) with _-> true
5
6let convert cs r (text, files) = match Text.str "Content-Type" text with
7 | "" | "text/plain" ->
8 let source = List.hd files in
9 let dest = Filename.concat r.Conversion.dir (Text.short_id text) in
10 List.fold_left
11 (fun a f ->
12 match f.Conversion.page with None -> false || a
13 | Some page ->
14 let dest = dest ^ f.Conversion.ext in
15 (if is_older source dest then (File_store.file dest (page r text); true) else false)
16 || a)
17 false cs
18 | x -> Printf.eprintf "Can't convert Content-Type: %s file: %s" x text.Text.title; false
19
20let converters types kv =
21 let n = String.split_on_char ',' types in
22 let t = [] in
23 let t = if List.(mem "all" n || mem "htm" n) then (Html.converter kv)::t else t in
24 let t = if List.(mem "all" n || mem "atom" n) then (Atom.converter "text/html")::t else t in
25 let t = if List.(mem "all" n || mem "gmi" n) then (Gemini.converter)::t else t in
26 let t = if List.(mem "all" n || mem "gmi-atom" n) then (Atom.converter "text/gemini")::t else t in
27 t
28
29let directory converters noindex repo =
30 let fn (ts,ls,acc) ((elt,_) as r) =
31 (Topic_set.to_map ts (Text.set "topics" elt)), elt::ls,
32 if convert converters repo r then acc+1 else acc in
33 let topics, texts, count =
34 File_store.(fold ~dir:repo.Conversion.dir ~order:newest fn (Topic_set.Map.empty,[],0)) in
35 let topic_roots = try List.rev @@ String_set.list_of_csv (Store.KV.find "Topics" repo.kv)
36 with Not_found -> Topic_set.roots topics in
37 let repo = Conversion.{ repo with topic_roots; topics; texts } in
38 if not noindex then List.iter (fun c -> match c.Conversion.indices with None -> () | Some f -> f repo) converters;
39 Printf.printf "Converted: %d Indexed: %d\n" count (List.length texts)
40
41let load_kv dir =
42 let kv = File_store.of_kv_file () in
43 let idx = Filename.concat dir "index.pck" in
44 if not (Sys.file_exists idx) then kv else
45 match Header_pack.of_string @@ File_store.to_string (idx) with
46 | Error s -> prerr_endline s; kv
47 | Ok { info; peers; _ } ->
48 let kv = if Store.KV.mem "Id" kv then kv else Store.KV.add "Id" info.Header_pack.id kv in
49 let kv = if Store.KV.mem "Title" kv then kv else Store.KV.add "Title" info.Header_pack.title kv in
50 let kv = if Store.KV.mem "Locations" kv then kv else Store.KV.add "Locations" (String.concat ";\n" info.Header_pack.locations) kv in
51 let kv = Store.KV.add "Peers" (String.concat ";\n" Header_pack.(to_str_list peers)) kv in
52 kv
53
54let at_path types noindex path = match path with
55 | "" -> prerr_endline "unspecified text file or directory"
56 | path when Sys.file_exists path ->
57 if Sys.is_directory path then (
58 let kv = load_kv path in
59 let repo = { (Conversion.empty ()) with dir = path; kv } in
60 directory (converters types kv) noindex repo
61 ) else (
62 match File_store.to_text path with
63 | Error s -> prerr_endline s
64 | Ok text ->
65 let repo = { (Conversion.empty ()) with dir = ""; kv = load_kv "" } in
66 ignore @@ convert (converters types repo.kv) repo (text, [path])
67 )
68 | path -> Printf.eprintf "Path doesn't exist: %s" path
69
70open Cmdliner
71let term =
72 let path = Arg.(value & pos 0 string "" & info [] ~docv:"path"
73 ~doc:"Text file or directory to convert. If directory is provided, it must contain an index.pck (see: txt index)") in
74 let types = Arg.(value & opt string "all" & info ["t"; "type"] ~docv:"output type"
75 ~doc:"Convert to file type") in
76 let noindex = Arg.(value & flag & info ["noindex"]
77 ~doc:"Don't create indices in target format") in
78 Term.(const at_path $ types $ noindex $ path),
79 Term.info "convert" ~doc:"convert texts"
80 ~man:[ `S "DESCRIPTION"; `P "Convert text or indexed texts within a directory to another format.
81 If path is a directory must contain an index.pck. Run `txt index` first." ]
Note: See TracBrowser for help on using the repository browser.