@adonisjs/lucid
Version:
SQL ORM built on top of Active Record pattern
63 lines (62 loc) • 2.09 kB
JavaScript
;
/*
* @adonisjs/lucid
*
* (c) Harminder Virk <virk@adonisjs.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.SeedersSource = void 0;
const utils_1 = require("../utils");
/**
* Seeders source exposes the API to read the seeders from disk for a given connection.
*/
class SeedersSource {
constructor(config, app) {
Object.defineProperty(this, "config", {
enumerable: true,
configurable: true,
writable: true,
value: config
});
Object.defineProperty(this, "app", {
enumerable: true,
configurable: true,
writable: true,
value: app
});
}
/**
* Returns an array of files inside a given directory. Relative
* paths are resolved from the project root
*/
async getDirectoryFiles(directoryPath) {
const { files } = await (0, utils_1.sourceFiles)(this.app.appRoot, directoryPath);
return files;
}
/**
* Returns an array of seeders paths for a given connection. If paths
* are not defined, then `database/seeders` fallback is used
*/
getSeedersPaths() {
const directories = (this.config.seeders || {}).paths;
const defaultDirectory = this.app.directoriesMap.get('seeds') || 'database/seeders';
return directories && directories.length ? directories : [`./${defaultDirectory}`];
}
/**
* Returns an array of files for the defined seed directories
*/
async getSeeders() {
const seedersPaths = this.getSeedersPaths();
const directories = await Promise.all(seedersPaths.map((directoryPath) => {
return this.getDirectoryFiles(directoryPath);
}));
return directories.reduce((result, directory) => {
result = result.concat(directory);
return result;
}, []);
}
}
exports.SeedersSource = SeedersSource;