2022-12-30 17:23:23 +03:00
|
|
|
const { sync: commandExists } = require("command-exists");
|
|
|
|
const { exec, execSync } = require("child_process");
|
2020-04-11 17:29:20 +03:00
|
|
|
|
|
|
|
const validateRsync = (callback = () => {}) => {
|
2022-12-30 17:23:23 +03:00
|
|
|
const rsyncCli = commandExists("rsync");
|
2022-12-31 12:00:32 +03:00
|
|
|
if (rsyncCli) {
|
2022-12-31 12:14:04 +03:00
|
|
|
console.log('⚠️ [CLI] Rsync exists');
|
2022-12-31 12:04:57 +03:00
|
|
|
const rsyncVersion = execSync("rsync --version", { stdio: 'inherit' });
|
2022-12-31 12:00:32 +03:00
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
|
2022-12-30 16:29:31 +03:00
|
|
|
console.log('⚠️ [CLI] Rsync doesn\'t exists. Start installation with "apt-get" \n');
|
2022-12-31 12:00:32 +03:00
|
|
|
|
2022-12-31 12:15:28 +03:00
|
|
|
exec("sudo apt-get update && sudo apt-get --no-install-recommends install rsync", (err, data, stderr) => {
|
2022-12-31 12:00:32 +03:00
|
|
|
if (err) {
|
|
|
|
console.log("⚠️ [CLI] Rsync installation failed. Aborting ... ", err.message);
|
|
|
|
process.abort();
|
|
|
|
} else {
|
|
|
|
console.log("✅ [CLI] Rsync installed. \n", data, stderr);
|
|
|
|
callback();
|
|
|
|
}
|
|
|
|
});
|
2020-04-11 17:29:20 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
const validateInputs = (inputs) => {
|
2020-04-11 17:54:21 +03:00
|
|
|
const inputKeys = Object.keys(inputs);
|
|
|
|
const validInputs = inputKeys.filter((inputKey) => {
|
|
|
|
const inputValue = inputs[inputKey];
|
|
|
|
|
|
|
|
if (!inputValue) {
|
|
|
|
console.error(`⚠️ [INPUTS] ${inputKey} is mandatory`);
|
2020-04-11 17:29:20 +03:00
|
|
|
}
|
|
|
|
|
2020-04-11 17:54:21 +03:00
|
|
|
return inputValue;
|
2020-04-11 17:29:20 +03:00
|
|
|
});
|
|
|
|
|
2020-04-11 17:54:21 +03:00
|
|
|
if (validInputs.length !== inputKeys.length) {
|
2022-12-30 17:23:23 +03:00
|
|
|
console.error("⚠️ [INPUTS] Inputs not valid, aborting ...");
|
2020-04-11 17:29:20 +03:00
|
|
|
process.abort();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
validateRsync,
|
2022-12-30 17:23:23 +03:00
|
|
|
validateInputs,
|
2020-09-19 00:26:31 +03:00
|
|
|
};
|