UNPKG

sfdx-hardis

Version:

Swiss-army-knife Toolbox for Salesforce. Allows you to define a complete CD/CD Pipeline. Orchestrate base commands and assist users with interactive wizards

115 lines (105 loc) 6.52 kB
/* jscpd:ignore-start */ import { SfCommand, Flags, requiredOrgFlagWithDeprecations } from '@salesforce/sf-plugins-core'; import { Messages } from '@salesforce/core'; import c from 'chalk'; import { isCI, uxLog } from '../../../../common/utils/index.js'; import { exportData, findDataWorkspaceByName, selectDataWorkspace } from '../../../../common/utils/dataUtils.js'; import { promptOrgUsernameDefault } from '../../../../common/utils/orgUtils.js'; Messages.importMessagesDirectoryFromMetaUrl(import.meta.url); const messages = Messages.loadMessages('sfdx-hardis', 'org'); export default class DataExport extends SfCommand { static title = 'Export data'; static description = ` ## Command Behavior **Exports data from a Salesforce org using an SFDMU (Salesforce Data Migration Utility) project.** This command facilitates the extraction of data from your Salesforce environments based on configurations defined in an SFDMU workspace. It's a powerful tool for various data-related tasks, including: - **Data Backup:** Creating snapshots of your Salesforce data. - **Data Migration:** Extracting data for transfer to another Salesforce org or external system. - **Reporting and Analysis:** Exporting specific datasets for detailed analysis outside of Salesforce. - **Data Seeding:** Preparing data for import into other environments. Key functionalities: - **SFDMU Workspace Integration:** Leverages an existing SFDMU workspace (defined by an \`export.json\` file) to determine which objects and records to export, along with any filtering or transformation rules. - **Interactive Workspace Selection:** If the SFDMU workspace path is not provided via the \`--path\` flag, it interactively prompts the user to select one. - **Org Selection:** Ensures that a target Salesforce org is selected (either via the \`--target-org\` flag or through an interactive prompt) to specify the source of the data export. See this article for a practical example: [![How to detect bad words in Salesforce records using SFDX Data Loader and sfdx-hardis](https://github.com/hardisgroupcom/sfdx-hardis/raw/main/docs/assets/images/article-badwords.jpg)](https://nicolas.vuillamy.fr/how-to-detect-bad-words-in-salesforce-records-using-sfdx-data-loader-and-sfdx-hardis-171db40a9bac) <details markdown="1"> <summary>Technical explanations</summary> The command's technical implementation relies heavily on the SFDMU plugin: - **SFDMU Integration:** It acts as a wrapper around the \`sfdmu\` plugin, which performs the actual data export operations. The command provides an assisted interface for SFDMU execution. - **\`exportData\` Utility:** The core logic for executing the SFDMU export process is encapsulated within the \`exportData\` utility function, which takes the SFDMU workspace path and the source username as arguments. - **Interactive Prompts:** Uses \`selectDataWorkspace\` to allow the user to choose an SFDMU project and \`promptOrgUsernameDefault\` for selecting the source Salesforce org when not running in a CI environment. - **Environment Awareness:** Checks the \`isCI\` flag to determine whether to run in an interactive mode (prompting for user input) or a non-interactive mode (relying solely on command-line flags). - **Required Plugin:** It explicitly lists \`sfdmu\` as a required plugin, ensuring that the necessary dependency is in place before execution. </details> `; static examples = [ '$ sf hardis:org:data:export', '$ sf hardis:org:data:export --project-name MyDataProject --target-org my-org@example.com', '$ sf hardis:org:data:export --path ./scripts/data/MyDataProject --no-prompt --target-org my-org@example.com', ]; static flags = { "project-name": Flags.string({ char: 'n', description: 'Name of the sfdmu project to use (if not defined, you will be prompted to select one)', }), path: Flags.string({ char: 'p', description: 'Path to the sfdmu workspace folder', }), "no-prompt": Flags.boolean({ char: 'r', description: 'Do not prompt for Org, use default org', default: false, }), debug: Flags.boolean({ char: 'd', default: false, description: messages.getMessage('debugMode'), }), websocket: Flags.string({ description: messages.getMessage('websocket'), }), skipauth: Flags.boolean({ description: 'Skip authentication check when a default username is required', }), 'target-org': requiredOrgFlagWithDeprecations, }; // Set this to true if your command requires a project workspace; 'requiresProject' is false by default static requiresProject = false; // List required plugins, their presence will be tested before running the command static requiresSfdxPlugins = ['sfdmu']; /* jscpd:ignore-end */ async run() { const { flags } = await this.parse(DataExport); let sfdmuPath = flags.path || null; const projectName = flags["project-name"] || null; const noPrompts = flags["no-prompt"] || false; //const debugMode = flags.debug || false; uxLog("action", this, c.cyan('This command will launch data EXPORT (download from org) using SFDX Data Loader (sfdmu)')); // Select org that will be used to export records let orgUsername = flags['target-org'].getUsername(); if (!isCI && noPrompts === false) { orgUsername = await promptOrgUsernameDefault(this, orgUsername || '', { devHub: false, setDefault: false }); } // Find by project name if provided if (projectName != null && sfdmuPath == null) { sfdmuPath = await findDataWorkspaceByName(projectName); } // Identify sfdmu workspace if not defined if (sfdmuPath == null) { sfdmuPath = await selectDataWorkspace({ selectDataLabel: `Please select a data workspace to EXPORT from ${c.green(orgUsername)}`, }); } // Export data from org await exportData(sfdmuPath || '', this, { sourceUsername: orgUsername, }); // Output message const message = `Successfully exported data from sfdmu project ${c.green(sfdmuPath)} from org ${c.green(orgUsername)}`; uxLog("action", this, c.cyan(message)); return { outputString: message }; } } //# sourceMappingURL=export.js.map