usenet_reborn 0.2.2

Terminal-based Usenet NNTP client written in Rust with ratatui/crossterm.
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
#![allow(unused)]

use chrono::{DateTime, NaiveDateTime, TimeZone, Utc};
use ratatui::{
    style::{Color, Modifier, Style},
    text::{Line, Span},
    widgets::ListItem,
};
use std::collections::HashMap;

/// A node in the thread tree.
#[derive(Debug, Clone)]
pub struct ThreadNode {
    pub id: String,
    pub subject: String,
    pub sender: String,
    pub date: String,
    pub message_id: Option<String>,
    pub article_references: Vec<String>,
    pub children: Vec<ThreadNode>,
}

#[derive(Debug, Clone)]
pub struct ThreadedArticleView {
    pub id: String,
    pub message_id: Option<String>,
    pub subject: String,
    pub sender: String,
    pub date: String,
    pub depth: usize,
    pub is_last_child: bool,
}

#[derive(Debug, Clone)]
pub struct FlatArticle {
    pub article_id: String,
    pub subject: String,
    pub sender: String,
    pub date: String,
    pub message_id: Option<String>,
    pub article_references: Option<String>,
}

pub fn build_thread_tree(articles: Vec<FlatArticle>) -> Vec<ThreadNode> {
    // Map each article's unique Message-ID (or fallback to article number) to its index
    let mut index_by_id: HashMap<String, usize> = HashMap::new();
    for (i, article) in articles.iter().enumerate() {
        let key = article.message_id.as_deref().unwrap_or(&article.article_id);
        index_by_id.insert(key.to_string(), i);
    }
    // Build parent -> children mapping using References headers
    let mut children_map: HashMap<String, Vec<usize>> = HashMap::new();
    let mut root_indices: Vec<usize> = Vec::new();
    for (i, article) in articles.iter().enumerate() {
        // Determine parent message-id from the last entry in the References header
        let parent_id = if let Some(refs) = &article.article_references {
            let ids: Vec<&str> = refs.split_whitespace().collect();
            ids.last().and_then(|&last_id| {
                if index_by_id.contains_key(last_id) {
                    Some(last_id.to_string())
                } else {
                    None
                }
            })
        } else {
            None
        };
        if let Some(parent_key) = parent_id {
            // Article has a parent present in our list: link it as child
            children_map.entry(parent_key).or_default().push(i);
        } else {
            // No parent in list (or no References): treat as top-level thread root
            root_indices.push(i);
        }
    }
    // Helper to parse date string (format "%a, %d %b %Y %H:%M") for sorting
    let parse_date = |s: &str| {
        NaiveDateTime::parse_from_str(s, "%a, %d %b %Y %H:%M").unwrap_or_else(|error| {
            Utc.timestamp_opt(0, 0)
                .single()
                .expect("Failed to create timestamp")
                .naive_utc()
        })
    };
    // Sort top-level threads by parent post's date (newest first)
    root_indices
        .sort_by(|&a, &b| parse_date(&articles[b].date).cmp(&parse_date(&articles[a].date)));
    // Sort each thread's children by date (oldest first)
    for children in children_map.values_mut() {
        children
            .sort_by(|&a, &b| parse_date(&articles[a].date).cmp(&parse_date(&articles[b].date)));
    }
    // Recursively build the ThreadNode tree
    fn build_node(
        idx: usize,
        articles: &[FlatArticle],
        children_map: &HashMap<String, Vec<usize>>,
        index_by_id: &HashMap<String, usize>,
    ) -> ThreadNode {
        let art = &articles[idx];
        let key = art.message_id.as_deref().unwrap_or(&art.article_id);
        let child_indices = children_map.get(key).cloned().unwrap_or_default();
        let mut node = ThreadNode {
            id: art.article_id.clone(),
            subject: art.subject.clone(),
            sender: art.sender.clone(),
            date: art.date.clone(),
            message_id: art.message_id.clone(),
            article_references: art
                .article_references
                .as_ref()
                .map(|r| r.split_whitespace().map(|s| s.to_string()).collect())
                .unwrap_or_default(),
            children: Vec::new(),
        };
        for child_idx in child_indices {
            node.children
                .push(build_node(child_idx, articles, children_map, index_by_id));
        }
        node
    }
    // Construct ThreadNode trees for all root articles
    let mut root_nodes = Vec::new();
    for idx in root_indices {
        root_nodes.push(build_node(idx, &articles, &children_map, &index_by_id));
    }
    root_nodes
}

pub fn flatten_thread_tree(roots: &[ThreadNode], depth: usize, out: &mut Vec<ThreadedArticleView>) {
    let len = roots.len();
    for (i, node) in roots.iter().enumerate() {
        let is_last = i == len - 1;
        out.push(ThreadedArticleView {
            id: node.id.clone(),
            message_id: node.message_id.clone(),
            subject: node.subject.clone(),
            sender: node.sender.clone(),
            date: node.date.clone(),
            depth,
            is_last_child: is_last,
        });
        if !node.children.is_empty() {
            flatten_thread_tree(&node.children, depth + 1, out);
        }
    }
}

pub fn render_threaded_articles<'a>(
    window: &'a [ThreadedArticleView],
    start: usize,
    selected_article: usize,
    read_flags: &'a [bool],
    cols_width: usize,
    last_seen_id: u32,
) -> Vec<ListItem<'a>> {
    let mut last_child_tracker = [false; 100];

    window
        .iter()
        .enumerate()
        .map(|(i, item)| {
            let idx = start + i;
            let is_selected = idx == selected_article;
            let is_read = read_flags.get(idx).copied().unwrap_or(false);

            last_child_tracker[item.depth] = item.is_last_child;

            let mut indent = String::new();
            for depth in 0..item.depth {
                if last_child_tracker[depth] {
                    indent.push_str("  ");
                } else {
                    indent.push_str("");
                }
            }

            let connector = if item.depth > 0 {
                if item.is_last_child {
                    "└──"
                } else {
                    "├─"
                }
            } else {
                "├─"
            };

            let mark = if is_read {
                ""
            } else if item.depth == 0 && item.id.parse::<u32>().unwrap_or(0) > last_seen_id {
                "🆕"
            } else {
                "🟪"
            };

            let prefix = if is_selected { "> " } else { "  " };
            let sender_label = format!("[{}]", item.sender);

            let mut line = Line::from(vec![
                Span::raw(prefix),
                Span::raw(indent),
                Span::raw(connector),
                Span::raw(" "),
                Span::styled(mark, Style::default().fg(Color::Green)),
                Span::raw(" "),
                Span::styled(
                    sender_label,
                    Style::default().fg(if is_read {
                        Color::DarkGray
                    } else {
                        Color::Rgb(186, 85, 211)
                    }),
                ),
                Span::raw(" "),
                Span::styled(
                    &item.subject,
                    Style::default()
                        .add_modifier(Modifier::BOLD)
                        .fg(if is_read {
                            Color::Gray
                        } else if item.depth == 0 {
                            Color::Yellow
                        } else {
                            Color::White
                        }),
                ),
            ]);

            let max_len = cols_width - 2;
            let content_width = line.width();
            let padding = max_len.saturating_sub(content_width + item.date.len());
            line.spans.push(Span::raw(format!(
                "{:padding$}{}",
                "",
                item.date,
                padding = padding
            )));

            let item = ListItem::new(line);
            if is_selected {
                item.style(
                    Style::default()
                        .fg(Color::LightGreen)
                        .add_modifier(Modifier::BOLD),
                )
            } else {
                item
            }
        })
        .collect()
}

/*
pub fn render_threaded_articles<'a>(
    window: &'a [ThreadedArticleView],
    start: usize,
    selected_article: usize,
    read_flags: &'a [bool],
    cols_width: usize,
    last_seen_id: u32,
) -> Vec<ListItem<'a>> {
    window
        .iter()
        .enumerate()
        .map(|(i, item)| {
            let idx = start + i;
            let is_selected = idx == selected_article;
            let is_read = read_flags.get(idx).copied().unwrap_or(false);

            let mut indent = String::new();
            for _ in 0..item.depth.saturating_sub(1) {
                indent.push_str("│ ");
            }

            let connector = if item.depth > 0 {
                if item.is_last_child {
                    "└─"
                } else {
                    "├─"
                }
            } else {
                ""
            };

            let mark = if is_read {
                "✅"
            } else if item.depth == 0 && item.id.parse::<u32>().unwrap_or(0) > last_seen_id {
                "🆕"
            } else {
                "🟪"
            };

            let prefix = if is_selected { "> " } else { "  " };
            let sender_label = format!("[{}]", item.sender);

            let mut line = Line::from(vec![
                Span::raw(prefix),
                Span::raw(indent),
                Span::raw(connector),
                Span::raw(" "),
                Span::styled(mark, Style::default().fg(Color::Green)),
                Span::raw(" "),
                Span::styled(
                    sender_label,
                    Style::default().fg(if is_read {
                        Color::DarkGray
                    } else {
                        Color::Rgb(186, 85, 211)
                    }),
                ),
                Span::raw(" "),
                Span::styled(
                    &item.subject,
                    Style::default()
                        .add_modifier(Modifier::BOLD)
                        .fg(if is_read {
                            Color::Gray
                        } else if item.depth == 0 {
                            Color::Yellow
                        } else {
                            Color::White
                        }),
                ),
            ]);

            let max_len = cols_width - 2;
            let content_width = line.width();
            let padding = max_len.saturating_sub(content_width + item.date.len());
            line.spans.push(Span::raw(format!(
                "{:padding$}{}",
                "",
                item.date,
                padding = padding
            )));

            let item = ListItem::new(line);
            if is_selected {
                item.style(
                    Style::default()
                        .fg(Color::LightGreen)
                        .add_modifier(Modifier::BOLD),
                )
            } else {
                item
            }
        })
        .collect()
}
*/

pub fn render_articles<'a>(
    threaded_mode: bool,
    threaded_subjects: &'a [ThreadedArticleView],
    flat_subjects: &'a [(String, String, String, String)],
    start: usize,
    selected_article: usize,
    read_flags: &'a [bool],
    cols_width: usize,
    last_seen_id: u32,
) -> Vec<ListItem<'a>> {
    if threaded_mode {
        render_threaded_articles(
            &threaded_subjects[start..],
            start,
            selected_article,
            read_flags,
            cols_width,
            last_seen_id,
        )
    } else {
        flat_subjects[start..]
            .iter()
            .enumerate()
            .map(|(i, (_id, subj, sender, date))| {
                let idx = start + i;
                let is_selected = idx == selected_article;
                let is_read = read_flags.get(idx).copied().unwrap_or(false);

                let prefix = if is_selected { "> " } else { "  " };
                let mark = if is_read { "" } else { "🟪" };
                let sender_color = if is_read {
                    Color::DarkGray
                } else {
                    Color::Rgb(186, 85, 211)
                };
                let sender_label = format!("[{}]", sender);

                let mut line = Line::from(vec![
                    Span::raw(prefix),
                    Span::raw(" "),
                    Span::styled(mark, Style::default().fg(Color::Green)),
                    Span::raw(" "),
                    Span::styled(sender_label, Style::default().fg(sender_color)),
                    Span::raw(" "),
                    Span::raw(subj),
                ]);

                let max_len = cols_width;
                let content_width = line.width();
                let padding = max_len.saturating_sub(content_width + date.len());
                line.spans.push(Span::raw(format!(
                    "{:padding$}{}",
                    "",
                    date,
                    padding = padding
                )));

                let item = ListItem::new(line);
                if is_selected {
                    item.style(
                        Style::default()
                            .fg(Color::LightGreen)
                            .add_modifier(Modifier::BOLD),
                    )
                } else {
                    item
                }
            })
            .collect()
    }
}