mirror of
https://github.com/strapi/strapi.git
synced 2025-07-03 07:05:06 +00:00
55 lines
1.6 KiB
JavaScript
55 lines
1.6 KiB
JavaScript
const { resolve } = require('path');
|
|
const { CUSTOM_TRANSFER_TOKEN_ACCESS_KEY } = require('../constants');
|
|
const {
|
|
file: {
|
|
providers: { createLocalFileSourceProvider },
|
|
},
|
|
strapi: {
|
|
providers: { createRemoteStrapiDestinationProvider },
|
|
},
|
|
engine: { createTransferEngine },
|
|
} = require('@strapi/data-transfer');
|
|
|
|
/**
|
|
* Reset the DB and import data from a DTS dataset
|
|
* This is meant to be used directly from a CLI test
|
|
*/
|
|
const resetDatabaseAndImportDataFromPath = async (filePath) => {
|
|
const source = createSourceProvider(filePath);
|
|
const destination = createDestinationProvider();
|
|
|
|
const engine = createTransferEngine(source, destination, {
|
|
versionStrategy: 'ignore',
|
|
schemaStrategy: 'ignore',
|
|
});
|
|
|
|
engine.diagnostics.onDiagnostic(console.log);
|
|
|
|
try {
|
|
await engine.transfer();
|
|
} catch (e) {
|
|
console.error('Import process failed.');
|
|
console.error(e);
|
|
process.exit(1);
|
|
}
|
|
};
|
|
|
|
const createSourceProvider = (filePath) =>
|
|
createLocalFileSourceProvider({
|
|
file: { path: resolve(filePath) },
|
|
encryption: { enabled: false },
|
|
compression: { enabled: true },
|
|
});
|
|
|
|
const createDestinationProvider = () => {
|
|
// TODO: When possible, use the local strapi destination provider instead
|
|
// For this we need to wait to have access to a Strapi instance
|
|
return createRemoteStrapiDestinationProvider({
|
|
url: new URL(`http://127.0.0.1:${process.env.PORT ?? 1337}/admin`),
|
|
auth: { type: 'token', token: CUSTOM_TRANSFER_TOKEN_ACCESS_KEY },
|
|
strategy: 'restore',
|
|
});
|
|
};
|
|
|
|
module.exports = { resetDatabaseAndImportDataFromPath };
|