Add polling and ETag TODOs
[tt.git] / TODO
1 # vim:sw=2:sts=2:
2 TODO
3 ====
4
5 Legend:
6 - [ ] not started
7 - [-] in-progress
8 - [x] done
9 - [~] cancelled
10
11 In-progress
12 -----------
13
14 - [-] Convert to Typed Racket
15 - [x] build executable (otherwise too-slow)
16 - [-] add signatures
17 - [x] top-level
18 - [ ] inner
19 - [ ] imports
20 - [-] commands:
21 - [x] r | read
22 - see timeline ops above
23 - [ ] w | write
24 - arg or stdin
25 - nick expand to URI
26 - [ ] q | query
27 - see timeline ops above
28 - see hashtag and channels above
29 - [x] d | download
30 - [ ] options:
31 - [ ] all - use all known peers
32 - [ ] fast - all except peers known to be slow or unavailable
33 REQUIRES: stats
34 - [x] u | upload
35 - calls user-configured command to upload user's own timeline file to their server
36 Looks like a better CLI parser than "racket/cmdline": https://docs.racket-lang.org/natural-cli/
37 But it is no longer necessary now that I've figured out how to chain (command-line ..) calls.
38 - [-] Output formats:
39 - [x] text long
40 - [x] text short
41 - [ ] HTML
42 - [ ] JSON
43 - [-] Peer discovery
44 - [-] parse peer refs from peer timelines
45 - [x] mentions from timeline messages
46 - [x] @<source.nick source.url>
47 - [x] @<source.url>
48 - [x] "following" from timeline comments: # following = <nick> <uri>
49 - [ ] Parse User-Agent web access logs.
50 - [ ] Update peer ref file(s)
51 Rough sketch from late 2019:
52 let read file =
53 ...
54 let write file peers =
55 ...
56 let fetch peer =
57 (* Fetch could mean either or both of:
58 * - fetch peer's we-are-twtxt.txt
59 * - fetch peer's twtxt.txt and extract mentioned peer URIs
60 * *)
61 ...
62 let test peers =
63 ...
64 let rec discover peers_old =
65 let peers_all =
66 Set.fold peers_old ~init:peers_old ~f:(fun peers p ->
67 match fetch p with
68 | Error _ ->
69 (* TODO: Should p be moved to down set here? *)
70 log_warning ...;
71 peers
72 | Ok peers_fetched ->
73 Set.union peers peers_fetched
74 )
75 in
76 if Set.empty (Set.diff peers_old peers_all) then
77 peers_all
78 else
79 discover peers_all
80 let rec loop interval peers_old =
81 let peers_all = discover peers_old in
82 let (peers_up, peers_down) = test peers_all in
83 write "peers-all.txt" peers_all;
84 write "peers-up.txt" peers_up;
85 write "peers-down.txt" peers_down;
86 sleep interval;
87 loop interval peers_all
88 let () =
89 loop (Sys.argv.(1)) (read "peers-all.txt")
90
91 Backlog
92 -------
93 - [ ] Use ETag to prevent redundant downloads
94 - [ ] Polling mode/command, where tt periodically polls peer timelines
95 - [ ] nick tiebreaker(s)
96 - [ ] some sort of a hash of URI?
97 - [ ] angry-purple-tiger kind if thingie?
98 - [ ] P2P nick registration?
99 - [ ] Peers vote by claiming to have seen a nick->uri mapping?
100 The inherent race condition would be a feature, since all user name
101 registrations are races.
102 REQUIRES: blockchain
103 - [ ] stats
104 - [ ] download times per peer
105 - [ ] Support redirects
106 - should permanent redirects update the peer ref somehow?
107 - [ ] Support time ranges (i.e. reading the timeline between given time points)
108 - [ ] optional text wrap
109 - [ ] write
110 - [ ] timeline limits
111 - [ ] peer refs set operations (perhaps better done externally?)
112 - [ ] timeline as a result of a query (peer ref set op + filter expressions)
113 - [ ] config files
114 - [ ] highlight mentions
115 - [ ] filter on mentions
116 - [ ] highlight hashtags
117 - [ ] filter on hashtags
118 - [ ] hashtags as channels? initial hashtag special?
119 - [ ] query language
120 - [ ] console logger colors by level ('error)
121 - [ ] file logger ('debug)
122 - [ ] Suport immutable timelines
123 - store individual messages
124 - where?
125 - something like DBM or SQLite - faster
126 - filesystem - transparent, easily published - probably best
127 - [ ] block(chain/tree) of twtxts
128 - distributed twtxt.db
129 - each twtxt.txt is a ledger
130 - peers can verify states of ledgers
131 - peers can publish known nick->url mappings
132 - peers can vote on nick->url mappings
133 - we could break time periods into blocks
134 - how to handle the facts that many(most?) twtxt are unseen by peers
135 - longest X wins?
136
137 Done
138 ----
139 - [x] caching (use cache by default, unless explicitly asked for update)
140 - [x] value --> cache
141 - [x] value <-- cache
142 REQUIRES: d command
143 - [x] Logger sync before exit.
144 - [x] Implement rfc3339->epoch
145 - [x] Remove dependency on rfc3339-old
146 - [x] remove dependency on http-client
147 - [x] Build executable
148 Implies fix of "collection not found" when executing the built executable
149 outside the source directory:
150
151 collection-path: collection not found
152 collection: "tt"
153 in collection directories:
154 context...:
155 /usr/share/racket/collects/racket/private/collect.rkt:11:53: fail
156 /usr/share/racket/collects/setup/getinfo.rkt:17:0: get-info
157 /usr/share/racket/collects/racket/contract/private/arrow-val-first.rkt:555:3
158 /usr/share/racket/collects/racket/cmdline.rkt:191:51
159 '|#%mzc:p
160
161
162 Cancelled
163 ---------
164 - [~] named timelines/peer-sets
165 REASON: That is basically files of peers, which we already support.
This page took 0.065205 seconds and 4 git commands to generate.