pasejo 2026.5.10

passage re-implementation in Rust for teams
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
// SPDX-FileCopyrightText: The pasejo Authors
// SPDX-License-Identifier: 0BSD

//! User-facing string seam.
//!
//! All translatable text the application emits to the user lives here. The
//! actual messages live as Fluent files in `i18n/<lang>/pasejo.ftl`,
//! embedded into the binary by `rust-embed` and loaded at runtime through
//! `i18n-embed`. English (`en`) is the fallback language; other languages
//! activate when the desktop locale matches.
//!
//! Wrapper functions (one per message) keep call sites free of message ids
//! and Fluent details — they accept native Rust types and emit the result
//! through the appropriate channel (`log` macro for status/error logs,
//! `println!` for stdout, returned `String` for notification bodies).

use std::path::Path;
use std::sync::LazyLock;
use std::time::Duration;

use anyhow::{Context, Result};
use i18n_embed::fluent::{FluentLanguageLoader, fluent_language_loader};
use i18n_embed::{DesktopLanguageRequester, LanguageLoader};
use i18n_embed_fl::fl;
use log::{debug, error, info, warn};
use rust_embed::RustEmbed;
use unic_langid::LanguageIdentifier;

#[derive(RustEmbed)]
#[folder = "i18n/"]
struct Localizations;

static LANGUAGE_LOADER: LazyLock<FluentLanguageLoader> =
    LazyLock::new(|| fluent_language_loader!());

/// Loads the fallback language, selects the user's preferred language
/// based on the desktop locale, and applies project-wide Fluent settings.
/// Falls back to English when the requested locale has no translation.
pub fn init() -> Result<()> {
    LANGUAGE_LOADER
        .load_fallback_language(&Localizations)
        .context("Could not load fallback language")?;
    let requested = requested_languages();
    i18n_embed::select(&*LANGUAGE_LOADER, &Localizations, &requested)
        .context("Could not initialize translations")?;
    // Strip the bidi isolation marks Fluent wraps around interpolated
    // values by default. This keeps CLI output pipe-safe and snapshot tests
    // stable. Per i18n-embed docs `set_use_isolating` is a no-op until at
    // least one bundle has been loaded, so it must come *after* the loads
    // above. `select` may also have loaded an additional language bundle
    // whose `is_isolating` flag defaults back to true; this single call
    // applies the project-wide setting to every loaded bundle.
    LANGUAGE_LOADER.set_use_isolating(false);
    Ok(())
}

/// Test-only initializer for the language loader.
///
/// Unit tests don't go through `main`, so `init` never runs and any
/// `fl!` call returns the `"No localization for id: …"` placeholder
/// instead of a real string. This helper loads the English fallback
/// bundle deterministically — skipping the locale-driven `select` step
/// so a host `LANG=de_DE.UTF-8` (or similar) can't change which bundle
/// the assertions see — and turns off bidi isolation so the strings
/// match plain `assert_eq!` comparisons.
///
/// Idempotent: subsequent calls are a no-op, so it's cheap to invoke at
/// the top of every test that depends on resolved messages.
#[cfg(test)]
pub(crate) fn init_for_tests() {
    use std::sync::Once;
    static INIT: Once = Once::new();
    INIT.call_once(|| {
        LANGUAGE_LOADER
            .load_fallback_language(&Localizations)
            .expect("could not load English fallback bundle for tests");
        LANGUAGE_LOADER.set_use_isolating(false);
    });
}

/// Resolve the user's preferred languages.
///
/// We can't just call `DesktopLanguageRequester::requested_languages()`
/// directly: on macOS that delegates to `CFLocaleCopyPreferredLanguages`,
/// which reads System Preferences and ignores the POSIX `LANG` / `LC_*`
/// environment variables entirely. That makes it impossible to override
/// the locale from the shell or from CI, and it means our translation
/// snapshot tests (`cli_tests_de`, `cli_tests_es`, …) silently get the
/// English fallback on every macOS runner.
///
/// We follow standard CLI conventions instead: POSIX env vars win, the
/// OS-native preference is the fallback. Precedence matches GNU gettext —
/// `LANGUAGE` (colon-separated chain) overrides `LC_ALL`, which overrides
/// `LC_MESSAGES`, which overrides `LANG`. `C` / `POSIX` / unparseable
/// values are treated as "no specific locale", which lets the loader's
/// fallback language (English) be used.
fn requested_languages() -> Vec<LanguageIdentifier> {
    for var in ["LANGUAGE", "LC_ALL", "LC_MESSAGES", "LANG"] {
        let Ok(value) = std::env::var(var) else {
            continue;
        };
        if value.is_empty() {
            continue;
        }
        let candidates: Vec<&str> = if var == "LANGUAGE" {
            value.split(':').collect()
        } else {
            vec![value.as_str()]
        };
        return candidates
            .into_iter()
            .filter_map(parse_posix_locale)
            .collect();
    }
    DesktopLanguageRequester::requested_languages()
}

/// Strip the codeset (`.UTF-8`) and modifier (`@euro`) suffixes a POSIX
/// locale tag may carry, normalize the underscore POSIX uses to the
/// hyphen BCP 47 expects, and return `None` for empty / `C` / `POSIX`
/// values so the caller can fall through to the next env var or to the
/// loader's fallback language.
fn parse_posix_locale(raw: &str) -> Option<LanguageIdentifier> {
    let trimmed = raw.split('.').next()?.split('@').next()?.trim();
    if trimmed.is_empty()
        || trimmed.eq_ignore_ascii_case("C")
        || trimmed.eq_ignore_ascii_case("POSIX")
    {
        return None;
    }
    trimmed.replace('_', "-").parse().ok()
}

const fn bool_key(value: bool) -> &'static str {
    if value { "true" } else { "false" }
}

fn path_string(path: &Path) -> String {
    path.display().to_string()
}

fn duration_string(duration: &Duration) -> String {
    format!("{duration:?}")
}

pub fn recipient_added(public_key: &str) {
    info!(
        "{}",
        fl!(LANGUAGE_LOADER, "recipient-added", public_key = public_key)
    );
}

pub fn recipient_removed(public_key: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "recipient-removed",
            public_key = public_key
        )
    );
}

pub fn secret_added(secret_path: &str) {
    info!(
        "{}",
        fl!(LANGUAGE_LOADER, "secret-added", secret_path = secret_path)
    );
}

pub fn secret_edited(secret_path: &str) {
    info!(
        "{}",
        fl!(LANGUAGE_LOADER, "secret-edited", secret_path = secret_path)
    );
}

pub fn one_time_password_added(password_path: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "one-time-password-added",
            password_path = password_path
        )
    );
}

pub fn one_time_password_copied(source_path: &str, target_path: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "one-time-password-copied",
            source_path = source_path,
            target_path = target_path
        )
    );
}

pub fn one_time_password_moved(source_path: &str, target_path: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "one-time-password-moved",
            source_path = source_path,
            target_path = target_path
        )
    );
}

pub fn one_time_password_removed(password_path: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "one-time-password-removed",
            password_path = password_path
        )
    );
}

pub fn one_time_password_copy_into_clipboard(password_path: &str, duration: &Duration) {
    let duration = duration_string(duration);
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "one-time-password-copy-into-clipboard",
            password_path = password_path,
            duration = duration.as_str()
        )
    );
}

pub fn secret_generated(secret_path: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "secret-generated",
            secret_path = secret_path
        )
    );
}

pub fn secret_show_as_qrcode(secret_path: &str) {
    debug!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "secret-show-as-qrcode",
            secret_path = secret_path
        )
    );
}

pub fn secret_show_as_text(secret_path: &str) {
    debug!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "secret-show-as-text",
            secret_path = secret_path
        )
    );
}

pub fn secret_copy_into_clipboard(secret_path: &str, duration: &Duration) {
    let duration = duration_string(duration);
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "secret-copy-into-clipboard",
            secret_path = secret_path,
            duration = duration.as_str()
        )
    );
}

pub fn one_time_password_show(password_path: &str) {
    debug!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "one-time-password-show",
            password_path = password_path
        )
    );
}

pub fn identity_added(identity_file: &Path) {
    let identity_file = path_string(identity_file);
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "identity-added",
            identity_file = identity_file.as_str()
        )
    );
}

pub fn identity_removed(identity_file: &Path) {
    let identity_file = path_string(identity_file);
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "identity-removed",
            identity_file = identity_file.as_str()
        )
    );
}

pub fn store_add_success(store_name: &str, store_path: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "store-add-success",
            store_name = store_name,
            store_path = store_path
        )
    );
}

pub fn store_set_default(store_name: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "store-set-default",
            store_name = store_name
        )
    );
}

pub fn store_remove_success(store_name: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "store-remove-success",
            store_name = store_name
        )
    );
}

pub fn execute_pull_hooks(store_name: &str) {
    debug!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "execute-pull-hooks",
            store_name = store_name
        )
    );
}

pub fn execute_push_hooks(store_name: &str) {
    debug!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "execute-push-hooks",
            store_name = store_name
        )
    );
}

pub fn recipient_does_not_exist_ignored(public_key: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "recipient-does-not-exist-ignored",
            public_key = public_key
        )
    );
}

pub fn no_identities_exist_yet(store_name: &str) {
    warn!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "no-identities-exist-yet",
            store_name = store_name
        )
    );
}

pub fn merge_conflict_recipient_names(public_key: &str, first_name: &str, second_name: &str) {
    error!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "merge-conflict-recipient-names",
            public_key = public_key,
            first_name = first_name,
            second_name = second_name
        )
    );
}

pub fn merge_conflict_recipient_removed_and_renamed(public_key: &str, new_name: &str) {
    error!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "merge-conflict-recipient-removed-and-renamed",
            public_key = public_key,
            new_name = new_name
        )
    );
}

pub fn merge_conflict_values(value_type: &str, secret_path: &str) {
    error!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "merge-conflict-values",
            value_type = value_type,
            secret_path = secret_path
        )
    );
}

pub fn merge_conflict_removed_and_modified(value_type: &str, secret_path: &str) {
    error!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "merge-conflict-removed-and-modified",
            value_type = value_type,
            secret_path = secret_path
        )
    );
}

pub fn secret_copied(source_path: &str, target_path: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "secret-copied",
            source_path = source_path,
            target_path = target_path
        )
    );
}

pub fn secret_moved(source_path: &str, target_path: &str) {
    info!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "secret-moved",
            source_path = source_path,
            target_path = target_path
        )
    );
}

pub fn secret_removed(secret_path: &str) {
    info!(
        "{}",
        fl!(LANGUAGE_LOADER, "secret-removed", secret_path = secret_path)
    );
}

pub fn list_global_identity(identity_file: &Path) {
    let identity_file = path_string(identity_file);
    println!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "list-global-identity",
            identity_file = identity_file.as_str()
        )
    );
}

pub fn list_store_identity(identity_file: &Path) {
    let identity_file = path_string(identity_file);
    println!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "list-store-identity",
            identity_file = identity_file.as_str()
        )
    );
}

pub fn list_global_pull_hook(command: &str) {
    println!(
        "{}",
        fl!(LANGUAGE_LOADER, "list-global-pull-hook", command = command)
    );
}

pub fn list_global_push_hook(command: &str) {
    println!(
        "{}",
        fl!(LANGUAGE_LOADER, "list-global-push-hook", command = command)
    );
}

pub fn list_store_pull_hook(command: &str) {
    println!(
        "{}",
        fl!(LANGUAGE_LOADER, "list-store-pull-hook", command = command)
    );
}

pub fn list_store_push_hook(command: &str) {
    println!(
        "{}",
        fl!(LANGUAGE_LOADER, "list-store-push-hook", command = command)
    );
}

pub fn list_store(store_name: &str, store_path: &Path, is_default: bool) {
    let store_path = path_string(store_path);
    println!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "list-store",
            store_name = store_name,
            store_path = store_path.as_str(),
            is_default = bool_key(is_default)
        )
    );
}

pub fn password_strength(secret_path: &str, score: f64) {
    println!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "password-strength",
            secret_path = secret_path,
            score = score
        )
    );
}

pub fn secret_search_match(key: &str, value: &str) {
    println!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "secret-search-match",
            key = key,
            value = value
        )
    );
}

pub fn clipboard_read_for_compare_failed(error: &impl std::fmt::Display) {
    let error = error.to_string();
    debug!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "clipboard-read-for-compare-failed",
            error = error.as_str()
        )
    );
}

pub fn clipboard_ctrlc_handler_install_failed(error: &impl std::fmt::Display) {
    let error = error.to_string();
    warn!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "clipboard-ctrlc-handler-install-failed",
            error = error.as_str()
        )
    );
}

pub fn clipboard_clear_failed(error: &impl std::fmt::Display) {
    let error = error.to_string();
    warn!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "clipboard-clear-failed",
            error = error.as_str()
        )
    );
}

pub fn clipboard_manual_clear_required() {
    error!(
        "{}",
        fl!(LANGUAGE_LOADER, "clipboard-manual-clear-required")
    );
}

pub fn clipboard_notification_dispatch_failed(error: &impl std::fmt::Display) {
    let error = error.to_string();
    debug!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "clipboard-notification-dispatch-failed",
            error = error.as_str()
        )
    );
}

pub fn clipboard_drop_clear_failed(error: &impl std::fmt::Display) {
    let error = error.to_string();
    debug!(
        "{}",
        fl!(
            LANGUAGE_LOADER,
            "clipboard-drop-clear-failed",
            error = error.as_str()
        )
    );
}

pub fn clipboard_notification_cleared(cancelled: bool) -> String {
    fl!(
        LANGUAGE_LOADER,
        "clipboard-notification-cleared",
        cancelled = bool_key(cancelled)
    )
}

pub fn clipboard_notification_unchanged(cancelled: bool) -> String {
    fl!(
        LANGUAGE_LOADER,
        "clipboard-notification-unchanged",
        cancelled = bool_key(cancelled)
    )
}

pub fn clipboard_notification_forcibly_cleared(cancelled: bool) -> String {
    fl!(
        LANGUAGE_LOADER,
        "clipboard-notification-forcibly-cleared",
        cancelled = bool_key(cancelled)
    )
}

pub fn clipboard_notification_failed(cancelled: bool) -> String {
    fl!(
        LANGUAGE_LOADER,
        "clipboard-notification-failed",
        cancelled = bool_key(cancelled)
    )
}