pickey 0.4.0

Automatic SSH key selection for git
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
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
use std::collections::{BTreeMap, BTreeSet};
use std::path::{Path, PathBuf};
use std::process::Command;

use crate::config;

/// `pickey init` — set up pickey: write config, fix conflicts, enable globally.
/// With `--dry-run`: preview what would happen without making changes.
pub fn init(dry_run: bool) {
    let home = dirs::home_dir().unwrap_or_default();

    // Scan environment
    let ssh_dir = home.join(".ssh");
    let extra_key_paths = collect_identity_files_from_ssh_config(&ssh_dir);
    let keys = find_ssh_keys(&ssh_dir, &extra_key_paths);
    let git_info = scan_git_config();
    let scanned_dirs: Vec<String> = git_info
        .include_ifs
        .iter()
        .map(|i| {
            i.pattern
                .trim_end_matches("**")
                .trim_end_matches('/')
                .to_string()
        })
        .collect();
    let local_overrides = find_repos_with_local_ssh_command(&git_info.include_ifs);
    let suggestion_build = build_suggestions(&git_info, &keys, &local_overrides);
    let suggestions = &suggestion_build.rules;

    let already_enabled = git_info
        .global_ssh_command
        .as_deref()
        .is_some_and(|cmd| cmd.contains("pickey"));
    let has_foreign_global = git_info
        .global_ssh_command
        .as_deref()
        .is_some_and(|cmd| !cmd.contains("pickey"));
    let has_include_conflicts = git_info.include_ifs.iter().any(|i| i.ssh_command.is_some());
    let has_local_conflicts = !local_overrides.is_empty();

    if dry_run {
        // Verbose diagnostic output
        print_dry_run(DryRunInput {
            keys: &keys,
            git_info: &git_info,
            local_overrides: &local_overrides,
            suggestions,
            manual_rules: &suggestion_build.manual_rules,
            scanned_dirs: &scanned_dirs,
            already_enabled,
            has_foreign_global,
            has_include_conflicts,
            has_local_conflicts,
        });
        return;
    }

    // --- Apply mode (default) ---
    println!("pickey init\n");

    let mut changed = false;

    // 1. Config
    let config_path = config::default_config_path();
    let config_display = make_display_path(&config_path, &home);

    if suggestions.is_empty() && !config_path.exists() {
        println!("✗ No rules auto-detected and no config exists.");
        println!(
            "  Create {} manually, or add SSH keys and includeIf entries first.",
            config_display
        );
        print_manual_rule_actions(&suggestion_build.manual_rules);
        return;
    }

    if config_path.exists() {
        let merged = merge_config(&config_path, suggestions);
        match merged {
            ConfigMergeResult::Unchanged(count) => {
                println!("✓ Config: {} ({} rules, up to date)", config_display, count);
            }
            ConfigMergeResult::Updated {
                toml,
                total,
                added,
                removed,
            } => {
                if let Err(e) = write_config(&config_path, &toml) {
                    println!("✗ Failed to write {}: {}", config_display, e);
                } else {
                    let mut parts = Vec::new();
                    if added > 0 {
                        parts.push(format!("+{} new", added));
                    }
                    if removed > 0 {
                        parts.push(format!("-{} stale", removed));
                    }
                    println!(
                        "✓ Updated {} ({} rules, {})",
                        config_display,
                        total,
                        parts.join(", ")
                    );
                    changed = true;
                }
            }
        }
    } else if !suggestions.is_empty() {
        let toml = format_auto_config(suggestions);
        if let Err(e) = write_config(&config_path, &toml) {
            println!("✗ Failed to write {}: {}", config_display, e);
        } else {
            println!("✓ Wrote {} ({} rules)", config_display, suggestions.len());
            changed = true;
        }
    }

    print_manual_rule_actions(&suggestion_build.manual_rules);

    // 2. Fix conflicts
    if has_include_conflicts || has_local_conflicts {
        let mut fixed = 0;
        let mut failed = Vec::new();

        if has_include_conflicts {
            for inc in git_info
                .include_ifs
                .iter()
                .filter(|i| i.ssh_command.is_some())
            {
                let config_file = if let Some(tail) = inc.config_path.strip_prefix("~/") {
                    home.join(tail)
                } else {
                    PathBuf::from(&inc.config_path)
                };
                match disable_ssh_command(&config_file) {
                    Ok(()) => fixed += 1,
                    Err(e) => failed.push(format!("{}: {}", inc.config_path, e)),
                }
            }
        }
        if has_local_conflicts {
            for ov in &local_overrides {
                let config_file = ov.repo_dir.join(".git/config");
                match disable_ssh_command(&config_file) {
                    Ok(()) => fixed += 1,
                    Err(e) => {
                        let display = make_display_path(&ov.repo_dir, &home);
                        failed.push(format!("{}: {}", display, e));
                    }
                }
            }
        }

        if failed.is_empty() {
            println!(
                "✓ Fixed {} sshCommand conflict{}",
                fixed,
                if fixed == 1 { "" } else { "s" }
            );
            changed = true;
        } else {
            println!(
                "✓ Fixed {} sshCommand conflict{}",
                fixed,
                if fixed == 1 { "" } else { "s" }
            );
            changed = true;
            for f in &failed {
                println!("{}", f);
            }
        }
    }

    // 3. Enable global sshCommand
    if already_enabled {
        println!("✓ Global sshCommand: pickey");
    } else {
        if has_foreign_global {
            let prev = git_info.global_ssh_command.as_deref().unwrap();
            let _ = Command::new("git")
                .args(["config", "--global", "pickey.previousSshCommand", prev])
                .status();
        }
        let status = Command::new("git")
            .args(["config", "--global", "core.sshCommand", "pickey"])
            .status();
        match status {
            Ok(s) if s.success() => {
                println!("✓ Enabled as global sshCommand");
                changed = true;
            }
            _ => println!("✗ Failed to set global core.sshCommand"),
        }
    }

    if changed {
        println!("\nUndo with `pickey init --revert`.");
    }
}

struct DryRunInput<'a> {
    keys: &'a [SshKey],
    git_info: &'a GitInfo,
    local_overrides: &'a [LocalSshOverride],
    suggestions: &'a [SuggestedRule],
    manual_rules: &'a [ManualRule],
    scanned_dirs: &'a [String],
    already_enabled: bool,
    has_foreign_global: bool,
    has_include_conflicts: bool,
    has_local_conflicts: bool,
}

fn print_dry_run(input: DryRunInput<'_>) {
    let home = dirs::home_dir().unwrap_or_default();
    println!("pickey init --dry-run\n");

    // Keys
    if input.keys.is_empty() {
        println!("Keys: (none found)");
    } else {
        let mut by_dir: Vec<(String, Vec<String>)> = Vec::new();
        for key in input.keys {
            let dir_display = key
                .path
                .parent()
                .map(|p| make_display_path(p, &home))
                .unwrap_or_default();
            let name = key
                .path
                .file_name()
                .map(|n| n.to_string_lossy().to_string())
                .unwrap_or_default();
            if let Some(entry) = by_dir.iter_mut().find(|(d, _)| d == &dir_display) {
                entry.1.push(name);
            } else {
                by_dir.push((dir_display, vec![name]));
            }
        }
        for (dir, names) in &by_dir {
            println!("Keys: {} ({} found)", dir, names.len());
            let mut sorted = names.clone();
            sorted.sort();
            println!("  {}", sorted.join(", "));
        }
    }

    // Global sshCommand status
    if input.already_enabled {
        println!("\nGlobal sshCommand: pickey ✓");
    } else if input.has_foreign_global {
        println!(
            "\nGlobal sshCommand: {} (will be replaced)",
            input.git_info.global_ssh_command.as_deref().unwrap()
        );
    } else {
        println!("\nGlobal sshCommand: (not set, will enable)");
    }

    // Conflicts
    if input.has_include_conflicts || input.has_local_conflicts {
        println!("\nConflicts to fix:");
        if input.has_include_conflicts {
            for inc in input
                .git_info
                .include_ifs
                .iter()
                .filter(|i| i.ssh_command.is_some())
            {
                println!("  sshCommand in {} will be disabled", inc.config_path);
            }
        }
        if input.has_local_conflicts {
            for ov in input.local_overrides {
                let display = make_display_path(&ov.repo_dir, &home);
                println!("  sshCommand in {} will be disabled", display);
            }
        }
    }

    // Suggested rules
    let config_path = config::default_config_path();
    let config_display = make_display_path(&config_path, &home);

    if input.suggestions.is_empty() {
        println!("\nNo rules auto-detected.");
    } else {
        println!("\nAuto-detected rules ({}):", input.suggestions.len());
        for s in input.suggestions {
            print!("  {} ", s.host);
            if let Some(pat) = &s.match_pattern {
                print!("{} ", pat);
            }
            print!("{}", s.key_display);
            if let Some(port) = s.port {
                print!(" :{}", port);
            }
            println!();
        }
    }

    print_manual_rule_actions(input.manual_rules);

    if config_path.exists() {
        let merged = merge_config(&config_path, input.suggestions);
        match merged {
            ConfigMergeResult::Unchanged(count) => {
                println!("\nConfig: {} ({} rules, up to date)", config_display, count);
            }
            ConfigMergeResult::Updated {
                total,
                added,
                removed,
                ..
            } => {
                let mut parts = Vec::new();
                if added > 0 {
                    parts.push(format!("+{} new", added));
                }
                if removed > 0 {
                    parts.push(format!("-{} stale", removed));
                }
                println!(
                    "\nConfig: {} (would update: {} rules, {})",
                    config_display,
                    total,
                    parts.join(", ")
                );
            }
        }
    } else {
        println!("\nConfig: {} (will be created)", config_display);
    }

    if !input.scanned_dirs.is_empty() {
        println!("\nScope: repos under {}.", input.scanned_dirs.join(", "));
    }

    println!("\nRun `pickey init` to apply.");
}

// --- Config merging ---

enum ConfigMergeResult {
    Unchanged(usize),
    Updated {
        toml: String,
        total: usize,
        added: usize,
        removed: usize,
    },
}

/// Merge auto-detected rules into existing config, preserving user (non-auto) rules.
fn merge_config(config_path: &Path, suggestions: &[SuggestedRule]) -> ConfigMergeResult {
    let existing = config::load_config(Some(config_path));
    let existing_rules = match &existing {
        Ok(config) => &config.rules,
        Err(_) => {
            return ConfigMergeResult::Updated {
                toml: format_auto_config(suggestions),
                total: suggestions.len(),
                added: suggestions.len(),
                removed: 0,
            }
        }
    };

    let user_rules: Vec<&config::Rule> = existing_rules.iter().filter(|r| !r.auto).collect();
    let old_auto: Vec<&config::Rule> = existing_rules.iter().filter(|r| r.auto).collect();

    // Check if auto rules match suggestions
    let auto_match = old_auto.len() == suggestions.len()
        && suggestions.iter().enumerate().all(|(i, s)| {
            let r = old_auto[i];
            r.host == s.host
                && r.match_pattern == s.match_pattern
                && r.key == s.key_display
                && r.port == s.port
                && r.email == s.email
                && r.name == s.name
        });

    if auto_match || (suggestions.is_empty() && !old_auto.is_empty()) {
        // No new suggestions but auto rules exist — keep them (source data may be gone after apply)
        return ConfigMergeResult::Unchanged(existing_rules.len());
    }

    // Build new TOML: user rules first, then new auto rules
    let mut toml = String::new();
    for (i, rule) in user_rules.iter().enumerate() {
        if i > 0 {
            toml.push('\n');
        }
        toml.push_str(&format_rule(rule));
    }

    let added = suggestions.len();
    let removed = old_auto.len();

    if !user_rules.is_empty() && !suggestions.is_empty() {
        toml.push('\n');
    }
    for (i, s) in suggestions.iter().enumerate() {
        if i > 0 {
            toml.push('\n');
        }
        toml.push_str(&format_suggested_rule_with_auto(s));
    }

    let total = user_rules.len() + suggestions.len();

    ConfigMergeResult::Updated {
        toml,
        total,
        added,
        removed,
    }
}

fn format_rule(rule: &config::Rule) -> String {
    let mut out = String::new();
    out.push_str("[[rule]]\n");
    if rule.auto {
        out.push_str("auto = true\n");
    }
    out.push_str(&format!("host = \"{}\"\n", rule.host));
    if let Some(pat) = &rule.match_pattern {
        out.push_str(&format!("match = \"{}\"\n", pat));
    }
    out.push_str(&format!("key = \"{}\"\n", rule.key));
    if let Some(port) = rule.port {
        out.push_str(&format!("port = {}\n", port));
    }
    if let Some(email) = &rule.email {
        out.push_str(&format!("email = \"{}\"\n", email));
    }
    if let Some(name) = &rule.name {
        out.push_str(&format!("name = \"{}\"\n", name));
    }
    out
}

fn format_suggested_rule_with_auto(rule: &SuggestedRule) -> String {
    let mut out = String::new();
    out.push_str("[[rule]]\n");
    out.push_str("auto = true\n");
    out.push_str(&format!("host = \"{}\"\n", rule.host));
    if let Some(pat) = &rule.match_pattern {
        out.push_str(&format!("match = \"{}\"\n", pat));
    }
    out.push_str(&format!("key = \"{}\"\n", rule.key_display));
    if let Some(port) = rule.port {
        out.push_str(&format!("port = {}\n", port));
    }
    if let Some(email) = &rule.email {
        out.push_str(&format!("email = \"{}\"\n", email));
    }
    if let Some(name) = &rule.name {
        out.push_str(&format!("name = \"{}\"\n", name));
    }
    out
}

fn format_auto_config(suggestions: &[SuggestedRule]) -> String {
    let mut out = String::new();
    for (i, rule) in suggestions.iter().enumerate() {
        if i > 0 {
            out.push('\n');
        }
        out.push_str(&format_suggested_rule_with_auto(rule));
    }
    out
}

fn write_config(path: &Path, toml: &str) -> std::io::Result<()> {
    if let Some(parent) = path.parent() {
        std::fs::create_dir_all(parent)?;
    }
    std::fs::write(path, toml)
}

// --- Conflict resolution via git config --file ---

/// Back up and unset core.sshCommand in a git config file.
fn disable_ssh_command(path: &Path) -> Result<(), String> {
    let path_str = path.to_string_lossy();

    // Read current sshCommand
    let output = Command::new("git")
        .args(["config", "--file", &path_str, "core.sshCommand"])
        .output()
        .map_err(|e| e.to_string())?;

    if !output.status.success() {
        return Err("no sshCommand found".to_string());
    }

    let current = String::from_utf8_lossy(&output.stdout).trim().to_string();
    if current.is_empty() {
        return Err("empty sshCommand".to_string());
    }

    // Back up to pickey.previousSshCommand
    let status = Command::new("git")
        .args([
            "config",
            "--file",
            &path_str,
            "pickey.previousSshCommand",
            &current,
        ])
        .status()
        .map_err(|e| e.to_string())?;

    if !status.success() {
        return Err("failed to write backup".to_string());
    }

    // Unset core.sshCommand
    let status = Command::new("git")
        .args(["config", "--file", &path_str, "--unset", "core.sshCommand"])
        .status()
        .map_err(|e| e.to_string())?;

    if !status.success() {
        return Err("failed to unset sshCommand".to_string());
    }

    Ok(())
}

/// Restore core.sshCommand from pickey.previousSshCommand backup.
fn restore_ssh_command(path: &Path) -> Result<bool, String> {
    let path_str = path.to_string_lossy();

    // Check for backup
    let output = Command::new("git")
        .args(["config", "--file", &path_str, "pickey.previousSshCommand"])
        .output()
        .map_err(|e| e.to_string())?;

    if !output.status.success() {
        return Ok(false);
    }

    let prev = String::from_utf8_lossy(&output.stdout).trim().to_string();
    if prev.is_empty() {
        return Ok(false);
    }

    // Restore
    let status = Command::new("git")
        .args(["config", "--file", &path_str, "core.sshCommand", &prev])
        .status()
        .map_err(|e| e.to_string())?;

    if !status.success() {
        return Err("failed to restore sshCommand".to_string());
    }

    // Clean up backup
    let _ = Command::new("git")
        .args(["config", "--file", &path_str, "--remove-section", "pickey"])
        .stderr(std::process::Stdio::null())
        .status();

    Ok(true)
}

/// Check if a git config file has a pickey.previousSshCommand backup.
fn has_pickey_backup(path: &Path) -> bool {
    let path_str = path.to_string_lossy();
    Command::new("git")
        .args(["config", "--file", &path_str, "pickey.previousSshCommand"])
        .output()
        .map(|o| o.status.success())
        .unwrap_or(false)
}

/// Collect all git config files that have a pickey.previousSshCommand backup.
fn find_pickey_managed_files() -> Vec<PathBuf> {
    let home = dirs::home_dir().unwrap_or_default();
    let mut files = Vec::new();

    // Check includeIf config files referenced from global gitconfig
    let git_info = scan_git_config();
    for inc in &git_info.include_ifs {
        let config_file = if let Some(tail) = inc.config_path.strip_prefix("~/") {
            home.join(tail)
        } else {
            PathBuf::from(&inc.config_path)
        };
        if has_pickey_backup(&config_file) {
            files.push(config_file);
        }
    }

    // Check repos under includeIf dirs for .git/config with pickey backup
    for inc in &git_info.include_ifs {
        let dir = if let Some(tail) = inc.pattern.strip_prefix("~/") {
            let tail = tail.trim_end_matches("**").trim_end_matches('/');
            home.join(tail)
        } else {
            let cleaned = inc.pattern.trim_end_matches("**").trim_end_matches('/');
            PathBuf::from(cleaned)
        };
        if dir.is_dir() {
            collect_pickey_repo_configs(&dir, 0, 4, &mut files);
        }
    }

    files
}

fn collect_pickey_repo_configs(dir: &Path, depth: u32, max_depth: u32, files: &mut Vec<PathBuf>) {
    if depth > max_depth {
        return;
    }
    let entries = match std::fs::read_dir(dir) {
        Ok(e) => e,
        Err(_) => return,
    };
    for entry in entries.filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.is_dir() {
            if path.file_name().is_some_and(|n| n == ".git") {
                let config = path.join("config");
                if has_pickey_backup(&config) {
                    files.push(config);
                }
            } else if !path.file_name().is_some_and(|n| {
                n.to_string_lossy().starts_with('.') || n == "node_modules" || n == "target"
            }) {
                collect_pickey_repo_configs(&path, depth + 1, max_depth, files);
            }
        }
    }
}

/// `pickey init --revert` — undo all changes and unset global sshCommand.
pub fn revert() {
    let home = dirs::home_dir().unwrap_or_default();
    let files = find_pickey_managed_files();

    if files.is_empty() {
        // Also check if global sshCommand is pickey
        let global_cmd = git_config_get("core.sshCommand", &["--global"]);
        if global_cmd.as_deref() != Some("pickey") {
            println!("Nothing to revert.");
            return;
        }
    }

    println!("Reverting pickey changes:\n");

    // Restore sshCommand in all managed files
    for file in &files {
        let display = make_display_path(file, &home);
        match restore_ssh_command(file) {
            Ok(true) => println!("  ✓ Restored sshCommand in {}", display),
            Ok(false) => {}
            Err(e) => println!("  ✗ Failed to restore {}: {}", display, e),
        }
    }

    // Restore or unset global sshCommand
    let global_cmd = git_config_get("core.sshCommand", &["--global"]);
    if global_cmd.as_deref() == Some("pickey") {
        let backup = git_config_get("pickey.previousSshCommand", &["--global"]);
        if let Some(prev) = backup {
            let status = Command::new("git")
                .args(["config", "--global", "core.sshCommand", &prev])
                .status();
            match status {
                Ok(s) if s.success() => {
                    println!("  ✓ Restored global core.sshCommand to: {}", prev)
                }
                _ => println!("  ✗ Failed to restore global core.sshCommand"),
            }
        } else {
            let status = Command::new("git")
                .args(["config", "--global", "--unset", "core.sshCommand"])
                .status();
            match status {
                Ok(s) if s.success() => println!("  ✓ Unset global core.sshCommand"),
                _ => println!("  ✗ Failed to unset global core.sshCommand"),
            }
        }
        // Clean up backup key (suppress stderr if section doesn't exist)
        let _ = Command::new("git")
            .args(["config", "--global", "--remove-section", "pickey"])
            .stderr(std::process::Stdio::null())
            .status();
    }

    println!("\nDone. pickey is no longer active.");
}

// --- SSH key discovery ---

struct SshKey {
    path: PathBuf,
}

fn find_ssh_keys(ssh_dir: &Path, extra_paths: &[PathBuf]) -> Vec<SshKey> {
    let mut keys = Vec::new();
    let mut seen = BTreeSet::new();

    // Scan ~/.ssh/ for .pub files
    if ssh_dir.is_dir() {
        if let Ok(entries) = std::fs::read_dir(ssh_dir) {
            let mut pub_files: Vec<_> = entries
                .filter_map(|e| e.ok())
                .filter(|e| e.path().extension().is_some_and(|ext| ext == "pub"))
                .collect();
            pub_files.sort_by_key(|e| e.path());

            for entry in pub_files {
                let pub_path = entry.path();
                let priv_path = pub_path.with_extension("");
                if priv_path.exists() && seen.insert(priv_path.clone()) {
                    keys.push(SshKey { path: priv_path });
                }
            }
        }
    }

    // Add any extra keys from ssh_config IdentityFile directives
    for path in extra_paths {
        if path.exists() && seen.insert(path.clone()) {
            keys.push(SshKey { path: path.clone() });
        }
    }

    keys
}

/// Convert a path to a display-friendly string, using `~` for the home directory.
fn make_display_path(path: &Path, home: &Path) -> String {
    if let Ok(rel) = path.strip_prefix(home) {
        format!("~/{}", rel.display())
    } else {
        path.display().to_string()
    }
}

/// Parse IdentityFile directives from ~/.ssh/config and /etc/ssh/ssh_config
/// to find keys that may not be in ~/.ssh/.
fn collect_identity_files_from_ssh_config(ssh_dir: &Path) -> Vec<PathBuf> {
    let mut paths = Vec::new();
    let home = dirs::home_dir().unwrap_or_default();

    let config_files = [ssh_dir.join("config"), PathBuf::from("/etc/ssh/ssh_config")];

    for config_file in &config_files {
        if let Ok(contents) = std::fs::read_to_string(config_file) {
            for line in contents.lines() {
                let trimmed = line.trim();
                // Skip comments
                if trimmed.starts_with('#') {
                    continue;
                }
                // Look for IdentityFile directives (case-insensitive)
                if let Some(rest) = trimmed.strip_prefix("IdentityFile") {
                    let rest = rest.trim();
                    if !rest.is_empty() {
                        let expanded = if let Some(tail) = rest.strip_prefix("~/") {
                            home.join(tail)
                        } else {
                            PathBuf::from(rest)
                        };
                        paths.push(expanded);
                    }
                }
            }
        }
    }

    paths
}

// --- Repo-local sshCommand detection ---

struct LocalSshOverride {
    repo_dir: PathBuf,
    ssh_command: String,
    remote_url: Option<String>,
}

/// Scan directories from includeIf patterns for repos with local core.sshCommand set.
fn find_repos_with_local_ssh_command(include_ifs: &[IncludeIfRule]) -> Vec<LocalSshOverride> {
    let home = dirs::home_dir().unwrap_or_default();
    let mut overrides = Vec::new();

    // Only scan directories we know about from includeIf patterns
    for inc in include_ifs {
        let dir = if let Some(tail) = inc.pattern.strip_prefix("~/") {
            let tail = tail.trim_end_matches("**").trim_end_matches('/');
            home.join(tail)
        } else {
            let cleaned = inc.pattern.trim_end_matches("**").trim_end_matches('/');
            PathBuf::from(cleaned)
        };

        if dir.is_dir() {
            collect_repos_with_local_ssh(&dir, 0, 4, &mut overrides);
        }
    }

    overrides
}

fn collect_repos_with_local_ssh(
    dir: &Path,
    depth: u32,
    max_depth: u32,
    overrides: &mut Vec<LocalSshOverride>,
) {
    if depth > max_depth {
        return;
    }

    let entries = match std::fs::read_dir(dir) {
        Ok(e) => e,
        Err(_) => return,
    };

    for entry in entries.filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.is_dir() {
            if path.file_name().is_some_and(|n| n == ".git") {
                // Found a repo — check for local sshCommand
                if let Some(ssh_cmd) = get_local_ssh_command(dir) {
                    let remote_url = get_remote_url(dir);
                    overrides.push(LocalSshOverride {
                        repo_dir: dir.to_path_buf(),
                        ssh_command: ssh_cmd,
                        remote_url,
                    });
                }
            } else if !path.file_name().is_some_and(|n| {
                n.to_string_lossy().starts_with('.') || n == "node_modules" || n == "target"
            }) {
                collect_repos_with_local_ssh(&path, depth + 1, max_depth, overrides);
            }
        }
    }
}

fn get_local_ssh_command(repo_dir: &Path) -> Option<String> {
    let output = Command::new("git")
        .args([
            "-C",
            &repo_dir.to_string_lossy(),
            "config",
            "--local",
            "core.sshCommand",
        ])
        .output()
        .ok()?;
    if output.status.success() {
        let val = String::from_utf8_lossy(&output.stdout).trim().to_string();
        if !val.is_empty() {
            return Some(val);
        }
    }
    None
}

// --- Git config scanning ---

struct GitInfo {
    global_ssh_command: Option<String>,
    include_ifs: Vec<IncludeIfRule>,
    #[allow(dead_code)]
    global_email: Option<String>,
    #[allow(dead_code)]
    global_name: Option<String>,
}

struct IncludeIfRule {
    pattern: String,
    config_path: String,
    ssh_command: Option<String>,
    email: Option<String>,
    name: Option<String>,
}

fn scan_git_config() -> GitInfo {
    let global_ssh_command = git_config_get("core.sshCommand", &["--global"]);
    let global_email = git_config_get("user.email", &["--global"]);
    let global_name = git_config_get("user.name", &["--global"]);

    // Parse includeIf rules from global gitconfig
    let include_ifs = parse_include_ifs();

    GitInfo {
        global_ssh_command,
        include_ifs,
        global_email,
        global_name,
    }
}

fn git_config_get(key: &str, extra_args: &[&str]) -> Option<String> {
    let mut cmd = Command::new("git");
    cmd.arg("config");
    for arg in extra_args {
        cmd.arg(arg);
    }
    cmd.arg(key);

    let output = cmd.output().ok()?;
    if output.status.success() {
        Some(String::from_utf8_lossy(&output.stdout).trim().to_string())
    } else {
        None
    }
}

fn parse_include_ifs() -> Vec<IncludeIfRule> {
    let output = Command::new("git")
        .args([
            "config",
            "--global",
            "--get-regexp",
            r"^includeif\..*\.path$",
        ])
        .output();

    let output = match output {
        Ok(o) if o.status.success() => String::from_utf8_lossy(&o.stdout).to_string(),
        _ => return Vec::new(),
    };

    let home = dirs::home_dir().unwrap_or_default();
    let mut rules = Vec::new();

    for line in output.lines() {
        let Some((key, config_path)) = parse_git_config_key_value(line) else {
            continue;
        };
        let Some(pattern) = include_pattern_from_config_key(key) else {
            continue;
        };

        let expanded_config = if let Some(tail) = config_path.strip_prefix("~/") {
            home.join(tail)
        } else {
            PathBuf::from(config_path)
        };

        let (ssh_command, email, name) = read_include_config(&expanded_config);

        rules.push(IncludeIfRule {
            pattern,
            config_path: config_path.to_string(),
            ssh_command,
            email,
            name,
        });
    }

    rules
}

fn parse_git_config_key_value(line: &str) -> Option<(&str, &str)> {
    let split_at = line.find(char::is_whitespace)?;
    let key = &line[..split_at];
    let value = line[split_at..].trim_start();
    if key.is_empty() || value.is_empty() {
        None
    } else {
        Some((key, value))
    }
}

fn include_pattern_from_config_key(key: &str) -> Option<String> {
    let lower = key.to_ascii_lowercase();
    let rest = lower.strip_prefix("includeif.")?;
    let condition_len = rest.strip_suffix(".path")?.len();
    let condition = &key["includeif.".len().."includeif.".len() + condition_len];
    let condition_lower = condition.to_ascii_lowercase();

    if condition_lower.starts_with("gitdir/i:") {
        Some(condition["gitdir/i:".len()..].to_string())
    } else if condition_lower.starts_with("gitdir:") {
        Some(condition["gitdir:".len()..].to_string())
    } else {
        None
    }
}

fn read_include_config(path: &Path) -> (Option<String>, Option<String>, Option<String>) {
    (
        git_config_get_from_file(path, "core.sshCommand"),
        git_config_get_from_file(path, "user.email"),
        git_config_get_from_file(path, "user.name"),
    )
}

fn git_config_get_from_file(path: &Path, key: &str) -> Option<String> {
    let mut command = Command::new("git");
    if path.is_absolute() {
        command.current_dir("/");
    }
    let output = command
        .arg("config")
        .arg("--file")
        .arg(path)
        .arg(key)
        .output()
        .ok()?;
    if output.status.success() {
        let value = String::from_utf8_lossy(&output.stdout).trim().to_string();
        if value.is_empty() {
            None
        } else {
            Some(value)
        }
    } else {
        None
    }
}

// --- Config suggestion ---

struct SuggestedRule {
    host: String,
    match_pattern: Option<String>,
    key_display: String,
    email: Option<String>,
    name: Option<String>,
    port: Option<u16>,
}

struct ManualRule {
    pattern: String,
    key_display: String,
    email: Option<String>,
    name: Option<String>,
    port: Option<u16>,
}

struct SuggestionBuild {
    rules: Vec<SuggestedRule>,
    manual_rules: Vec<ManualRule>,
}

fn build_suggestions(
    git_info: &GitInfo,
    _keys: &[SshKey],
    local_overrides: &[LocalSshOverride],
) -> SuggestionBuild {
    let mut suggestions: Vec<SuggestedRule> = Vec::new();
    let mut manual_rules: Vec<ManualRule> = Vec::new();

    // Build suggestions from includeIf rules that have sshCommand
    for inc in &git_info.include_ifs {
        if let Some(ssh_cmd) = &inc.ssh_command {
            // Try to extract key path and port from the sshCommand
            let (key_path, port) = parse_ssh_command_for_key_and_port(ssh_cmd);

            if let Some(key) = key_path {
                // Try to find matching repos under this gitdir pattern to determine hosts/orgs
                let repos = find_repos_under_pattern(&inc.pattern);
                let grouped = group_repos_by_host_and_org(&repos);

                if grouped.is_empty() {
                    manual_rules.push(ManualRule {
                        pattern: inc.pattern.clone(),
                        key_display: key,
                        email: inc.email.clone(),
                        name: inc.name.clone(),
                        port,
                    });
                } else {
                    for (host, org) in grouped.keys() {
                        let match_pattern = if org.is_empty() {
                            None
                        } else {
                            Some(format!("{}/**", org))
                        };
                        // Avoid duplicate suggestions
                        let already = suggestions
                            .iter()
                            .any(|s| s.host == *host && s.match_pattern == match_pattern);
                        if !already {
                            suggestions.push(SuggestedRule {
                                host: host.clone(),
                                match_pattern,
                                key_display: key.clone(),
                                email: inc.email.clone(),
                                name: inc.name.clone(),
                                port,
                            });
                        }
                    }
                }
            }
        }
    }

    // Also build suggestions from repos with local core.sshCommand
    for ov in local_overrides {
        if let Some(url) = &ov.remote_url {
            if let Some((host, repo_path)) = crate::cli::parse_remote_url(url) {
                let (key_path, port) = parse_ssh_command_for_key_and_port(&ov.ssh_command);
                if let Some(key) = key_path {
                    let org = extract_org(&host, &repo_path);
                    let match_pattern = if org.is_empty() {
                        None
                    } else {
                        Some(format!("{}/**", org))
                    };
                    // Get email/name from the repo's local config
                    let email = Command::new("git")
                        .args([
                            "-C",
                            &ov.repo_dir.to_string_lossy(),
                            "config",
                            "--local",
                            "user.email",
                        ])
                        .output()
                        .ok()
                        .and_then(|o| {
                            if o.status.success() {
                                let v = String::from_utf8_lossy(&o.stdout).trim().to_string();
                                if v.is_empty() {
                                    None
                                } else {
                                    Some(v)
                                }
                            } else {
                                None
                            }
                        });
                    let name = Command::new("git")
                        .args([
                            "-C",
                            &ov.repo_dir.to_string_lossy(),
                            "config",
                            "--local",
                            "user.name",
                        ])
                        .output()
                        .ok()
                        .and_then(|o| {
                            if o.status.success() {
                                let v = String::from_utf8_lossy(&o.stdout).trim().to_string();
                                if v.is_empty() {
                                    None
                                } else {
                                    Some(v)
                                }
                            } else {
                                None
                            }
                        });

                    let already = suggestions
                        .iter()
                        .any(|s| s.host == host && s.match_pattern == match_pattern);
                    if !already {
                        suggestions.push(SuggestedRule {
                            host,
                            match_pattern,
                            key_display: key,
                            email,
                            name,
                            port,
                        });
                    }
                }
            }
        }
    }

    SuggestionBuild {
        rules: suggestions,
        manual_rules,
    }
}

fn print_manual_rule_actions(manual_rules: &[ManualRule]) {
    if manual_rules.is_empty() {
        return;
    }

    println!("\nManual rule needed:");
    for rule in manual_rules {
        println!(
            "  Could not infer host/path for includeIf pattern {}.",
            rule.pattern
        );
        println!("  Key: {}", rule.key_display);
        if let Some(port) = rule.port {
            println!("  Port: {}", port);
        }
        if let Some(email) = &rule.email {
            println!("  Email: {}", email);
        }
        if let Some(name) = &rule.name {
            println!("  Name: {}", name);
        }
    }
}

/// Parse an sshCommand like "/usr/bin/ssh -o IdentitiesOnly=yes -i ~/.ssh/vce_github -p 222"
/// to extract the key path and optional port.
fn parse_ssh_command_for_key_and_port(cmd: &str) -> (Option<String>, Option<u16>) {
    let parts = tokenize_ssh_command(cmd);
    let mut key = None;
    let mut port = None;

    let mut i = 0;
    while i < parts.len() {
        if parts[i] == "-i" && i + 1 < parts.len() {
            let (value, next_i) = collect_ssh_option_value(&parts, i + 1);
            key = Some(value);
            i = next_i;
            continue;
        }
        if let Some(k) = parts[i].strip_prefix("-i").filter(|k| !k.is_empty()) {
            key = Some(k.to_string());
            i += 1;
            continue;
        }
        if parts[i] == "-p" {
            if let Some(p) = parts.get(i + 1) {
                port = p.parse().ok();
                i += 2;
                continue;
            }
        }
        if let Some(p) = parts[i].strip_prefix("-p").filter(|p| !p.is_empty()) {
            port = p.parse().ok();
            i += 1;
            continue;
        }
        if parts[i] == "-o" {
            if let Some(option) = parts.get(i + 1) {
                parse_ssh_option(option, &mut key, &mut port);
                i += 2;
                continue;
            }
        }
        if let Some(option) = parts[i].strip_prefix("-o").filter(|o| !o.is_empty()) {
            parse_ssh_option(option, &mut key, &mut port);
            i += 1;
            continue;
        }
        i += 1;
    }

    (key, port)
}

fn collect_ssh_option_value(parts: &[String], start: usize) -> (String, usize) {
    let mut end = start + 1;
    while end < parts.len() && !parts[end].starts_with('-') {
        end += 1;
    }
    (parts[start..end].join(" "), end)
}

fn parse_ssh_option(option: &str, key: &mut Option<String>, port: &mut Option<u16>) {
    if let Some(value) = option.strip_prefix("IdentityFile=") {
        *key = Some(value.to_string());
    }
    if let Some(value) = option.strip_prefix("Port=") {
        *port = value.parse().ok();
    }
}

fn tokenize_ssh_command(input: &str) -> Vec<String> {
    let mut words = Vec::new();
    let mut current = String::new();
    let mut quote = None;
    let mut in_word = false;
    let mut escaped = false;

    for c in input.chars() {
        if escaped {
            current.push(c);
            in_word = true;
            escaped = false;
            continue;
        }

        match quote {
            Some('\'') => {
                if c == '\'' {
                    quote = None;
                } else {
                    current.push(c);
                }
            }
            Some('"') => {
                if c == '"' {
                    quote = None;
                } else if c == '\\' {
                    escaped = true;
                } else {
                    current.push(c);
                }
            }
            Some(_) => unreachable!(),
            None => {
                if c.is_whitespace() {
                    if in_word {
                        words.push(std::mem::take(&mut current));
                        in_word = false;
                    }
                } else if c == '\'' || c == '"' {
                    quote = Some(c);
                    in_word = true;
                } else if c == '\\' {
                    escaped = true;
                } else {
                    current.push(c);
                    in_word = true;
                }
            }
        }
    }

    if escaped {
        current.push('\\');
        in_word = true;
    }

    if in_word {
        words.push(current);
    }

    words
}

/// Find git repos under a gitdir pattern like "~/dev/vce/**"
fn find_repos_under_pattern(pattern: &str) -> Vec<(String, String)> {
    let home = dirs::home_dir().unwrap_or_default();
    let dir = if let Some(tail) = pattern.strip_prefix("~/") {
        let tail = tail.trim_end_matches("**").trim_end_matches('/');
        home.join(tail)
    } else {
        let cleaned = pattern.trim_end_matches("**").trim_end_matches('/');
        PathBuf::from(cleaned)
    };

    let mut repos = Vec::new();

    if !dir.is_dir() {
        return repos;
    }

    // Find .git directories up to 4 levels deep
    collect_repos(&dir, 0, 4, &mut repos);
    repos
}

fn collect_repos(dir: &Path, depth: u32, max_depth: u32, repos: &mut Vec<(String, String)>) {
    if depth > max_depth {
        return;
    }

    let entries = match std::fs::read_dir(dir) {
        Ok(e) => e,
        Err(_) => return,
    };

    for entry in entries.filter_map(|e| e.ok()) {
        let path = entry.path();
        if path.is_dir() {
            if path.file_name().is_some_and(|n| n == ".git") {
                // Found a repo — get its remote URL
                if let Some(url) = get_remote_url(dir) {
                    if let Some((host, repo_path)) = crate::cli::parse_remote_url(&url) {
                        repos.push((host, repo_path));
                    }
                }
            } else if !path.file_name().is_some_and(|n| {
                n.to_string_lossy().starts_with('.') || n == "node_modules" || n == "target"
            }) {
                collect_repos(&path, depth + 1, max_depth, repos);
            }
        }
    }
}

fn get_remote_url(repo_dir: &Path) -> Option<String> {
    let output = Command::new("git")
        .args([
            "-C",
            &repo_dir.to_string_lossy(),
            "remote",
            "get-url",
            "origin",
        ])
        .output()
        .ok()?;
    if output.status.success() {
        Some(String::from_utf8_lossy(&output.stdout).trim().to_string())
    } else {
        None
    }
}

/// Group repos by (host, top-level org/path prefix)
fn group_repos_by_host_and_org(repos: &[(String, String)]) -> BTreeMap<(String, String), usize> {
    let mut map = BTreeMap::new();

    for (host, path) in repos {
        // Extract the top-level org: first path component for GitHub/GitLab,
        // first two components for Azure DevOps (v3/OrgName)
        let org = extract_org(host, path);
        *map.entry((host.clone(), org)).or_insert(0) += 1;
    }

    map
}

fn extract_org(host: &str, path: &str) -> String {
    let parts: Vec<&str> = path.split('/').collect();

    if host.contains("dev.azure.com") {
        // Azure DevOps: v3/OrgName/Project/Repo → v3/OrgName
        if parts.len() >= 2 && parts[0] == "v3" {
            return format!("{}/{}", parts[0], parts[1]);
        }
    }

    // GitHub/GitLab/Gitea: Org/Repo → Org
    parts.first().unwrap_or(&"").to_string()
}

#[cfg(test)]
mod tests {
    use super::*;
    use tempfile::TempDir;

    #[test]
    fn parse_include_key_extracts_gitdir_pattern() {
        assert_eq!(
            include_pattern_from_config_key("includeif.gitdir:~/work/**.path").as_deref(),
            Some("~/work/**")
        );
        assert_eq!(
            include_pattern_from_config_key("includeif.gitdir/i:/Users/me/Work/.path").as_deref(),
            Some("/Users/me/Work/")
        );
        assert!(include_pattern_from_config_key("includeif.onbranch:main.path").is_none());
    }

    #[test]
    fn parse_git_config_output_preserves_values_with_spaces() {
        let (key, value) =
            parse_git_config_key_value("includeif.gitdir:~/work/**.path ~/Work Configs/git")
                .unwrap();
        assert_eq!(key, "includeif.gitdir:~/work/**.path");
        assert_eq!(value, "~/Work Configs/git");
    }

    #[test]
    fn read_include_config_uses_git_config_parser() {
        let tmp = TempDir::new().unwrap();
        let config = tmp.path().join("included.gitconfig");
        std::fs::write(
            &config,
            r#"
[core]
    sshCommand = ssh -i "/tmp/key with space" -p 2222
[user]
    email = work@example.com
    name = "Work Name"
"#,
        )
        .unwrap();

        let (ssh_command, email, name) = read_include_config(&config);
        assert_eq!(
            ssh_command.as_deref(),
            Some("ssh -i /tmp/key with space -p 2222")
        );
        assert_eq!(email.as_deref(), Some("work@example.com"));
        assert_eq!(name.as_deref(), Some("Work Name"));
    }

    #[test]
    fn parse_ssh_command_handles_quoted_paths_and_port_options() {
        let (key, port) =
            parse_ssh_command_for_key_and_port(r#"ssh -o Port=443 -i "/Users/me/Keys/work key""#);
        assert_eq!(key.as_deref(), Some("/Users/me/Keys/work key"));
        assert_eq!(port, Some(443));

        let (key, port) =
            parse_ssh_command_for_key_and_port(r#"ssh -i /Users/me/Keys/work key -p 2222"#);
        assert_eq!(key.as_deref(), Some("/Users/me/Keys/work key"));
        assert_eq!(port, Some(2222));

        let (key, port) = parse_ssh_command_for_key_and_port(
            r#"ssh -oIdentityFile="/Users/me/Keys/another key" -p2222"#,
        );
        assert_eq!(key.as_deref(), Some("/Users/me/Keys/another key"));
        assert_eq!(port, Some(2222));
    }

    #[test]
    fn unresolved_include_becomes_manual_action_not_rule() {
        let tmp = TempDir::new().unwrap();
        let pattern = format!("{}/missing/**", tmp.path().display());
        let git_info = GitInfo {
            global_ssh_command: None,
            include_ifs: vec![IncludeIfRule {
                pattern: pattern.clone(),
                config_path: "~/.gitconfig-work".to_string(),
                ssh_command: Some(r#"ssh -i "/tmp/key with space""#.to_string()),
                email: Some("work@example.com".to_string()),
                name: Some("Work Name".to_string()),
            }],
            global_email: None,
            global_name: None,
        };

        let build = build_suggestions(&git_info, &[], &[]);
        assert!(build.rules.is_empty());
        assert_eq!(build.manual_rules.len(), 1);
        assert_eq!(build.manual_rules[0].pattern, pattern);
        assert_eq!(
            build.manual_rules[0].key_display,
            "/tmp/key with space".to_string()
        );
    }
}

// (end of file)