datoit
Version:
An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MongoDB, MySQL, MariaDB, PostgreSQL, SQLite
51 lines (39 loc) • 1.29 kB
JavaScript
;
const fs = require('fs');
const strapi = require('../index');
const CHUNK_SIZE = 100;
/**
* Will dump configurations to a file or stdout
* @param {string} file filepath to use as output
*/
module.exports = async function({ file: filePath, pretty }) {
const output = filePath ? fs.createWriteStream(filePath) : process.stdout;
const app = await strapi().load();
const count = await app.query('core_store').count();
const exportData = [];
const pageCount = Math.ceil(count / CHUNK_SIZE);
for (let page = 0; page < pageCount; page++) {
const results = await app
.query('core_store')
.find({ _limit: CHUNK_SIZE, _start: page * CHUNK_SIZE, _sort: 'key' });
results
.filter(result => result.key.startsWith('plugin_'))
.forEach(result => {
exportData.push({
key: result.key,
value: result.value,
type: result.type,
environment: result.environment,
tag: result.tag,
});
});
}
output.write(JSON.stringify(exportData, null, pretty ? 2 : null));
output.write('\n');
output.end();
// log success only when writting to file
if (filePath) {
console.log(`Successfully exported ${exportData.length} configuration entries`);
}
process.exit(0);
};