Ghost/ghost/data-generator/lib/importers/RecommendationSubscribeEventsImporter.js
Simon Backx d2cb23c3fa
Wired up Docker setup script and increased data generation performance (#19420)
ref PROD-233

- Stored whether Docker is used in the config files
- When running `yarn setup`, any existing Docker container will be
reset. Run with `-y` to skip the confirmation step.
- `yarn setup` will always init the database and generate fake data
- Increased amount of default generated data to 100,000 members + 500
posts.
- Made lots of performance improvements in the data generator so we can
generate the default data in ±170s
2024-01-05 13:42:30 +00:00

33 lines
1.2 KiB
JavaScript

const TableImporter = require('./TableImporter');
const {faker} = require('@faker-js/faker');
const {luck} = require('../utils/random');
class RecommendationSubscribeEventsImporter extends TableImporter {
static table = 'recommendation_subscribe_events';
static dependencies = ['recommendations', 'members'];
constructor(knex, transaction) {
super(RecommendationSubscribeEventsImporter.table, knex, transaction);
}
async import(quantity) {
const recommendations = await this.transaction.select('id', 'created_at').from('recommendations').where('one_click_subscribe', true);
this.members = await this.transaction.select('id').from('members').limit(500);
await this.importForEach(recommendations, quantity ? quantity / recommendations.length : () => faker.datatype.number({min: 0, max: 50}));
}
generate() {
// Not unique
const member = luck(1) ? null : faker.helpers.arrayElement(this.members);
return {
id: this.fastFakeObjectId(),
recommendation_id: this.model.id,
member_id: member?.id ?? null,
created_at: faker.date.past()
};
}
}
module.exports = RecommendationSubscribeEventsImporter;