overleaf-cep/services/web/scripts/restore_orphaned_docs.mjs
Liangjun Song 2f87db9c0d Merge pull request #24790 from overleaf/ls-use-script-runner
Update some scripts to use Script Runner

GitOrigin-RevId: aaa11f94dcfd328c158bb02d1b9fb2adfb1bb146
2025-05-23 08:05:23 +00:00

44 lines
1.3 KiB
JavaScript

import ProjectEntityRestoreHandler from '../app/src/Features/Project/ProjectEntityRestoreHandler.js'
import ProjectEntityHandler from '../app/src/Features/Project/ProjectEntityHandler.js'
import DocstoreManager from '../app/src/Features/Docstore/DocstoreManager.js'
import { scriptRunner } from './lib/ScriptRunner.mjs'
const ARGV = process.argv.slice(2)
const DEVELOPER_USER_ID = ARGV.shift()
const PROJECT_ID = ARGV.shift()
const DOC_IDS_TO_RESTORE = ARGV
async function main() {
const allDocs = await DocstoreManager.promises.getAllDocs(PROJECT_ID)
const docsToRestore = allDocs.filter(doc =>
DOC_IDS_TO_RESTORE.includes(doc._id)
)
const docPaths =
await ProjectEntityHandler.promises.getAllDocPathsFromProjectById(
PROJECT_ID
)
for (const orphanedDoc of docsToRestore) {
console.log('Restoring doc: ', orphanedDoc._id)
if (docPaths[orphanedDoc._id]) {
console.log(`Doc already exists, skipping ${docPaths[orphanedDoc._id]}`)
continue
}
const newDoc = await ProjectEntityRestoreHandler.promises.restoreDeletedDoc(
PROJECT_ID,
orphanedDoc._id,
`restored-${orphanedDoc._id}-rev-${orphanedDoc.rev}.tex`,
DEVELOPER_USER_ID
)
console.log(newDoc)
}
}
try {
await scriptRunner(main)
process.exit(0)
} catch (error) {
console.error(error)
process.exit(1)
}