mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #20770 from overleaf/ls-drop-unused-collections
drop unused collections GitOrigin-RevId: 4b079f15dca349ef6a5aed8d9dcb35478819c2ce
This commit is contained in:
parent
ee8c13ec7e
commit
7258ddcf02
4 changed files with 54 additions and 12 deletions
|
@ -100,11 +100,9 @@ async function setupDb() {
|
||||||
db.systemmessages = internalDb.collection('systemmessages')
|
db.systemmessages = internalDb.collection('systemmessages')
|
||||||
db.tags = internalDb.collection('tags')
|
db.tags = internalDb.collection('tags')
|
||||||
db.teamInvites = internalDb.collection('teamInvites')
|
db.teamInvites = internalDb.collection('teamInvites')
|
||||||
db.templates = internalDb.collection('templates')
|
|
||||||
db.tokens = internalDb.collection('tokens')
|
db.tokens = internalDb.collection('tokens')
|
||||||
db.userAuditLogEntries = internalDb.collection('userAuditLogEntries')
|
db.userAuditLogEntries = internalDb.collection('userAuditLogEntries')
|
||||||
db.users = internalDb.collection('users')
|
db.users = internalDb.collection('users')
|
||||||
db.userstubs = internalDb.collection('userstubs')
|
|
||||||
db.onboardingDataCollection = internalDb.collection(
|
db.onboardingDataCollection = internalDb.collection(
|
||||||
'onboardingDataCollection'
|
'onboardingDataCollection'
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
/* eslint-disable no-unused-vars */
|
/* eslint-disable no-unused-vars */
|
||||||
|
|
||||||
import Helpers from './lib/helpers.mjs'
|
import Helpers from './lib/helpers.mjs'
|
||||||
|
import mongodb from '../app/src/infrastructure/mongodb.js'
|
||||||
|
const { getCollectionInternal } = mongodb
|
||||||
|
|
||||||
const tags = ['server-pro', 'saas']
|
const tags = ['server-pro', 'saas']
|
||||||
|
|
||||||
|
@ -26,17 +28,21 @@ const indexes = [
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
const migrate = async client => {
|
async function getCollection() {
|
||||||
const { db } = client
|
// NOTE: This is a stale collection, it will get dropped in a later migration.
|
||||||
|
return await getCollectionInternal('templates')
|
||||||
|
}
|
||||||
|
|
||||||
await Helpers.addIndexesToCollection(db.templates, indexes)
|
const migrate = async client => {
|
||||||
|
const collection = await getCollection()
|
||||||
|
await Helpers.addIndexesToCollection(collection, indexes)
|
||||||
}
|
}
|
||||||
|
|
||||||
const rollback = async client => {
|
const rollback = async client => {
|
||||||
const { db } = client
|
const collection = await getCollection()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await Helpers.dropIndexesFromCollection(db.templates, indexes)
|
await Helpers.dropIndexesFromCollection(collection, indexes)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error('Something went wrong rolling back the migrations', err)
|
console.error('Something went wrong rolling back the migrations', err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
/* eslint-disable no-unused-vars */
|
/* eslint-disable no-unused-vars */
|
||||||
|
|
||||||
import Helpers from './lib/helpers.mjs'
|
import Helpers from './lib/helpers.mjs'
|
||||||
|
import mongodb from '../app/src/infrastructure/mongodb.js'
|
||||||
|
const { getCollectionInternal } = mongodb
|
||||||
|
|
||||||
const tags = ['saas']
|
const tags = ['saas']
|
||||||
|
|
||||||
|
@ -13,17 +15,22 @@ const indexes = [
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
const migrate = async client => {
|
async function getCollection() {
|
||||||
const { db } = client
|
// NOTE: This is a stale collection, it will get dropped in a later migration.
|
||||||
|
return await getCollectionInternal('userstubs')
|
||||||
|
}
|
||||||
|
|
||||||
await Helpers.addIndexesToCollection(db.userstubs, indexes)
|
const migrate = async client => {
|
||||||
|
const collection = await getCollection()
|
||||||
|
|
||||||
|
await Helpers.addIndexesToCollection(collection, indexes)
|
||||||
}
|
}
|
||||||
|
|
||||||
const rollback = async client => {
|
const rollback = async client => {
|
||||||
const { db } = client
|
const collection = await getCollection()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await Helpers.dropIndexesFromCollection(db.userstubs, indexes)
|
await Helpers.dropIndexesFromCollection(collection, indexes)
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error('Something went wrong rolling back the migrations', err)
|
console.error('Something went wrong rolling back the migrations', err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
import Helpers from './lib/helpers.mjs'
|
||||||
|
|
||||||
|
const tags = ['saas']
|
||||||
|
|
||||||
|
const unusedCollections = [
|
||||||
|
'githubBuilds',
|
||||||
|
'githubRepos',
|
||||||
|
'userstubs',
|
||||||
|
'templates',
|
||||||
|
'quotes',
|
||||||
|
'folders',
|
||||||
|
'files',
|
||||||
|
'objectlabs-system',
|
||||||
|
'objectlabs-system.admin.collections',
|
||||||
|
]
|
||||||
|
|
||||||
|
const migrate = async client => {
|
||||||
|
for (const name of unusedCollections) {
|
||||||
|
await Helpers.dropCollection(name)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const rollback = async client => {
|
||||||
|
// can't really do anything here
|
||||||
|
}
|
||||||
|
|
||||||
|
export default {
|
||||||
|
tags,
|
||||||
|
migrate,
|
||||||
|
rollback,
|
||||||
|
}
|
Loading…
Reference in a new issue