UNPKG

node-7z-threetwo

Version:

A CommonJs and ESM frontend to 7-Zip, downloads binaries in for Linux, Windows, and Mac OSX, with methods to create SFX self extracting 7z archives targeting different platforms.

50 lines (42 loc) 1.6 kB
'use strict'; import when from 'when'; import ReplaceNativeSeparator from '../../util/esm/replaceNativeSeparator.mjs'; import Run from '../../util/esm/run.mjs'; /** * Update content to an archive. * @promise Update * @param archive {string} Path to the archive. * @param files {string} Files to add. * @param options {Object} An object of acceptable 7-zip switch options. * @resolve {array} Arguments passed to the child-process. * @progress {array} Listed files and directories. * @reject {Error} The error as issued by 7-Zip. */ export default function (archive, files, options) { return when.promise(function (resolve, reject, progress) { // Create a string that can be parsed by `run`. let command = '7za u "' + archive + '" "' + files + '"'; // Start the command Run(command, options) // When a stdout is emitted, parse each line and search for a pattern. When // the pattern is found, extract the file (or directory) name from it and // pass it to an array. Finally returns this array. .progress(function (data) { let entries = []; data.split('\n').forEach(function (line) { if (line.substr(0, 1) === 'U') { entries.push(ReplaceNativeSeparator(line.substr(2, line.length))); } }); return progress(entries); }) // When all is done resolve the Promise. .then(function () { return resolve(); }) // Catch the error and pass it to the reject function of the Promise. .catch(function (err) { return reject(err); }); }); };