firmament-vita
Version:
Firmament module for automating VITA tasks
70 lines • 3.31 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
var inversify_1 = require("inversify");
var cerialize_1 = require("cerialize");
var fileExists = require('file-exists');
var path = require('path');
var DecryptAndUnTarOptionsImpl = (function () {
function DecryptAndUnTarOptionsImpl() {
this.encryptedFiles = [];
this.foldersOfEncryptedFiles = [];
this.targetFolder = '';
this.password = '';
}
DecryptAndUnTarOptionsImpl.prototype.fromArgv = function (argv) {
this.encryptedFiles = argv.input || '';
this.password = argv.password || '';
};
DecryptAndUnTarOptionsImpl.prototype.validate = function () {
if (!this.encryptedFiles || !this.encryptedFiles.length) {
throw new Error('The DecryptAndUnTarOptions.encryptedFiles array must contain at least one encrypted file');
}
this.encryptedFiles.forEach(function (encryptedFile) {
if (!fileExists(encryptedFile)) {
throw new Error("Encrypted file '" + encryptedFile + "' does not exist");
}
});
if (!this.password) {
throw new Error('The DecryptAndUnTarOptions.password cannot be empty');
}
if (!this.targetFolder) {
var randomInt = Math.floor((Math.random() * 9000) + 1000);
this.targetFolder = path.resolve('/tmp', "vitaWorkDir-" + randomInt);
}
};
__decorate([
cerialize_1.autoserialize,
__metadata("design:type", Array)
], DecryptAndUnTarOptionsImpl.prototype, "encryptedFiles", void 0);
__decorate([
cerialize_1.autoserialize,
__metadata("design:type", Array)
], DecryptAndUnTarOptionsImpl.prototype, "foldersOfEncryptedFiles", void 0);
__decorate([
cerialize_1.autoserialize,
__metadata("design:type", RegExp)
], DecryptAndUnTarOptionsImpl.prototype, "encryptedFilePattern", void 0);
__decorate([
cerialize_1.autoserialize,
__metadata("design:type", String)
], DecryptAndUnTarOptionsImpl.prototype, "targetFolder", void 0);
__decorate([
cerialize_1.autoserialize,
__metadata("design:type", String)
], DecryptAndUnTarOptionsImpl.prototype, "password", void 0);
DecryptAndUnTarOptionsImpl = __decorate([
inversify_1.injectable()
], DecryptAndUnTarOptionsImpl);
return DecryptAndUnTarOptionsImpl;
}());
exports.DecryptAndUnTarOptionsImpl = DecryptAndUnTarOptionsImpl;
//# sourceMappingURL=decrypt-and-untar-options-impl.js.map