2021-07-21 06:34:09 -04:00
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
import Helpers from './lib/helpers.mjs'
|
|
|
|
import mongodb from '../app/src/infrastructure/mongodb.js'
|
|
|
|
const { getCollectionInternal } = mongodb
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const tags = ['saas']
|
2021-07-21 06:34:09 -04:00
|
|
|
|
|
|
|
const indexes = [
|
|
|
|
{
|
|
|
|
key: {
|
|
|
|
'samlIdentifiers.externalUserId': 1,
|
|
|
|
'samlIdentifiers.providerId': 1,
|
|
|
|
},
|
|
|
|
name: 'samlIdentifiers.externalUserId_1_samlIdentifiers.providerId_1',
|
|
|
|
sparse: true,
|
|
|
|
},
|
|
|
|
]
|
|
|
|
|
2022-01-10 06:36:18 -05:00
|
|
|
// Export indexes for use in the fix-up migration 20220105130000_fix_saml_indexes.js.
|
2024-10-02 05:32:13 -04:00
|
|
|
const usersIndexes = 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 `users` instead
|
|
|
|
// of `user`. The error is corrected by the subsequent migration
|
|
|
|
// 20220105130000_fix_saml_indexes.js.
|
|
|
|
return await getCollectionInternal('user')
|
2021-07-21 06:34:09 -04:00
|
|
|
}
|
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const migrate = async client => {
|
2022-01-10 06:36:18 -05:00
|
|
|
const collection = await getCollection()
|
|
|
|
await Helpers.addIndexesToCollection(collection, indexes)
|
|
|
|
}
|
2021-07-21 06:34:09 -04:00
|
|
|
|
2024-10-02 05:32:13 -04:00
|
|
|
const rollback = async client => {
|
2022-01-10 06:36:18 -05:00
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
2024-10-02 05:32:13 -04:00
|
|
|
|
|
|
|
export default {
|
|
|
|
tags,
|
|
|
|
migrate,
|
|
|
|
rollback,
|
|
|
|
usersIndexes,
|
|
|
|
}
|