2021-01-18 08:53:15 +00:00
|
|
|
'use strict';
|
2018-03-09 12:45:24 +00:00
|
|
|
/*
|
2019-02-08 22:20:57 +00:00
|
|
|
* This is a debug tool. It checks all revisions for data corruption
|
|
|
|
*/
|
2018-03-09 12:45:24 +00:00
|
|
|
|
2021-01-18 08:53:15 +00:00
|
|
|
// As of v14, Node.js does not exit when there is an unhandled Promise rejection. Convert an
|
|
|
|
// unhandled rejection into an uncaught exception, which does cause Node.js to exit.
|
|
|
|
process.on('unhandledRejection', (err) => { throw err; });
|
|
|
|
|
2021-01-09 07:44:59 +00:00
|
|
|
const npm = require('ep_etherpad-lite/node_modules/npm');
|
|
|
|
const util = require('util');
|
|
|
|
|
2021-01-18 08:53:15 +00:00
|
|
|
if (process.argv.length !== 2) throw new Error('Use: node bin/checkAllPads.js');
|
2018-03-09 12:45:24 +00:00
|
|
|
|
2021-01-09 07:44:59 +00:00
|
|
|
(async () => {
|
|
|
|
await util.promisify(npm.load)({});
|
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// initialize the database
|
|
|
|
require('ep_etherpad-lite/node/utils/Settings');
|
|
|
|
const db = require('ep_etherpad-lite/node/db/DB');
|
|
|
|
await db.init();
|
2019-01-26 23:52:02 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// load modules
|
|
|
|
const Changeset = require('ep_etherpad-lite/static/js/Changeset');
|
|
|
|
const padManager = require('ep_etherpad-lite/node/db/PadManager');
|
2021-01-18 08:53:15 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
let revTestedCount = 0;
|
2019-01-26 23:52:02 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// get all pads
|
|
|
|
const res = await padManager.listAllPads();
|
|
|
|
for (const padId of res.padIDs) {
|
|
|
|
const pad = await padManager.getPad(padId);
|
2019-01-26 23:52:02 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// check if the pad has a pool
|
|
|
|
if (pad.pool == null) {
|
|
|
|
console.error(`[${pad.id}] Missing attribute pool`);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// create an array with key kevisions
|
|
|
|
// key revisions always save the full pad atext
|
|
|
|
const head = pad.getHeadRevisionNumber();
|
|
|
|
const keyRevisions = [];
|
|
|
|
for (let rev = 0; rev < head; rev += 100) {
|
|
|
|
keyRevisions.push(rev);
|
|
|
|
}
|
2019-01-26 23:52:02 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// run through all key revisions
|
|
|
|
for (const keyRev of keyRevisions) {
|
|
|
|
// create an array of revisions we need till the next keyRevision or the End
|
|
|
|
const revisionsNeeded = [];
|
|
|
|
for (let rev = keyRev; rev <= keyRev + 100 && rev <= head; rev++) {
|
|
|
|
revisionsNeeded.push(rev);
|
|
|
|
}
|
2019-02-08 22:20:57 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// this array will hold all revision changesets
|
|
|
|
const revisions = [];
|
2019-01-26 23:52:02 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// run through all needed revisions and get them from the database
|
|
|
|
for (const revNum of revisionsNeeded) {
|
|
|
|
const revision = await db.get(`pad:${pad.id}:revs:${revNum}`);
|
|
|
|
revisions[revNum] = revision;
|
|
|
|
}
|
2019-02-08 22:20:57 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// check if the revision exists
|
|
|
|
if (revisions[keyRev] == null) {
|
|
|
|
console.error(`[${pad.id}] Missing revision ${keyRev}`);
|
|
|
|
continue;
|
|
|
|
}
|
2019-02-08 22:20:57 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
// check if there is a atext in the keyRevisions
|
|
|
|
let {meta: {atext} = {}} = revisions[keyRev];
|
|
|
|
if (atext == null) {
|
|
|
|
console.error(`[${pad.id}] Missing atext in revision ${keyRev}`);
|
|
|
|
continue;
|
|
|
|
}
|
2019-02-08 22:20:57 +00:00
|
|
|
|
2021-01-17 08:16:01 +00:00
|
|
|
const apool = pad.pool;
|
|
|
|
for (let rev = keyRev + 1; rev <= keyRev + 100 && rev <= head; rev++) {
|
|
|
|
try {
|
|
|
|
const cs = revisions[rev].changeset;
|
|
|
|
atext = Changeset.applyToAText(cs, atext, apool);
|
|
|
|
revTestedCount++;
|
|
|
|
} catch (e) {
|
|
|
|
console.error(`[${pad.id}] Bad changeset at revision ${rev} - ${e.message}`);
|
2019-01-26 23:52:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-09 12:45:24 +00:00
|
|
|
}
|
2021-01-17 08:16:01 +00:00
|
|
|
if (revTestedCount === 0) {
|
|
|
|
throw new Error('No revisions tested');
|
|
|
|
}
|
|
|
|
console.log(`Finished: Tested ${revTestedCount} revisions`);
|
2021-01-09 07:44:59 +00:00
|
|
|
})();
|