2021-07-21 06:34:09 -04:00
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
|
|
|
const Helpers = require('./lib/helpers')
|
2022-01-10 06:36:18 -05:00
|
|
|
const { getCollectionInternal } = require('../app/src/infrastructure/mongodb')
|
2021-07-21 06:34:09 -04:00
|
|
|
|
|
|
|
exports.tags = ['saas']
|
|
|
|
|
|
|
|
const indexes = [
|
|
|
|
{
|
|
|
|
key: {
|
|
|
|
providerId: 1,
|
|
|
|
},
|
|
|
|
name: 'providerId_1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: {
|
|
|
|
sessionId: 1,
|
|
|
|
},
|
|
|
|
name: 'sessionId_1',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// expire after 30 days
|
|
|
|
expireAfterSeconds: 60 * 60 * 24 * 30,
|
|
|
|
key: {
|
|
|
|
createdAt: 1,
|
|
|
|
},
|
|
|
|
name: 'createdAt_1',
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2022-01-10 06:36:18 -05:00
|
|
|
// Export indexes for use in the fix-up migration 20220105130000_fix_saml_indexes.js.
|
|
|
|
exports.samlLogsIndexes = indexes
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2022-01-10 06:36:18 -05:00
|
|
|
async function getCollection() {
|
|
|
|
// This collection was incorrectly named - it should have been `samlLogs`
|
|
|
|
// instead of `samllog`. The error is corrected by the subsequent migration
|
|
|
|
// 20220105130000_fix_saml_indexes.js.
|
|
|
|
return await getCollectionInternal('samllog')
|
2021-07-21 06:34:09 -04:00
|
|
|
}
|
|
|
|
|
2022-01-10 06:36:18 -05:00
|
|
|
exports.migrate = async client => {
|
|
|
|
const collection = await getCollection()
|
|
|
|
await Helpers.addIndexesToCollection(collection, indexes)
|
|
|
|
}
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2022-01-10 06:36:18 -05:00
|
|
|
exports.rollback = async client => {
|
|
|
|
const collection = await getCollection()
|
2021-07-21 06:34:09 -04:00
|
|
|
try {
|
2022-01-10 06:36:18 -05:00
|
|
|
await Helpers.dropIndexesFromCollection(collection, indexes)
|
2021-07-21 06:34:09 -04:00
|
|
|
} catch (err) {
|
|
|
|
console.error('Something went wrong rolling back the migrations', err)
|
|
|
|
}
|
|
|
|
}
|