|
| 1 | +import chalk from 'chalk'; |
| 2 | +import commander from 'commander'; |
| 3 | +import * as path from 'path'; |
| 4 | +import { |
| 5 | + loadConnection, loadEntityFactories, loadSeeds, runSeed, setConnection |
| 6 | +} from 'typeorm-seeding'; |
| 7 | + |
| 8 | +// Cli helper |
| 9 | +commander |
| 10 | + .version('1.0.0') |
| 11 | + .description('Run database seeds of your project') |
| 12 | + .option('-L, --logging', 'enable sql query logging') |
| 13 | + .option('--factories <path>', 'add filepath for your factories') |
| 14 | + .option('--seeds <path>', 'add filepath for your seeds') |
| 15 | + .option('--run <seeds>', 'run specific seeds (file names without extension)', (val) => val.split(',')) |
| 16 | + .option('--config <file>', 'path to your ormconfig.json file (must be a json)') |
| 17 | + .parse(process.argv); |
| 18 | + |
| 19 | +// Get cli parameter for a different factory path |
| 20 | +const factoryPath = (commander.factories) |
| 21 | + ? commander.factories |
| 22 | + : 'src/database/factories'; |
| 23 | + |
| 24 | +// Get cli parameter for a different seeds path |
| 25 | +const seedsPath = (commander.seeds) |
| 26 | + ? commander.seeds |
| 27 | + : 'src/database/seeds/'; |
| 28 | + |
| 29 | +// Get a list of seeds |
| 30 | +const listOfSeeds = (commander.run) |
| 31 | + ? commander.run.map(l => l.trim()).filter(l => l.length > 0) |
| 32 | + : []; |
| 33 | + |
| 34 | +// Search for seeds and factories |
| 35 | +const run = async () => { |
| 36 | + const log = console.log; |
| 37 | + |
| 38 | + let factoryFiles; |
| 39 | + let seedFiles; |
| 40 | + try { |
| 41 | + factoryFiles = await loadEntityFactories(factoryPath); |
| 42 | + seedFiles = await loadSeeds(seedsPath); |
| 43 | + } catch (error) { |
| 44 | + return handleError(error); |
| 45 | + } |
| 46 | + |
| 47 | + // Filter seeds |
| 48 | + if (listOfSeeds.length > 0) { |
| 49 | + seedFiles = seedFiles.filter(sf => listOfSeeds.indexOf(path.basename(sf).replace('.ts', '')) >= 0); |
| 50 | + } |
| 51 | + |
| 52 | + // Status logging to print out the amount of factories and seeds. |
| 53 | + log(chalk.bold('seeds')); |
| 54 | + log('🔎 ', chalk.gray.underline(`found:`), |
| 55 | + chalk.blue.bold(`${factoryFiles.length} factories`, chalk.gray('&'), chalk.blue.bold(`${seedFiles.length} seeds`))); |
| 56 | + |
| 57 | + // Get database connection and pass it to the seeder |
| 58 | + try { |
| 59 | + const connection = await loadConnection(); |
| 60 | + setConnection(connection); |
| 61 | + } catch (error) { |
| 62 | + return handleError(error); |
| 63 | + } |
| 64 | + |
| 65 | + // Show seeds in the console |
| 66 | + for (const seedFile of seedFiles) { |
| 67 | + try { |
| 68 | + let className = seedFile.split('/')[seedFile.split('/').length - 1]; |
| 69 | + className = className.replace('.ts', '').replace('.js', ''); |
| 70 | + className = className.split('-')[className.split('-').length - 1]; |
| 71 | + log('\n' + chalk.gray.underline(`executing seed: `), chalk.green.bold(`${className}`)); |
| 72 | + const seedFileObject: any = require(seedFile); |
| 73 | + await runSeed(seedFileObject[className]); |
| 74 | + } catch (error) { |
| 75 | + console.error('Could not run seed ', error); |
| 76 | + process.exit(1); |
| 77 | + } |
| 78 | + } |
| 79 | + |
| 80 | + log('\n👍 ', chalk.gray.underline(`finished seeding`)); |
| 81 | + process.exit(0); |
| 82 | +}; |
| 83 | + |
| 84 | +const handleError = (error) => { |
| 85 | + console.error(error); |
| 86 | + process.exit(1); |
| 87 | +}; |
| 88 | + |
| 89 | +run(); |
0 commit comments