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
//! Async workspace validator.
//!
//! Walks the `contents` hierarchy rooted at a workspace's root index, emitting
//! [`super::types::ValidationError`] and [`super::types::ValidationWarning`]
//! values for broken references, orphan files, cycles, non-portable paths,
//! and backlink inconsistencies. The entry points are
//! [`Validator::validate_workspace`] and [`Validator::validate_file`].
use std::collections::{BTreeSet, HashSet};
use std::path::{Path, PathBuf};
use crate::entry::{has_non_portable_chars, sanitize_filename};
use crate::error::Result;
use crate::fs::{AsyncFileSystem, is_temp_file};
use crate::link_parser::{self, LinkFormat};
use crate::path_utils::normalize_sync_path;
use crate::utils::{is_workspace_skip_dir, matches_glob_pattern};
use crate::workspace::Workspace;
use super::check::{
check_duplicate_lists, check_non_portable_path, compute_suggested_portable_path,
expected_self_link, find_index_in_directory, is_clearly_non_portable_path,
list_contains_canonical_link, normalize_path, workspace_relative_canonical_path,
};
use super::types::{
InvalidAttachmentRefKind, ValidationError, ValidationResult, ValidationWarning,
};
/// Validator for checking workspace link integrity (async-first).
pub struct Validator<FS: AsyncFileSystem> {
ws: Workspace<FS>,
}
/// Context for recursive validation.
struct ValidationContext<'a> {
result: &'a mut ValidationResult,
visited: &'a mut HashSet<PathBuf>,
link_format: Option<LinkFormat>,
workspace_root: &'a Path,
}
#[derive(Default)]
struct ValidationScanTrace {
explored_dirs: BTreeSet<String>,
pruned_hidden_dirs: BTreeSet<String>,
pruned_excluded_dirs: BTreeSet<String>,
pruned_skip_dirs: BTreeSet<String>,
}
impl ValidationScanTrace {
fn record_explored(&mut self, path: &Path) {
self.explored_dirs
.insert(path.to_string_lossy().to_string());
}
fn record_pruned_excluded(&mut self, path: &Path) {
self.pruned_excluded_dirs
.insert(path.to_string_lossy().to_string());
}
fn record_pruned_hidden(&mut self, path: &Path) {
self.pruned_hidden_dirs
.insert(path.to_string_lossy().to_string());
}
fn record_pruned_skip(&mut self, path: &Path) {
self.pruned_skip_dirs
.insert(path.to_string_lossy().to_string());
}
}
impl<FS: AsyncFileSystem> Validator<FS> {
/// Create a new validator.
pub fn new(fs: FS) -> Self {
Self {
ws: Workspace::new(fs),
}
}
/// Collect exclude patterns from an index and all its ancestors via part_of chain.
/// Returns patterns that should apply to files in the index's directory.
async fn collect_exclude_patterns(&self, index_path: &Path) -> Vec<String> {
let mut patterns = Vec::new();
let mut visited = HashSet::new();
let mut current_path = index_path.to_path_buf();
// Traverse up the part_of chain
while !visited.contains(¤t_path) {
visited.insert(current_path.clone());
if let Ok(index) = self.ws.parse_index(¤t_path).await {
// Add this index's exclude patterns
patterns.extend(index.frontmatter.exclude_list().iter().cloned());
// Follow part_of to parent
if let Some(ref part_of) = index.frontmatter.part_of {
let parent_path = index.resolve_path(part_of);
current_path = parent_path;
} else {
break;
}
} else {
break;
}
}
patterns
}
fn workspace_relative_path(&self, workspace_root: &Path, path: &Path) -> String {
let relative = path.strip_prefix(workspace_root).unwrap_or(path);
normalize_sync_path(&relative.to_string_lossy().replace('\\', "/"))
}
fn path_matches_exclude(
&self,
pattern: &str,
workspace_root: &Path,
path: &Path,
file_name: &str,
) -> bool {
let relative_path = self.workspace_relative_path(workspace_root, path);
matches_glob_pattern(pattern, file_name) || matches_glob_pattern(pattern, &relative_path)
}
fn should_skip_workspace_dir(&self, path: &Path) -> bool {
is_workspace_skip_dir(path)
}
async fn exclude_patterns_for_dir(&self, dir: &Path, workspace_root: &Path) -> Vec<String> {
let mut current = Some(dir);
while let Some(candidate) = current {
if !candidate.starts_with(workspace_root) {
break;
}
if let Ok(Some(index)) = self.ws.find_any_index_in_dir(candidate).await {
return self.collect_exclude_patterns(&index).await;
}
current = candidate.parent();
}
Vec::new()
}
/// Validate all links starting from a workspace root index.
///
/// Checks:
/// - All `contents` references point to existing files
/// - All `part_of` references point to existing files
/// - Detects unlinked files/directories (not reachable via contents references)
///
/// # Arguments
/// * `root_path` - Path to the root index file
/// * `max_depth` - Maximum depth for orphan detection (None = unlimited, Some(2) matches tree view)
pub async fn validate_workspace(
&self,
root_path: &Path,
max_depth: Option<usize>,
) -> Result<ValidationResult> {
let mut result = ValidationResult::default();
let mut visited: HashSet<PathBuf> = HashSet::new();
// Get link format from workspace config
let link_format = self
.ws
.get_workspace_config(root_path)
.await
.map(|c| c.link_format)
.ok();
// Get the workspace root directory (parent of root index file)
// This is needed to resolve workspace-relative paths correctly
let workspace_root = root_path.parent().unwrap_or(Path::new(".")).to_path_buf();
let mut ctx = ValidationContext {
result: &mut result,
visited: &mut visited,
link_format,
workspace_root: &workspace_root,
};
self.validate_recursive(root_path, &mut ctx, None, None)
.await?;
// Find unlinked entries: files/dirs in workspace not visited during traversal
// Scan with depth limit to match tree view behavior and improve performance
let workspace_root = root_path.parent().unwrap_or(Path::new("."));
let root_exclude_patterns = self
.exclude_patterns_for_dir(workspace_root, workspace_root)
.await;
let mut scan_trace = ValidationScanTrace::default();
let all_entries = self
.list_files_with_depth(
workspace_root,
workspace_root,
0,
max_depth,
&root_exclude_patterns,
&mut scan_trace,
)
.await;
log::info!(
"[Validator] Orphan scan explored {} directories, pruned {} hidden dirs, {} excluded dirs and {} built-in skip dirs",
scan_trace.explored_dirs.len(),
scan_trace.pruned_hidden_dirs.len(),
scan_trace.pruned_excluded_dirs.len(),
scan_trace.pruned_skip_dirs.len(),
);
log::debug!(
"[Validator] Orphan scan explored directories: {:?}",
scan_trace.explored_dirs
);
log::debug!(
"[Validator] Orphan scan pruned hidden directories: {:?}",
scan_trace.pruned_hidden_dirs
);
log::debug!(
"[Validator] Orphan scan pruned excluded directories: {:?}",
scan_trace.pruned_excluded_dirs
);
log::debug!(
"[Validator] Orphan scan pruned built-in skip directories: {:?}",
scan_trace.pruned_skip_dirs
);
if !all_entries.is_empty() {
// Normalize visited paths for comparison using path normalization
// This is more reliable than canonicalize() which can fail on WASM
let visited_normalized: HashSet<PathBuf> =
visited.iter().map(|p| normalize_path(p)).collect();
// Build a map of directory -> index file path from visited files.
// Only actual index files should participate here; using arbitrary
// markdown files can cause orphan binary warnings to inherit exclude
// patterns from a sibling leaf note instead of the directory index.
// This allows us to find the nearest parent index for orphan files
let mut dir_to_index: std::collections::HashMap<PathBuf, PathBuf> =
std::collections::HashMap::new();
for visited_path in &visited {
if visited_path.extension().is_some_and(|ext| ext == "md")
&& let Some(parent) = visited_path.parent()
{
let is_index = self
.ws
.parse_index(visited_path)
.await
.map(|index| index.frontmatter.is_index())
.unwrap_or(false);
if is_index {
dir_to_index
.entry(parent.to_path_buf())
.or_insert_with(|| visited_path.clone());
}
}
}
// Helper to find nearest parent index for a given path
let find_nearest_index = |path: &Path| -> Option<PathBuf> {
let mut current = path.parent();
while let Some(dir) = current {
if let Some(index) = dir_to_index.get(dir) {
return Some(index.clone());
}
current = dir.parent();
}
None
};
for entry in all_entries {
// Skip entries that are in hidden directories or are hidden files
// Check all path components, not just the filename
let in_hidden_dir = entry.components().any(|c| {
if let std::path::Component::Normal(name) = c {
name.to_str().is_some_and(|s| s.starts_with('.'))
} else {
false
}
});
if in_hidden_dir {
continue;
}
// Skip entries in common non-workspace directories
if self.should_skip_workspace_dir(&entry) {
continue;
}
let entry_normalized = normalize_path(&entry);
if !visited_normalized.contains(&entry_normalized) {
// Skip directories - we don't emit warnings for them.
// If a directory has an unlinked index file, OrphanFile covers it.
// If a directory has no index file, it's just a regular folder.
if self.ws.fs_ref().is_dir(&entry).await {
continue;
}
// Skip symlinks - they're filesystem implementation details.
// The real file is what matters for the hierarchy.
if self.ws.fs_ref().is_symlink(&entry).await {
continue;
}
let suggested_index = find_nearest_index(&entry);
let extension = entry.extension().and_then(|e| e.to_str());
// Collect exclude patterns from the nearest index and its ancestors
let local_exclude_patterns = if let Some(ref idx) = suggested_index {
self.collect_exclude_patterns(idx).await
} else {
Vec::new()
};
let filename = entry.file_name().and_then(|n| n.to_str()).unwrap_or("");
let is_excluded = local_exclude_patterns.iter().any(|pattern| {
self.path_matches_exclude(pattern, workspace_root, &entry, filename)
});
if extension == Some("md") {
// Markdown file not in hierarchy
if !is_excluded {
// Attachment notes (files with the `attachment` property) are
// managed via `attachments` lists, not `contents`/`part_of`.
// Skip contents/part_of validation for them.
let is_attachment_note =
if let Ok(idx) = self.ws.parse_index(&entry).await {
idx.frontmatter.attachment.is_some()
} else {
false
};
if !is_attachment_note {
result.warnings.push(ValidationWarning::OrphanFile {
file: entry.clone(),
suggested_index: suggested_index.clone(),
});
// Also check if this orphan file is missing part_of
if let Ok(index) = self.ws.parse_index(&entry).await
&& !index.frontmatter.is_index()
&& index.frontmatter.part_of.is_none()
{
result.warnings.push(ValidationWarning::MissingPartOf {
file: entry.clone(),
suggested_index,
});
}
}
}
} else if extension.is_some() && !is_excluded {
// Binary file not referenced by any attachments
result.warnings.push(ValidationWarning::OrphanBinaryFile {
file: entry.clone(),
suggested_index,
});
}
}
}
}
Ok(result)
}
/// List files and directories with depth limiting.
/// Returns all entries up to the specified depth from the starting directory.
async fn list_files_with_depth(
&self,
dir: &Path,
workspace_root: &Path,
current_depth: usize,
max_depth: Option<usize>,
exclude_patterns: &[String],
trace: &mut ValidationScanTrace,
) -> Vec<PathBuf> {
// Check if we've exceeded max depth
if let Some(max) = max_depth
&& current_depth >= max
{
return Vec::new();
}
let mut all_entries = Vec::new();
trace.record_explored(dir);
if let Ok(entries) = self.ws.fs_ref().list_files(dir).await {
for entry in entries {
// Skip symlinks entirely - they're filesystem implementation details.
// Also avoids potential infinite loops from circular symlinks.
if self.ws.fs_ref().is_symlink(&entry).await {
continue;
}
if let Some(name) = entry.file_name().and_then(|n| n.to_str())
&& name.starts_with('.')
{
if self.ws.fs_ref().is_dir(&entry).await {
trace.record_pruned_hidden(&entry);
}
continue;
}
// Skip temporary files (.tmp, .bak, .swap) from atomic write operations
if let Some(name) = entry.file_name().and_then(|n| n.to_str())
&& is_temp_file(name)
{
continue;
}
let file_name = entry.file_name().and_then(|n| n.to_str()).unwrap_or("");
if exclude_patterns.iter().any(|pattern| {
self.path_matches_exclude(pattern, workspace_root, &entry, file_name)
}) {
if self.ws.fs_ref().is_dir(&entry).await {
trace.record_pruned_excluded(&entry);
}
continue;
}
// Recurse into subdirectories
if self.ws.fs_ref().is_dir(&entry).await {
if self.should_skip_workspace_dir(&entry) {
trace.record_pruned_skip(&entry);
continue;
}
all_entries.push(entry.clone());
let child_exclude_patterns =
self.exclude_patterns_for_dir(&entry, workspace_root).await;
let sub_entries = Box::pin(self.list_files_with_depth(
&entry,
workspace_root,
current_depth + 1,
max_depth,
&child_exclude_patterns,
trace,
))
.await;
all_entries.extend(sub_entries);
} else {
all_entries.push(entry.clone());
}
}
}
all_entries
}
/// Recursively validate from a given path.
/// `from_parent` tracks which file led us here (for cycle detection).
/// `contents_ref` is the reference string used in the parent's contents (for cycle fix suggestions).
async fn validate_recursive(
&self,
path: &Path,
ctx: &mut ValidationContext<'_>,
from_parent: Option<&Path>,
contents_ref: Option<&str>,
) -> Result<()> {
// Skip symlinks - they're filesystem implementation details.
// The real file (the symlink target) is what matters for the hierarchy.
if self.ws.fs_ref().is_symlink(path).await {
return Ok(());
}
// Avoid cycles - use normalize_path for consistent path comparison
let normalized = normalize_path(path);
if ctx.visited.contains(&normalized) {
// Cycle detected! Suggest removing the contents reference from the parent
ctx.result
.warnings
.push(ValidationWarning::CircularReference {
files: vec![path.to_path_buf()],
// Suggest editing the parent file that led us here
suggested_file: from_parent.map(|p| p.to_path_buf()),
// The contents ref to remove would be in the parent, but we suggest
// removing part_of from the target file as that's often cleaner
suggested_remove_part_of: contents_ref.map(|s| s.to_string()),
});
return Ok(());
}
ctx.visited.insert(normalized);
ctx.result.files_checked += 1;
// Check filename for non-portable characters
if let Some(filename) = path.file_name().and_then(|n| n.to_str())
&& let Some(reason) = has_non_portable_chars(filename)
{
ctx.result
.warnings
.push(ValidationWarning::NonPortableFilename {
file: path.to_path_buf(),
reason,
suggested_filename: sanitize_filename(filename),
});
}
// Try to parse as index (with link format hint for proper path resolution)
if let Ok(index) = self.ws.parse_index_with_hint(path, ctx.link_format).await {
let dir = index.directory().unwrap_or_else(|| Path::new(""));
let file_canonical = workspace_relative_canonical_path(path, ctx.workspace_root);
// Flag duplicate entries in any link-bearing list.
check_duplicate_lists(
ctx.result,
path,
&index.frontmatter,
&file_canonical,
ctx.link_format,
);
if let Some(link) = index.frontmatter.link.as_deref() {
let parsed = link_parser::parse_link(link);
let resolved = link_parser::to_canonical_with_link_format(
&parsed,
Path::new(&file_canonical),
ctx.link_format,
);
if resolved != file_canonical {
ctx.result
.warnings
.push(ValidationWarning::InvalidSelfLink {
file: path.to_path_buf(),
value: link.to_string(),
suggested: expected_self_link(
&file_canonical,
index.frontmatter.title.as_deref(),
ctx.link_format,
),
});
}
}
for link_ref in index.frontmatter.links_list() {
let target_path = index.resolve_path(link_ref);
let absolute_target_path = if target_path.is_absolute() {
target_path.clone()
} else {
ctx.workspace_root.join(&target_path)
};
if !self.ws.fs_ref().exists(&absolute_target_path).await {
ctx.result.errors.push(ValidationError::BrokenLinkRef {
file: path.to_path_buf(),
target: link_ref.clone(),
});
continue;
}
if let Ok(target_index) = self
.ws
.parse_index_with_hint(&absolute_target_path, ctx.link_format)
.await
{
let target_canonical = workspace_relative_canonical_path(
&absolute_target_path,
ctx.workspace_root,
);
if !list_contains_canonical_link(
target_index.frontmatter.link_of_list(),
&file_canonical,
&target_canonical,
ctx.link_format,
) {
ctx.result
.warnings
.push(ValidationWarning::MissingBacklink {
file: absolute_target_path.clone(),
source: file_canonical.clone(),
suggested: expected_self_link(
&file_canonical,
index.frontmatter.title.as_deref(),
ctx.link_format,
),
});
}
}
}
for backlink in index.frontmatter.link_of_list() {
let source_path = index.resolve_path(backlink);
let absolute_source_path = if source_path.is_absolute() {
source_path.clone()
} else {
ctx.workspace_root.join(&source_path)
};
let stale = if !self.ws.fs_ref().exists(&absolute_source_path).await {
true
} else if let Ok(source_index) = self
.ws
.parse_index_with_hint(&absolute_source_path, ctx.link_format)
.await
{
let source_canonical = workspace_relative_canonical_path(
&absolute_source_path,
ctx.workspace_root,
);
!list_contains_canonical_link(
source_index.frontmatter.links_list(),
&file_canonical,
&source_canonical,
ctx.link_format,
)
} else {
true
};
if stale {
ctx.result.warnings.push(ValidationWarning::StaleBacklink {
file: path.to_path_buf(),
value: backlink.clone(),
});
}
}
// Check all contents references
for child_ref in index.frontmatter.contents_list() {
// Use index.resolve_path which handles markdown links and relative paths
let child_path = index.resolve_path(child_ref);
// Make path absolute if needed by joining with workspace root
// This handles the case where resolve_path returns workspace-relative paths
// but we need absolute paths for the real filesystem
let absolute_child_path = if child_path.is_absolute() {
child_path.clone()
} else {
ctx.workspace_root.join(&child_path)
};
// Flag non-portable relative dot-component paths (e.g.
// `../foo.md`). Absolute-path portability is handled
// separately below for `part_of`.
if let Some(warning) = check_non_portable_path(path, "contents", child_ref, dir) {
ctx.result.warnings.push(warning);
}
if !self.ws.fs_ref().exists(&absolute_child_path).await {
ctx.result.errors.push(ValidationError::BrokenContentsRef {
index: path.to_path_buf(),
target: child_ref.clone(),
});
} else if child_path.extension().is_none_or(|ext| ext != "md") {
// Non-markdown file in contents - contents entries must be
// markdown. Binary assets belong in `attachments`, wrapped
// by a markdown attachment note.
ctx.result
.warnings
.push(ValidationWarning::InvalidContentsRef {
index: path.to_path_buf(),
target: child_ref.clone(),
});
} else {
// Recurse into child, tracking parent info for cycle detection
Box::pin(self.validate_recursive(
&absolute_child_path,
ctx,
Some(path),
Some(child_ref),
))
.await?;
}
}
// Check part_of if present
if let Some(ref part_of) = index.frontmatter.part_of {
if is_clearly_non_portable_path(part_of) {
// Non-portable absolute path - add warning, skip exists() check
ctx.result
.warnings
.push(ValidationWarning::NonPortablePath {
file: path.to_path_buf(),
property: "part_of".to_string(),
value: part_of.clone(),
suggested: compute_suggested_portable_path(part_of, dir),
});
} else {
// Flag non-portable relative dot-component paths
if let Some(warning) = check_non_portable_path(path, "part_of", part_of, dir) {
ctx.result.warnings.push(warning);
}
// Use index.resolve_path which handles markdown links and relative paths
let parent_path = index.resolve_path(part_of);
// Make path absolute if needed
let absolute_parent_path = if parent_path.is_absolute() {
parent_path
} else {
ctx.workspace_root.join(&parent_path)
};
if !self.ws.fs_ref().exists(&absolute_parent_path).await {
ctx.result.errors.push(ValidationError::BrokenPartOf {
file: path.to_path_buf(),
target: part_of.clone(),
});
}
}
} else if from_parent.is_some() {
// File has no part_of but was reached from a parent's contents.
// Non-index files should have part_of to maintain hierarchy links.
// Index files without part_of could be sub-roots, which is allowed.
// Attachment notes are managed via `attachments`, not `contents`/`part_of`.
let is_attachment_note = index.frontmatter.attachment.is_some();
if !index.frontmatter.is_index() && !is_attachment_note {
let suggested_index = find_index_in_directory(&self.ws, dir, Some(path)).await;
ctx.result.warnings.push(ValidationWarning::MissingPartOf {
file: path.to_path_buf(),
suggested_index,
});
}
}
// Mark attachments as visited so they're not reported as orphans.
//
// An attachments entry is a markdown "attachment note" that wraps a
// binary asset. We mark both the note and the binary it points to
// as visited so neither is flagged as an orphan at workspace scan
// time. If the attachment target is missing, we still emit a
// BrokenAttachment error.
for attachment in index.frontmatter.attachments_list() {
// Flag non-portable relative dot-component paths
if let Some(warning) = check_non_portable_path(path, "attachments", attachment, dir)
{
ctx.result.warnings.push(warning);
}
let attachment_path = index.resolve_path(attachment);
let absolute_attachment_path = if attachment_path.is_absolute() {
attachment_path
} else {
ctx.workspace_root.join(&attachment_path)
};
if !self.ws.fs_ref().exists(&absolute_attachment_path).await {
ctx.result.errors.push(ValidationError::BrokenAttachment {
file: path.to_path_buf(),
attachment: attachment.clone(),
});
continue;
}
ctx.visited.insert(absolute_attachment_path.clone());
// An attachments entry must be a markdown attachment note
// (`.md` with an `attachment:` frontmatter property). Anything
// else is the legacy flat format and we flag it so the user
// can migrate.
if let Some((reason, kind)) = self
.attachment_entry_invalid_reason(&absolute_attachment_path)
.await
{
ctx.result
.warnings
.push(ValidationWarning::InvalidAttachmentRef {
file: path.to_path_buf(),
target: attachment.clone(),
reason,
kind,
});
continue;
}
// If this is an attachment note, also mark the binary it
// wraps as visited so orphan scanning ignores it.
self.mark_attachment_binary_visited(
&absolute_attachment_path,
ctx.link_format,
ctx.workspace_root,
ctx.visited,
)
.await;
// Verify the attachment note has a matching `attachment_of`
// backlink to this index. This parallels the links/link_of
// backlink check above.
if let Ok(note) = self
.ws
.parse_index_with_hint(&absolute_attachment_path, ctx.link_format)
.await
{
let note_canonical = workspace_relative_canonical_path(
&absolute_attachment_path,
ctx.workspace_root,
);
if !list_contains_canonical_link(
note.frontmatter.attachment_of_list(),
&file_canonical,
¬e_canonical,
ctx.link_format,
) {
ctx.result
.warnings
.push(ValidationWarning::MissingAttachmentBacklink {
file: absolute_attachment_path.clone(),
source: file_canonical.clone(),
suggested: expected_self_link(
&file_canonical,
index.frontmatter.title.as_deref(),
ctx.link_format,
),
});
}
}
}
// Check this file's own `attachment_of` entries for stale refs:
// the source must exist AND its `attachments` list must still
// reference this file.
for backlink in index.frontmatter.attachment_of_list() {
let source_path = index.resolve_path(backlink);
let absolute_source_path = if source_path.is_absolute() {
source_path.clone()
} else {
ctx.workspace_root.join(&source_path)
};
let stale = if !self.ws.fs_ref().exists(&absolute_source_path).await {
true
} else if let Ok(source_index) = self
.ws
.parse_index_with_hint(&absolute_source_path, ctx.link_format)
.await
{
let source_canonical = workspace_relative_canonical_path(
&absolute_source_path,
ctx.workspace_root,
);
!list_contains_canonical_link(
source_index.frontmatter.attachments_list(),
&file_canonical,
&source_canonical,
ctx.link_format,
)
} else {
true
};
if stale {
ctx.result
.warnings
.push(ValidationWarning::StaleAttachmentBacklink {
file: path.to_path_buf(),
value: backlink.clone(),
});
}
}
}
Ok(())
}
/// Decide whether a resolved `attachments[]` entry is a valid markdown
/// attachment note. Returns `None` if it is, or `Some((reason, kind))`
/// with a short human-readable explanation and a structured classification
/// used by the autofixer if it is not.
///
/// Rules:
/// - Extension must be `.md` (case-insensitive).
/// - The parsed file must expose an `attachment:` frontmatter property.
async fn attachment_entry_invalid_reason(
&self,
entry: &Path,
) -> Option<(String, InvalidAttachmentRefKind)> {
let is_markdown = entry
.extension()
.and_then(|e| e.to_str())
.is_some_and(|ext| ext.eq_ignore_ascii_case("md"));
if !is_markdown {
return Some((
"not a markdown attachment note (wrap the binary in a `.md` note with an `attachment:` property)"
.to_string(),
InvalidAttachmentRefKind::LegacyBinary {
binary_path: entry.to_path_buf(),
},
));
}
match self.ws.parse_index(entry).await {
Ok(note) if note.frontmatter.attachment.is_some() => None,
Ok(_) => Some((
"markdown file is not an attachment note (missing `attachment:` frontmatter property)"
.to_string(),
InvalidAttachmentRefKind::NotAttachmentNote,
)),
Err(_) => Some((
"could not parse file as an attachment note".to_string(),
InvalidAttachmentRefKind::UnparseableNote,
)),
}
}
/// Parse a markdown file as a potential attachment note and, if it has an
/// `attachment:` property pointing at a binary asset, mark that binary as
/// visited so the orphan scanner doesn't flag it.
async fn mark_attachment_binary_visited(
&self,
note_path: &Path,
link_format: Option<LinkFormat>,
workspace_root: &Path,
visited: &mut HashSet<PathBuf>,
) {
let Ok(note) = self.ws.parse_index_with_hint(note_path, link_format).await else {
return;
};
let Some(ref attachment_ref) = note.frontmatter.attachment else {
return;
};
let binary_path = note.resolve_path(attachment_ref);
let absolute_binary_path = if binary_path.is_absolute() {
binary_path
} else {
workspace_root.join(&binary_path)
};
if self.ws.fs_ref().exists(&absolute_binary_path).await {
visited.insert(absolute_binary_path);
}
}
/// Try to find the workspace root by searching for a root index file in parent directories.
///
/// Walks up from `start_path` asking `Workspace::find_any_index_in_dir`
/// at each level. The first directory whose index has no `part_of` is the
/// root. Returns `None` if no root index is found within 10 levels.
async fn find_workspace_root(&self, start_path: &Path) -> Option<PathBuf> {
let mut current = start_path.parent()?;
for _ in 0..10 {
if let Ok(Some(candidate)) = self.ws.find_any_index_in_dir(current).await
&& let Ok(index) = self.ws.parse_index(&candidate).await
&& index.frontmatter.is_root()
{
return Some(current.to_path_buf());
}
current = current.parent()?;
}
None
}
/// Validate a single file's links.
///
/// Checks:
/// - The file's `part_of` reference points to an existing file
/// - All `contents` references (if any) point to existing files
/// - Markdown files in the same directory that aren't listed in `contents`
/// - Sub-indexes (files with a `contents` property) inside immediate
/// subdirectories that aren't listed in this index's `contents`
///
/// Does not recursively validate the entire workspace, just the specified file.
pub async fn validate_file(&self, file_path: &Path) -> Result<ValidationResult> {
let mut result = ValidationResult::default();
// Strip `.`/`..` components without touching the filesystem. We
// deliberately avoid `canonicalize()`: it fails on WASM and on the
// in-memory filesystem, and follows symlinks which we don't want.
//
// We also don't force the path to be absolute — each filesystem
// backend (real, in-memory, WASM) handles relative paths according
// to its own conventions, and the validator is agnostic.
let path = normalize_path(file_path);
if !self.ws.fs_ref().exists(&path).await {
return Err(crate::error::DiaryxError::InvalidPath {
path: path.clone(),
message: "File not found".to_string(),
});
}
result.files_checked = 1;
// Check filename for non-portable characters
if let Some(filename) = path.file_name().and_then(|n| n.to_str())
&& let Some(reason) = has_non_portable_chars(filename)
{
result
.warnings
.push(ValidationWarning::NonPortableFilename {
file: path.clone(),
reason,
suggested_filename: sanitize_filename(filename),
});
}
// Try to find the workspace root by looking for a root index in parent directories
// Fall back to the file's parent directory if not found
let workspace_root = self
.find_workspace_root(&path)
.await
.unwrap_or_else(|| path.parent().unwrap_or(Path::new(".")).to_path_buf());
// Get link format from workspace config
let link_format = self
.ws
.get_workspace_config(&workspace_root.join("README.md"))
.await
.map(|c| c.link_format)
.ok();
// Try to parse and validate (with link format hint)
if let Ok(index) = self.ws.parse_index_with_hint(&path, link_format).await {
let dir = index.directory().unwrap_or_else(|| Path::new(""));
let file_canonical = workspace_relative_canonical_path(&path, &workspace_root);
// Flag duplicate entries in any link-bearing list.
check_duplicate_lists(
&mut result,
&path,
&index.frontmatter,
&file_canonical,
link_format,
);
if let Some(link) = index.frontmatter.link.as_deref() {
let parsed = link_parser::parse_link(link);
let resolved = link_parser::to_canonical_with_link_format(
&parsed,
Path::new(&file_canonical),
link_format,
);
if resolved != file_canonical {
result.warnings.push(ValidationWarning::InvalidSelfLink {
file: path.clone(),
value: link.to_string(),
suggested: expected_self_link(
&file_canonical,
index.frontmatter.title.as_deref(),
link_format,
),
});
}
}
for link_ref in index.frontmatter.links_list() {
let target_path = index.resolve_path(link_ref);
let absolute_target_path = if target_path.is_absolute() {
target_path.clone()
} else {
workspace_root.join(&target_path)
};
if !self.ws.fs_ref().exists(&absolute_target_path).await {
result.errors.push(ValidationError::BrokenLinkRef {
file: path.clone(),
target: link_ref.clone(),
});
continue;
}
if let Ok(target_index) = self
.ws
.parse_index_with_hint(&absolute_target_path, link_format)
.await
{
let target_canonical =
workspace_relative_canonical_path(&absolute_target_path, &workspace_root);
if !list_contains_canonical_link(
target_index.frontmatter.link_of_list(),
&file_canonical,
&target_canonical,
link_format,
) {
result.warnings.push(ValidationWarning::MissingBacklink {
file: absolute_target_path.clone(),
source: file_canonical.clone(),
suggested: expected_self_link(
&file_canonical,
index.frontmatter.title.as_deref(),
link_format,
),
});
}
}
}
for backlink in index.frontmatter.link_of_list() {
let source_path = index.resolve_path(backlink);
let absolute_source_path = if source_path.is_absolute() {
source_path.clone()
} else {
workspace_root.join(&source_path)
};
let stale = if !self.ws.fs_ref().exists(&absolute_source_path).await {
true
} else if let Ok(source_index) = self
.ws
.parse_index_with_hint(&absolute_source_path, link_format)
.await
{
let source_canonical =
workspace_relative_canonical_path(&absolute_source_path, &workspace_root);
!list_contains_canonical_link(
source_index.frontmatter.links_list(),
&file_canonical,
&source_canonical,
link_format,
)
} else {
true
};
if stale {
result.warnings.push(ValidationWarning::StaleBacklink {
file: path.clone(),
value: backlink.clone(),
});
}
}
for backlink in index.frontmatter.attachment_of_list() {
let source_path = index.resolve_path(backlink);
let absolute_source_path = if source_path.is_absolute() {
source_path.clone()
} else {
workspace_root.join(&source_path)
};
let stale = if !self.ws.fs_ref().exists(&absolute_source_path).await {
true
} else if let Ok(source_index) = self
.ws
.parse_index_with_hint(&absolute_source_path, link_format)
.await
{
let source_canonical =
workspace_relative_canonical_path(&absolute_source_path, &workspace_root);
!list_contains_canonical_link(
source_index.frontmatter.attachments_list(),
&file_canonical,
&source_canonical,
link_format,
)
} else {
true
};
if stale {
result
.warnings
.push(ValidationWarning::StaleAttachmentBacklink {
file: path.clone(),
value: backlink.clone(),
});
}
}
// Collect listed contents entries as normalized absolute PathBufs
// so we can compare directory entries against them without losing
// directory information (filename-only matching would collide on
// siblings with the same basename across subdirectories).
let contents_list = index.frontmatter.contents_list();
let listed_files: HashSet<PathBuf> = contents_list
.iter()
.map(|child_ref| {
let resolved = index.resolve_path(child_ref);
let absolute = if resolved.is_absolute() {
resolved
} else {
workspace_root.join(&resolved)
};
normalize_path(&absolute)
})
.collect();
// Check all contents references
for child_ref in contents_list {
// Use index.resolve_path which handles markdown links and relative paths
let child_path = index.resolve_path(child_ref);
// Make path absolute if needed by joining with workspace root
let absolute_child_path = if child_path.is_absolute() {
child_path.clone()
} else {
workspace_root.join(&child_path)
};
if !self.ws.fs_ref().exists(&absolute_child_path).await {
result.errors.push(ValidationError::BrokenContentsRef {
index: path.clone(),
target: child_ref.clone(),
});
} else if child_path.extension().is_none_or(|ext| ext != "md") {
// Non-markdown file in contents - contents entries must be
// markdown. Binary assets belong in `attachments`, wrapped
// by a markdown attachment note.
result.warnings.push(ValidationWarning::InvalidContentsRef {
index: path.clone(),
target: child_ref.clone(),
});
}
}
// Check part_of if present
if let Some(ref part_of) = index.frontmatter.part_of {
if is_clearly_non_portable_path(part_of) {
// Non-portable path - add warning, skip exists() check
result.warnings.push(ValidationWarning::NonPortablePath {
file: path.clone(),
property: "part_of".to_string(),
value: part_of.clone(),
suggested: compute_suggested_portable_path(part_of, dir),
});
} else {
// Use index.resolve_path which handles markdown links and relative paths
let parent_path = index.resolve_path(part_of);
// Make path absolute if needed
let absolute_parent_path = if parent_path.is_absolute() {
parent_path
} else {
workspace_root.join(&parent_path)
};
if !self.ws.fs_ref().exists(&absolute_parent_path).await {
result.errors.push(ValidationError::BrokenPartOf {
file: path.clone(),
target: part_of.clone(),
});
}
// Also check for . or .. in non-absolute paths
if let Some(warning) = check_non_portable_path(&path, "part_of", part_of, dir) {
result.warnings.push(warning);
}
}
} else {
// File has no part_of - check if it's a root index
// Non-index files (files without contents) should have part_of
// Index files without part_of are potential root indexes, which is allowed
// Attachment notes are managed via `attachments`, not `contents`/`part_of`
// But if it has no contents AND no part_of, it's definitely orphaned
let is_attachment_note = index.frontmatter.attachment.is_some();
if !index.frontmatter.is_index() && !is_attachment_note {
// Regular file with no part_of = orphan
// Try to find an index in the same directory to suggest
let suggested_index = find_index_in_directory(&self.ws, dir, Some(&path)).await;
result.warnings.push(ValidationWarning::MissingPartOf {
file: path.clone(),
suggested_index,
});
}
}
// Check contents entries for non-portable paths
for child_ref in index.frontmatter.contents_list() {
if let Some(warning) = check_non_portable_path(&path, "contents", child_ref, dir) {
result.warnings.push(warning);
}
}
// Check attachments if present
for attachment in index.frontmatter.attachments_list() {
// Use index.resolve_path which handles markdown links and relative paths
let attachment_path = index.resolve_path(attachment);
// Make path absolute if needed
let absolute_attachment_path = if attachment_path.is_absolute() {
attachment_path
} else {
workspace_root.join(&attachment_path)
};
// Check if attachment path is non-portable
if let Some(warning) =
check_non_portable_path(&path, "attachments", attachment, dir)
{
result.warnings.push(warning);
}
// Check if attachment exists
if !self.ws.fs_ref().exists(&absolute_attachment_path).await {
result.errors.push(ValidationError::BrokenAttachment {
file: path.clone(),
attachment: attachment.clone(),
});
continue;
}
// Verify the entry points at a valid markdown attachment note.
if let Some((reason, kind)) = self
.attachment_entry_invalid_reason(&absolute_attachment_path)
.await
{
result
.warnings
.push(ValidationWarning::InvalidAttachmentRef {
file: path.clone(),
target: attachment.clone(),
reason,
kind,
});
}
}
// Check for unlisted .md files in the same directory
// Only if this file has contents (is an index)
if index.frontmatter.is_index()
&& let Ok(entries) = self.ws.fs_ref().list_files(dir).await
{
let this_filename = path.file_name().and_then(|n| n.to_str()).unwrap_or("");
// Collect exclude patterns from this index and all ancestors
let inherited_exclude_patterns = self.collect_exclude_patterns(&path).await;
// Collect all attachments referenced by this index as
// normalized absolute paths, so we can compare directory
// entries against them without losing directory information.
//
// Note: under the current attachment model, `attachments`
// entries point at markdown attachment *notes* (not binaries
// directly). A binary sitting in the same directory as this
// index is therefore correctly reported as an orphan — the
// expected layout is `_attachments/<file>.<ext>` wrapped by
// `_attachments/<file>.<ext>.md`.
let referenced_attachments: HashSet<PathBuf> = index
.frontmatter
.attachments_list()
.iter()
.map(|attachment_ref| {
let resolved = index.resolve_path(attachment_ref);
let absolute = if resolved.is_absolute() {
resolved
} else {
workspace_root.join(&resolved)
};
normalize_path(&absolute)
})
.collect();
// Collect other index files in this directory
let mut other_indexes: Vec<PathBuf> = Vec::new();
// Collect immediate subdirectories so we can also look 1 level
// deep for orphaned sub-indexes (files with a `contents`
// property that the current index doesn't reference).
let mut subdirs_to_check: Vec<PathBuf> = Vec::new();
for entry_path in entries {
// Skip symlinks - they're filesystem implementation details
if self.ws.fs_ref().is_symlink(&entry_path).await {
continue;
}
// Skip hidden files (starting with .)
if entry_path
.file_name()
.and_then(|n| n.to_str())
.is_some_and(|s| s.starts_with('.'))
{
continue;
}
// Skip temporary files (.tmp, .bak, .swap) from atomic write operations
if entry_path
.file_name()
.and_then(|n| n.to_str())
.is_some_and(is_temp_file)
{
continue;
}
if self.ws.fs_ref().is_dir(&entry_path).await {
if !self.should_skip_workspace_dir(&entry_path) {
subdirs_to_check.push(entry_path);
}
continue;
}
let extension = entry_path.extension().and_then(|e| e.to_str());
let filename = entry_path.file_name().and_then(|n| n.to_str());
match extension {
Some("md") => {
if let Some(fname) = filename {
// Skip the current file
if fname == this_filename {
continue;
}
// Parse the entry once to answer both "is this
// another index in the same directory?" and
// "is this an attachment note?". A file is an
// index iff its frontmatter has a `contents`
// property — filename is irrelevant.
let parsed_entry = self.ws.parse_index(&entry_path).await.ok();
let is_other_index = parsed_entry
.as_ref()
.is_some_and(|idx| idx.frontmatter.is_index());
let is_attachment_note = parsed_entry
.as_ref()
.is_some_and(|idx| idx.frontmatter.attachment.is_some());
if is_other_index {
other_indexes.push(entry_path.clone());
}
// Check if this markdown file is in contents
let entry_normalized = normalize_path(&entry_path);
if !listed_files.contains(&entry_normalized) {
// Check if file matches any exclude pattern (inherited from ancestors)
let is_excluded =
inherited_exclude_patterns.iter().any(|pattern| {
self.path_matches_exclude(
pattern,
&workspace_root,
&entry_path,
fname,
)
});
if !is_excluded && !is_attachment_note {
result.warnings.push(ValidationWarning::OrphanFile {
file: entry_path,
suggested_index: Some(path.clone()),
});
}
}
}
}
Some(ext) if !ext.eq_ignore_ascii_case("md") => {
// Binary file - check if it's referenced by attachments
let entry_normalized = normalize_path(&entry_path);
if let Some(fname) = filename
&& !referenced_attachments.contains(&entry_normalized)
{
// Check if file matches any exclude pattern (inherited from ancestors)
let is_excluded =
inherited_exclude_patterns.iter().any(|pattern| {
self.path_matches_exclude(
pattern,
&workspace_root,
&entry_path,
fname,
)
});
if !is_excluded {
result.warnings.push(ValidationWarning::OrphanBinaryFile {
file: entry_path,
// We can suggest connecting to the current index
suggested_index: Some(path.clone()),
});
}
}
}
_ => {}
}
}
// Report multiple indexes if found
if !other_indexes.is_empty() {
let mut all_indexes = other_indexes;
all_indexes.push(path.clone());
all_indexes.sort();
result.warnings.push(ValidationWarning::MultipleIndexes {
directory: dir.to_path_buf(),
indexes: all_indexes,
});
}
// Look one level deep into each immediate subdirectory for
// orphaned sub-indexes. A sub-index is any file with a
// `contents` property. If the current index doesn't reference
// it, we flag the sub-index itself as an OrphanFile (we don't
// descend further — the sub-index owns its own children).
//
// Note: this deliberately doesn't warn about subdirs that have
// no index file at all; those are caught by workspace-level
// validation's orphan scan.
for subdir in subdirs_to_check {
let Ok(sub_entries) = self.ws.fs_ref().list_files(&subdir).await else {
continue;
};
for sub_entry in sub_entries {
if self.ws.fs_ref().is_symlink(&sub_entry).await {
continue;
}
if self.ws.fs_ref().is_dir(&sub_entry).await {
continue;
}
let Some(fname) = sub_entry.file_name().and_then(|n| n.to_str()) else {
continue;
};
if fname.starts_with('.') || is_temp_file(fname) {
continue;
}
if !sub_entry
.extension()
.and_then(|e| e.to_str())
.is_some_and(|ext| ext.eq_ignore_ascii_case("md"))
{
continue;
}
// Only sub-indexes are considered here (files with a
// `contents` property). Non-index files belong to
// their own parent index, not this grandparent.
let Ok(sub_index) = self.ws.parse_index(&sub_entry).await else {
continue;
};
if !sub_index.frontmatter.is_index() {
continue;
}
// Skip attachment notes - they use `attachments`, not
// `contents`/`part_of`.
if sub_index.frontmatter.attachment.is_some() {
continue;
}
let sub_normalized = normalize_path(&sub_entry);
if listed_files.contains(&sub_normalized) {
continue;
}
let is_excluded = inherited_exclude_patterns.iter().any(|pattern| {
self.path_matches_exclude(pattern, &workspace_root, &sub_entry, fname)
});
if is_excluded {
continue;
}
result.warnings.push(ValidationWarning::OrphanFile {
file: sub_entry,
suggested_index: Some(path.clone()),
});
}
}
}
}
Ok(result)
}
}