chore: Add revisions.create backfill script (#2330)
* chore: Add revisions.create backfill script * fix: Correct timestamp on revisions.create events
This commit is contained in:
62
server/scripts/20210716000000-backfill-revisions.js
Normal file
62
server/scripts/20210716000000-backfill-revisions.js
Normal file
@ -0,0 +1,62 @@
|
||||
// @flow
|
||||
import "./bootstrap";
|
||||
import debug from "debug";
|
||||
import { Revision, Document, Event } from "../models";
|
||||
|
||||
const log = debug("server");
|
||||
let page = 0;
|
||||
let limit = 100;
|
||||
|
||||
export default async function main(exit = false) {
|
||||
const work = async (page: number) => {
|
||||
log(`Backfill revision events… page ${page}`);
|
||||
|
||||
const revisions = await Revision.findAll({
|
||||
limit,
|
||||
offset: page * limit,
|
||||
order: [["createdAt", "DESC"]],
|
||||
include: [
|
||||
{
|
||||
model: Document,
|
||||
as: "document",
|
||||
required: true,
|
||||
paranoid: false,
|
||||
},
|
||||
],
|
||||
});
|
||||
|
||||
for (const revision of revisions) {
|
||||
try {
|
||||
await Event.findOrCreate({
|
||||
where: {
|
||||
name: "revisions.create",
|
||||
modelId: revision.id,
|
||||
documentId: revision.documentId,
|
||||
actorId: revision.userId,
|
||||
teamId: revision.document.teamId,
|
||||
},
|
||||
defaults: {
|
||||
createdAt: revision.createdAt,
|
||||
},
|
||||
});
|
||||
} catch (err) {
|
||||
console.error(`Failed at ${revision.id}:`, err);
|
||||
continue;
|
||||
}
|
||||
}
|
||||
|
||||
return revisions.length === limit ? work(page + 1) : undefined;
|
||||
};
|
||||
|
||||
await work(page);
|
||||
|
||||
if (exit) {
|
||||
log("Backfill complete");
|
||||
process.exit(0);
|
||||
}
|
||||
}
|
||||
|
||||
// In the test suite we import the script rather than run via node CLI
|
||||
if (process.env.NODE_ENV !== "test") {
|
||||
main(true);
|
||||
}
|
Reference in New Issue
Block a user