mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-15 03:05:41 +00:00
Merge pull request #7932 from overleaf/em-find-bad-filenames
Script for finding bad doc and file names in projects GitOrigin-RevId: 21035b9ce847d2c2a3183942458e2b30cc6c3fae
This commit is contained in:
parent
9062d4ce5d
commit
c26a057522
1 changed files with 48 additions and 10 deletions
|
@ -34,20 +34,58 @@ function processProject(project) {
|
|||
|
||||
function findBadPaths(folder) {
|
||||
const result = []
|
||||
for (const attr of ['docs', 'fileRefs', 'folders']) {
|
||||
if (folder[attr] && !Array.isArray(folder[attr])) {
|
||||
result.push(attr)
|
||||
|
||||
if (typeof folder.name !== 'string' || !folder.name) {
|
||||
result.push('name')
|
||||
}
|
||||
|
||||
if (folder.folders) {
|
||||
if (Array.isArray(folder.folders)) {
|
||||
for (const [i, subfolder] of folder.folders.entries()) {
|
||||
if (!subfolder || typeof subfolder !== 'object') {
|
||||
result.push(`folders.${i}`)
|
||||
continue
|
||||
}
|
||||
for (const badPath of findBadPaths(subfolder)) {
|
||||
result.push(`folders.${i}.${badPath}`)
|
||||
}
|
||||
}
|
||||
} else {
|
||||
result.push('folders')
|
||||
}
|
||||
}
|
||||
if (folder.folders && Array.isArray(folder.folders)) {
|
||||
for (const [i, subfolder] of folder.folders.entries()) {
|
||||
if (!subfolder) {
|
||||
result.push(`folders.${i}`)
|
||||
continue
|
||||
|
||||
if (folder.docs) {
|
||||
if (Array.isArray(folder.docs)) {
|
||||
for (const [i, doc] of folder.docs.entries()) {
|
||||
if (!doc || typeof doc !== 'object') {
|
||||
result.push(`docs.${i}`)
|
||||
continue
|
||||
}
|
||||
if (typeof doc.name !== 'string' || !doc.name) {
|
||||
result.push(`docs.${i}.name`)
|
||||
continue
|
||||
}
|
||||
}
|
||||
for (const badPath of findBadPaths(subfolder)) {
|
||||
result.push(`folders.${i}.${badPath}`)
|
||||
} else {
|
||||
result.push('docs')
|
||||
}
|
||||
}
|
||||
|
||||
if (folder.fileRefs) {
|
||||
if (Array.isArray(folder.fileRefs)) {
|
||||
for (const [i, file] of folder.fileRefs.entries()) {
|
||||
if (!file || typeof file !== 'object') {
|
||||
result.push(`fileRefs.${i}`)
|
||||
continue
|
||||
}
|
||||
if (typeof file.name !== 'string' || !file.name) {
|
||||
result.push(`fileRefs.${i}.name`)
|
||||
continue
|
||||
}
|
||||
}
|
||||
} else {
|
||||
result.push('fileRefs')
|
||||
}
|
||||
}
|
||||
return result
|
||||
|
|
Loading…
Add table
Reference in a new issue