Spaces:
Running
Running
File size: 4,345 Bytes
53873ca |
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 |
// Link Validation Script
const validateWebsite = {
// Core paths that must exist
criticalPaths: [
'/',
'/projects',
'/papers',
'/proposals',
'/docs',
'/api',
'/investors'
],
// Project paths
projectPaths: [
'/projects/analytics',
'/projects/autoglaucoma',
'/projects/automedical'
],
// Paper paths
paperPaths: [
'/papers/fermed-vlm.pdf',
'/papers/fermed-vlm.html',
'/papers/archive'
],
// Proposal paths
proposalPaths: [
'/proposals/nhs/main',
'/proposals/nhs/detailed',
'/proposals/nhs/formal',
'/proposals/spanish/12oct',
'/proposals/spanish/hospital',
'/proposals/simple'
],
// Documentation paths
docPaths: [
'/docs/main',
'/docs/internal/emails',
'/docs/internal/requirements',
'/docs/internal/context',
'/docs/references'
],
// Validate all links
validateLinks() {
const results = {
working: [],
redirects: [],
broken: []
};
// Combine all paths
const allPaths = [
...this.criticalPaths,
...this.projectPaths,
...this.paperPaths,
...this.proposalPaths,
...this.docPaths
];
// Check each path
allPaths.forEach(path => {
try {
const response = fetch(path);
if (response.ok) {
results.working.push(path);
} else if (response.status >= 300 && response.status < 400) {
results.redirects.push(path);
} else {
results.broken.push(path);
}
} catch (error) {
results.broken.push(path);
}
});
return results;
},
// Validate navigation consistency
validateNavigation() {
const navResults = {
consistent: [],
inconsistent: []
};
// Check navigation elements
document.querySelectorAll('nav a').forEach(link => {
const href = link.getAttribute('href');
if (href) {
const matchingPath = this.allPaths.find(path => path === href);
if (matchingPath) {
navResults.consistent.push(href);
} else {
navResults.inconsistent.push(href);
}
}
});
return navResults;
},
// Validate breadcrumbs
validateBreadcrumbs() {
const breadcrumbResults = {
valid: [],
invalid: []
};
document.querySelectorAll('.breadcrumb').forEach(breadcrumb => {
const links = breadcrumb.querySelectorAll('a');
let validPath = true;
let currentPath = '';
links.forEach(link => {
const href = link.getAttribute('href');
if (href) {
currentPath += href === '/' ? '' : href;
if (!this.allPaths.includes(currentPath)) {
validPath = false;
}
}
});
if (validPath) {
breadcrumbResults.valid.push(currentPath);
} else {
breadcrumbResults.invalid.push(currentPath);
}
});
return breadcrumbResults;
},
// Generate report
generateReport() {
const linkResults = this.validateLinks();
const navResults = this.validateNavigation();
const breadcrumbResults = this.validateBreadcrumbs();
return {
links: linkResults,
navigation: navResults,
breadcrumbs: breadcrumbResults,
summary: {
totalLinks: Object.values(linkResults).flat().length,
brokenLinks: linkResults.broken.length,
inconsistentNav: navResults.inconsistent.length,
invalidBreadcrumbs: breadcrumbResults.invalid.length
}
};
}
};
// Export for use in Node.js environments
if (typeof module !== 'undefined' && module.exports) {
module.exports = validateWebsite;
} |