2020-09-25 04:40:07 -04:00
|
|
|
const _ = require('lodash')
|
|
|
|
|
|
|
|
const WRITE_CONCURRENCY = parseInt(process.env.WRITE_CONCURRENCY, 10) || 10
|
|
|
|
|
|
|
|
const { batchedUpdate } = require('./helpers/batchedUpdate')
|
|
|
|
const { promiseMapWithLimit } = require('../app/src/util/promises')
|
|
|
|
|
2020-11-04 04:53:26 -05:00
|
|
|
// $ node scripts/convert_archived_state.js FIRST,SECOND
|
|
|
|
|
2022-11-14 12:27:10 -05:00
|
|
|
async function main(STAGE) {
|
|
|
|
for (const FIELD of ['archived', 'trashed']) {
|
|
|
|
if (STAGE.includes('FIRST')) {
|
|
|
|
await batchedUpdate(
|
|
|
|
'projects',
|
|
|
|
{ [FIELD]: false },
|
|
|
|
{
|
|
|
|
$set: { [FIELD]: [] },
|
|
|
|
}
|
|
|
|
)
|
2020-09-25 04:40:07 -04:00
|
|
|
|
2022-11-14 12:27:10 -05:00
|
|
|
console.error('Done, with first part for field:', FIELD)
|
|
|
|
}
|
2020-09-25 04:40:07 -04:00
|
|
|
|
2022-11-14 12:27:10 -05:00
|
|
|
if (STAGE.includes('SECOND')) {
|
|
|
|
await batchedUpdate(
|
|
|
|
'projects',
|
|
|
|
{ [FIELD]: true },
|
|
|
|
async function performUpdate(collection, nextBatch) {
|
|
|
|
await promiseMapWithLimit(
|
|
|
|
WRITE_CONCURRENCY,
|
|
|
|
nextBatch,
|
|
|
|
async project => {
|
|
|
|
try {
|
|
|
|
await upgradeFieldToArray({ collection, project, FIELD })
|
|
|
|
} catch (err) {
|
|
|
|
console.error(project._id, err)
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_id: 1,
|
|
|
|
owner_ref: 1,
|
|
|
|
collaberator_refs: 1,
|
|
|
|
readOnly_refs: 1,
|
|
|
|
tokenAccessReadAndWrite_refs: 1,
|
|
|
|
tokenAccessReadOnly_refs: 1,
|
|
|
|
}
|
|
|
|
)
|
2020-11-04 04:53:26 -05:00
|
|
|
|
2022-11-14 12:27:10 -05:00
|
|
|
console.error('Done, with second part for field:', FIELD)
|
|
|
|
}
|
2020-11-04 04:53:26 -05:00
|
|
|
}
|
2020-09-25 04:40:07 -04:00
|
|
|
}
|
|
|
|
|
2022-11-14 12:27:10 -05:00
|
|
|
module.exports = main
|
2020-09-25 04:40:07 -04:00
|
|
|
|
2022-11-14 12:27:10 -05:00
|
|
|
if (require.main === module) {
|
|
|
|
main(process.argv.pop())
|
|
|
|
.then(() => {
|
|
|
|
process.exit(0)
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
console.error({ error })
|
|
|
|
process.exit(1)
|
|
|
|
})
|
2020-09-25 04:40:07 -04:00
|
|
|
}
|
|
|
|
|
2022-11-14 12:27:10 -05:00
|
|
|
async function upgradeFieldToArray({ collection, project, FIELD }) {
|
2020-09-25 04:40:07 -04:00
|
|
|
return collection.updateOne(
|
|
|
|
{ _id: project._id },
|
|
|
|
{
|
2022-11-14 12:27:10 -05:00
|
|
|
$set: { [FIELD]: getAllUserIds(project) },
|
2020-09-25 04:40:07 -04:00
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2022-11-14 12:27:10 -05:00
|
|
|
function getAllUserIds(project) {
|
2020-09-25 04:40:07 -04:00
|
|
|
return _.unionWith(
|
|
|
|
[project.owner_ref],
|
|
|
|
project.collaberator_refs,
|
|
|
|
project.readOnly_refs,
|
|
|
|
project.tokenAccessReadAndWrite_refs,
|
|
|
|
project.tokenAccessReadOnly_refs,
|
|
|
|
_objectIdEquals
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
function _objectIdEquals(firstVal, secondVal) {
|
|
|
|
// For use as a comparator for unionWith
|
|
|
|
return firstVal.toString() === secondVal.toString()
|
|
|
|
}
|