@ethersphere/swarm-cli
Version:
CLI tool for Bee
125 lines (124 loc) • 4.75 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);
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.Patch = void 0;
const furious_commander_1 = require("furious-commander");
const grantee_command_1 = require("./grantee-command");
const option_1 = require("../../utils/option");
const text_1 = require("../../utils/text");
const fs_1 = __importDefault(require("fs"));
class Patch extends grantee_command_1.GranteeCommand {
constructor() {
super(...arguments);
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: 'patch'
});
Object.defineProperty(this, "description", {
enumerable: true,
configurable: true,
writable: true,
value: 'Patch grantee list'
});
Object.defineProperty(this, "actReqHeaders", {
enumerable: true,
configurable: true,
writable: true,
value: {}
});
Object.defineProperty(this, "path", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "stdin", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "stamp", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "eref", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "history", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
}
async run() {
await super.init();
this.actReqHeaders = {
'Swarm-Act': 'true',
'Swarm-Act-Timestamp': Date.now().toString(),
};
const patchContent = fs_1.default.readFileSync(this.path, 'utf8');
const patch = JSON.parse(patchContent);
const response = await this.bee.patchGrantees(this.stamp, this.eref, this.history, patch, this.actReqHeaders);
this.console.log((0, text_1.createKeyValue)('Grantee reference', response.ref.toHex()));
this.console.log((0, text_1.createKeyValue)('Grantee history reference', response.historyref.toHex()));
}
}
__decorate([
(0, furious_commander_1.Argument)({
key: 'path',
description: 'Path to the JSON file with grantee patch (add, revoke)',
required: true,
autocompletePath: true,
conflicts: 'stdin',
}),
__metadata("design:type", String)
], Patch.prototype, "path", void 0);
__decorate([
(0, furious_commander_1.Option)({ key: 'stdin', type: 'boolean', description: 'Take data from standard input', conflicts: 'path' }),
__metadata("design:type", Boolean)
], Patch.prototype, "stdin", void 0);
__decorate([
(0, furious_commander_1.Option)(option_1.stampProperties),
__metadata("design:type", String)
], Patch.prototype, "stamp", void 0);
__decorate([
(0, furious_commander_1.Option)({
key: 'reference',
type: 'string',
description: 'Encrypted grantee list reference with 128 characters length',
length: 128,
required: true,
}),
__metadata("design:type", String)
], Patch.prototype, "eref", void 0);
__decorate([
(0, furious_commander_1.Option)({
key: 'history',
type: 'string',
description: 'Swarm address reference to the ACT history entry',
length: 64,
required: true,
}),
__metadata("design:type", String)
], Patch.prototype, "history", void 0);
exports.Patch = Patch;