todoke 0.3.14

A rule-driven file and URL dispatcher: hands incoming paths (or URLs) to the right handler based on TOML-defined rules.
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
//! Regex-based rule matcher. First-match-wins across [[rules]].
//!
//! Patterns are pre-compiled in [`crate::config::ResolvedConfig::compile`] so
//! hot-path matching is cheap. A rule matches if ANY of its `match` regexes
//! hit AND NONE of its `exclude` regexes hit.
//!
//! When a rule matches, the capture groups of the specific `match` regex
//! that hit are returned so the dispatcher can expose them to templates as
//! `{{ cap.N }}` / `{{ cap.<name> }}`.

use std::collections::BTreeMap;
use std::path::Path;

use crate::config::ResolvedConfig;
use crate::input::InputKind;

/// Ordered map of capture name → captured text. Numbered groups use string
/// keys `"0"`, `"1"`, ...; named groups use their declared name. The full
/// match is always at `"0"`.
pub type CaptureMap = BTreeMap<String, String>;

/// Strip Windows verbatim prefixes, converting `\\?\UNC\server\share\...` to
/// `\\server\share\...` and `\\?\C:\...` to `C:\...`. Everything else is
/// returned unchanged.
pub fn strip_verbatim(s: &str) -> String {
    if let Some(rest) = s.strip_prefix(r"\\?\UNC\") {
        return format!(r"\\{rest}");
    }
    if let Some(rest) = s.strip_prefix(r"\\?\") {
        return rest.to_string();
    }
    s.to_string()
}

/// Normalize a path for regex matching.
///
/// - Strips Windows `\\?\` verbatim prefixes (including `\\?\UNC\`).
/// - Converts backslashes to forward slashes.
///
/// A UNC path `\\server\share\file.txt` becomes `//server/share/file.txt`.
/// Local paths are in the same forward-slash form, giving users a single
/// canonical form to write regexes against.
pub fn normalize_path(p: &Path) -> String {
    strip_verbatim(&p.to_string_lossy()).replace('\\', "/")
}

/// Path form safe to pass to `nvim :edit`.
///
/// For UNC paths (`\\server\share\...`) we keep backslashes because nvim on
/// Windows goes through libuv which expects the native UNC form. For normal
/// paths we convert to forward slashes (nvim handles both, and slashes avoid
/// escape issues inside `:edit <path>`).
pub fn vim_path(p: &Path) -> String {
    let stripped = strip_verbatim(&p.to_string_lossy());
    if stripped.starts_with(r"\\") {
        stripped
    } else {
        stripped.replace('\\', "/")
    }
}

/// Find the first rule whose patterns match `subject`. A rule counts as
/// matching when ANY of its `match` patterns hits AND NONE of its `exclude`
/// patterns hits. The subject is whatever string form the caller chose
/// (normalized file path, raw URL, raw string) — see [`crate::input::Input`].
///
/// When `kind` is `Some(k)`, rules with an `input_type` clause that does not
/// include `k` are skipped even if their patterns would match. `None` means
/// "don't filter by kind" (used by the no-args / empty-subject path).
///
/// Returns the matching rule's index plus the [`CaptureMap`] extracted from
/// the specific match regex that hit (empty map when nothing captured).
pub fn first_match(
    cfg: &ResolvedConfig,
    subject: &str,
    kind: Option<InputKind>,
) -> Option<(usize, CaptureMap)> {
    for (i, regexes) in cfg.rule_regexes.iter().enumerate() {
        if let Some(k) = kind {
            if let Some(allowed) = &cfg.raw.rules[i].input_type {
                if !allowed.contains(k) {
                    continue;
                }
            }
        }
        let hit = regexes
            .iter()
            .find_map(|re| re.captures(subject).map(|c| (re, c)));
        let Some((re, caps)) = hit else {
            continue;
        };
        if cfg.rule_excludes[i].iter().any(|r| r.is_match(subject)) {
            continue;
        }

        let mut map = CaptureMap::new();
        for idx in 0..caps.len() {
            if let Some(m) = caps.get(idx) {
                map.insert(idx.to_string(), m.as_str().to_string());
            }
        }
        for name in re.capture_names().flatten() {
            if let Some(m) = caps.name(name) {
                map.insert(name.to_string(), m.as_str().to_string());
            }
        }
        return Some((i, map));
    }
    None
}

/// Shorter form for callers that don't want captures.
#[allow(dead_code)]
pub fn first_match_idx(cfg: &ResolvedConfig, subject: &str) -> Option<usize> {
    first_match(cfg, subject, None).map(|(i, _)| i)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::config::load_from_str;
    use std::path::PathBuf;

    #[test]
    fn normalize_strips_verbatim_prefix() {
        let p = PathBuf::from(r"\\?\C:\Users\x\file.txt");
        assert_eq!(normalize_path(&p), "C:/Users/x/file.txt");
    }

    #[test]
    fn normalize_converts_backslashes() {
        let p = PathBuf::from(r"C:\Users\x\file.txt");
        assert_eq!(normalize_path(&p), "C:/Users/x/file.txt");
    }

    #[test]
    fn normalize_unix_passthrough() {
        let p = PathBuf::from("/home/x/file.txt");
        assert_eq!(normalize_path(&p), "/home/x/file.txt");
    }

    #[test]
    fn normalize_unc_verbatim() {
        // \\?\UNC\server\share\file -> //server/share/file (for regex)
        let p = PathBuf::from(r"\\?\UNC\server\share\file.txt");
        assert_eq!(normalize_path(&p), "//server/share/file.txt");
    }

    #[test]
    fn normalize_unc_plain() {
        // \\server\share\file -> //server/share/file
        let p = PathBuf::from(r"\\server\share\file.txt");
        assert_eq!(normalize_path(&p), "//server/share/file.txt");
    }

    #[test]
    fn vim_path_preserves_unc_backslashes() {
        let p = PathBuf::from(r"\\server\share\file.txt");
        assert_eq!(vim_path(&p), r"\\server\share\file.txt");
    }

    #[test]
    fn vim_path_converts_verbatim_unc() {
        let p = PathBuf::from(r"\\?\UNC\server\share\file.txt");
        assert_eq!(vim_path(&p), r"\\server\share\file.txt");
    }

    #[test]
    fn vim_path_local_uses_forward_slashes() {
        let p = PathBuf::from(r"C:\Users\x\file.txt");
        assert_eq!(vim_path(&p), "C:/Users/x/file.txt");
    }

    #[test]
    fn vim_path_strips_verbatim_local() {
        let p = PathBuf::from(r"\\?\C:\Users\x\file.txt");
        assert_eq!(vim_path(&p), "C:/Users/x/file.txt");
    }

    #[test]
    fn first_match_returns_first_hit() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            name = "rs"
            match = '\.rs$'
            to = "a"

            [[rules]]
            name = "any"
            match = '.*'
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        assert_eq!(first_match_idx(&cfg, "/tmp/foo.rs"), Some(0));
        assert_eq!(first_match_idx(&cfg, "/tmp/README"), Some(1));
    }

    #[test]
    fn first_match_none_when_no_rule_fits() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            match = '\.rs$'
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        assert_eq!(first_match_idx(&cfg, "/tmp/README.md"), None);
    }

    #[test]
    fn array_match_is_or() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            match = ['\.rs$', '\.toml$']
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        assert_eq!(first_match_idx(&cfg, "/tmp/x.rs"), Some(0));
        assert_eq!(first_match_idx(&cfg, "/tmp/x.toml"), Some(0));
        assert_eq!(first_match_idx(&cfg, "/tmp/x.md"), None);
    }

    #[test]
    fn exclude_single_pattern_skips_rule() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            name = "code"
            match = '.*'
            exclude = '\.md$'
            to = "a"

            [[rules]]
            name = "fallback"
            match = '.*'
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        assert_eq!(first_match_idx(&cfg, "/x/foo.rs"), Some(0));
        assert_eq!(first_match_idx(&cfg, "/x/foo.md"), Some(1));
    }

    #[test]
    fn exclude_array_is_or() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            match = '.*'
            exclude = ['\.md$', '/tmp/']
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        assert_eq!(first_match_idx(&cfg, "/x/foo.rs"), Some(0));
        assert_eq!(first_match_idx(&cfg, "/x/foo.md"), None);
        assert_eq!(first_match_idx(&cfg, "/tmp/foo.rs"), None);
    }

    #[test]
    fn url_subjects_match_as_is() {
        let text = r#"
            [todoke.firefox]
            command = "firefox"

            [[rules]]
            match = '^https?://github\.com/'
            to = "firefox"
        "#;
        let cfg = load_from_str(text).unwrap();
        assert_eq!(
            first_match_idx(&cfg, "https://github.com/owner/repo"),
            Some(0)
        );
        assert_eq!(first_match_idx(&cfg, "https://gitlab.com/owner/repo"), None);
    }

    #[test]
    fn default_config_matches_commit_editmsg() {
        let cfg = load_from_str(crate::config::DEFAULT_CONFIG_TOML).unwrap();
        let idx = first_match_idx(&cfg, "/home/x/repo/.git/COMMIT_EDITMSG");
        assert_eq!(idx, Some(0), "expected editor-callback rule to match");
        assert_eq!(
            cfg.rule(idx.unwrap()).name.as_deref(),
            Some("editor-callback")
        );

        let idx = first_match_idx(&cfg, "/home/x/notes/idea.md");
        assert_eq!(idx, Some(1));
        assert_eq!(cfg.rule(idx.unwrap()).name.as_deref(), Some("default"));
    }

    #[test]
    fn captures_numbered_groups() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            match = '^gh:([^/]+)/(.+)$'
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        let (idx, caps) = first_match(&cfg, "gh:yukimemi/todoke", None).unwrap();
        assert_eq!(idx, 0);
        assert_eq!(
            caps.get("0").map(String::as_str),
            Some("gh:yukimemi/todoke")
        );
        assert_eq!(caps.get("1").map(String::as_str), Some("yukimemi"));
        assert_eq!(caps.get("2").map(String::as_str), Some("todoke"));
    }

    #[test]
    fn captures_named_groups() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            match = '^JIRA-(?P<id>\d+)$'
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        let (_, caps) = first_match(&cfg, "JIRA-4321", None).unwrap();
        assert_eq!(caps.get("id").map(String::as_str), Some("4321"));
        // Numbered access still works alongside names.
        assert_eq!(caps.get("1").map(String::as_str), Some("4321"));
    }

    #[test]
    fn input_type_filter_skips_non_matching_kinds() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            name = "raw-only"
            match = '^HEAD$'
            to = "a"
            input_type = "raw"

            [[rules]]
            name = "fallback"
            match = '.*'
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        // With kind=File, the raw-only rule is skipped and the catch-all wins.
        assert_eq!(
            first_match(&cfg, "HEAD", Some(InputKind::File)).map(|(i, _)| i),
            Some(1),
        );
        // With kind=Raw, the specific rule fires.
        assert_eq!(
            first_match(&cfg, "HEAD", Some(InputKind::Raw)).map(|(i, _)| i),
            Some(0),
        );
    }

    #[test]
    fn input_type_array_accepts_any_listed_kind() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            match = '.*'
            to = "a"
            input_type = ["file", "raw"]
        "#;
        let cfg = load_from_str(text).unwrap();
        assert_eq!(
            first_match(&cfg, "x", Some(InputKind::File)).map(|(i, _)| i),
            Some(0),
        );
        assert_eq!(
            first_match(&cfg, "x", Some(InputKind::Raw)).map(|(i, _)| i),
            Some(0),
        );
        assert!(first_match(&cfg, "x", Some(InputKind::Url)).is_none());
    }

    #[test]
    fn captures_empty_when_no_groups() {
        let text = r#"
            [todoke.a]
            command = "echo"

            [[rules]]
            match = '.*'
            to = "a"
        "#;
        let cfg = load_from_str(text).unwrap();
        let (_, caps) = first_match(&cfg, "anything", None).unwrap();
        // Full match still at "0".
        assert_eq!(caps.get("0").map(String::as_str), Some("anything"));
        // No other keys.
        assert_eq!(caps.len(), 1);
    }
}