summaryrefslogtreecommitdiff
path: root/tools/migration/node.2018-03-13.othello.js
blob: 4598f8d832653d7875b3681f483e73bb88bcbbb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// for Node.js interpret

const { default: Othello } = require('../../built/api/models/othello-game')
const { default: zip } = require('@prezzemolo/zip')

const migrate = async (doc) => {
	const x = {};

	doc.logs.forEach(log => {
		log.color = log.color == 'black';
	});

	const result = await Othello.update(doc._id, {
		$set: {
			logs: doc.logs
		}
	});

	return result.ok === 1;
}

async function main() {

	const count = await Othello.count({});

	const dop = Number.parseInt(process.argv[2]) || 5
	const idop = ((count - (count % dop)) / dop) + 1

	return zip(
		1,
		async (time) => {
			console.log(`${time} / ${idop}`)
			const doc = await Othello.find({}, {
				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)