mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
27 lines
723 B
JavaScript
27 lines
723 B
JavaScript
|
const { getCollectionNames } = require('../../app/src/infrastructure/mongodb')
|
||
|
|
||
|
async function addIndexesToCollection(collection, indexes) {
|
||
|
return Promise.all(
|
||
|
indexes.map(index => {
|
||
|
index.background = true
|
||
|
return collection.createIndex(index.key, index)
|
||
|
})
|
||
|
)
|
||
|
}
|
||
|
|
||
|
async function dropIndexesFromCollection(collection, indexes) {
|
||
|
return Promise.all(indexes.map(index => collection.dropIndex(index.name)))
|
||
|
}
|
||
|
|
||
|
async function dropCollection(db, collectionName) {
|
||
|
const allCollections = await getCollectionNames()
|
||
|
if (!allCollections.includes(collectionName)) return
|
||
|
return db[collectionName].drop()
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
addIndexesToCollection,
|
||
|
dropIndexesFromCollection,
|
||
|
dropCollection,
|
||
|
}
|