overleaf/services/web/migrations/20191107191318_saml-indentifiers-index.js

42 lines
1.2 KiB
JavaScript
Raw Normal View History

/* eslint-disable no-unused-vars */
const Helpers = require('./lib/helpers')
const { getCollectionInternal } = require('../app/src/infrastructure/mongodb')
exports.tags = ['saas']
const indexes = [
{
key: {
'samlIdentifiers.externalUserId': 1,
'samlIdentifiers.providerId': 1,
},
name: 'samlIdentifiers.externalUserId_1_samlIdentifiers.providerId_1',
sparse: true,
},
]
// Export indexes for use in the fix-up migration 20220105130000_fix_saml_indexes.js.
exports.usersIndexes = indexes
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')
}
exports.migrate = async client => {
const collection = await getCollection()
await Helpers.addIndexesToCollection(collection, indexes)
}
exports.rollback = async client => {
const collection = await getCollection()
try {
await Helpers.dropIndexesFromCollection(collection, indexes)
} catch (err) {
console.error('Something went wrong rolling back the migrations', err)
}
}