mizzkey/tools/migration/nighthike/2.js

40 lines
868 B
JavaScript
Raw Normal View History

2018-03-27 12:33:51 +09:00
// for Node.js interpret
2018-03-29 14:48:47 +09:00
const { default: App } = require('../../../built/api/models/app');
2018-03-27 12:33:51 +09:00
const { default: zip } = require('@prezzemolo/zip')
2018-03-26 20:23:55 +09:00
2018-03-29 14:48:47 +09:00
const migrate = async (app) => {
const result = await User.update(app._id, {
2018-03-26 20:23:55 +09:00
$set: {
2018-03-29 14:48:47 +09:00
'name_id': app.name_id.replace(/\-/g, '_'),
'name_id_lower': app.name_id_lower.replace(/\-/g, '_')
2018-03-26 20:23:55 +09:00
}
2018-03-27 12:33:51 +09:00
});
return result.ok === 1;
}
async function main() {
2018-03-29 14:48:47 +09:00
const count = await App.count({});
2018-03-27 12:33:51 +09:00
const dop = Number.parseInt(process.argv[2]) || 5
const idop = ((count - (count % dop)) / dop) + 1
return zip(
1,
async (time) => {
console.log(`${time} / ${idop}`)
2018-03-29 14:48:47 +09:00
const doc = await App.find({}, {
2018-03-27 12:33:51 +09:00
limit: dop, skip: time * dop
})
return Promise.all(doc.map(migrate))
},
idop
).then(a => {
const rv = []
a.forEach(e => rv.push(...e))
return rv
})
}
main().then(console.dir).catch(console.error)