@ethersphere/swarm-cli
Version:
CLI tool for Bee
135 lines (134 loc) • 5.79 kB
JavaScript
"use strict";
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.Sync = void 0;
const bee_js_1 = require("@ethersphere/bee-js");
const cafe_utility_1 = require("cafe-utility");
const chalk_1 = __importDefault(require("chalk"));
const fs_1 = require("fs");
const furious_commander_1 = require("furious-commander");
const path_1 = require("path");
const stamp_1 = require("../../service/stamp");
const utils_1 = require("../../utils");
const bzz_address_1 = require("../../utils/bzz-address");
const option_1 = require("../../utils/option");
const root_command_1 = require("../root-command");
class Sync extends root_command_1.RootCommand {
constructor() {
super(...arguments);
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: 'sync'
});
Object.defineProperty(this, "description", {
enumerable: true,
configurable: true,
writable: true,
value: 'Sync a local folder to an existing manifest'
});
Object.defineProperty(this, "bzzUrl", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "folder", {
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, "remove", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
}
async run() {
super.init();
if (!this.stamp) {
this.stamp = await (0, stamp_1.pickStamp)(this.bee, this.console);
}
const address = new bzz_address_1.BzzAddress(this.bzzUrl);
const node = await bee_js_1.MantarayNode.unmarshal(this.bee, address.hash);
await node.loadRecursively(this.bee);
const map = new Map();
const nodes = node.collect();
for (const node of nodes) {
map.set(node.fullPathString, node);
}
const files = await (0, utils_1.readdirDeepAsync)(this.folder, this.folder);
for (const file of files) {
const existing = map.get(file);
if (existing) {
const localData = (0, fs_1.readFileSync)((0, path_1.join)(this.folder, file));
const rootChunk = await bee_js_1.MerkleTree.root(localData);
if (cafe_utility_1.Binary.equals(rootChunk.hash(), existing.targetAddress)) {
this.console.log(chalk_1.default.gray(file) + ' ' + chalk_1.default.blue('UNCHANGED'));
}
else {
const { reference } = await this.bee.uploadData(this.stamp, localData);
node.addFork(file, reference);
this.console.log(chalk_1.default.gray(file) + ' ' + chalk_1.default.yellow('CHANGED'));
}
}
else {
const { reference } = await this.bee.uploadData(this.stamp, (0, fs_1.readFileSync)((0, path_1.join)(this.folder, file)));
node.addFork(file, reference);
this.console.log(chalk_1.default.gray(file) + ' ' + chalk_1.default.green('NEW'));
}
}
if (this.remove) {
for (const n of nodes) {
if (!files.includes(node.fullPathString)) {
node.removeFork(n.fullPathString);
this.console.log(chalk_1.default.gray(n.fullPathString) + ' ' + chalk_1.default.red('REMOVED'));
}
}
}
const root = await node.saveRecursively(this.bee, this.stamp);
this.console.log(root.reference.toHex());
this.result = cafe_utility_1.Optional.of(root.reference);
}
}
__decorate([
(0, furious_commander_1.Argument)({ key: 'address', description: 'Root manifest reference', required: true }),
__metadata("design:type", String)
], Sync.prototype, "bzzUrl", void 0);
__decorate([
(0, furious_commander_1.Argument)({ key: 'folder', description: 'Local folder to be synced', required: true }),
__metadata("design:type", String)
], Sync.prototype, "folder", void 0);
__decorate([
(0, furious_commander_1.Option)(option_1.stampProperties),
__metadata("design:type", String)
], Sync.prototype, "stamp", void 0);
__decorate([
(0, furious_commander_1.Option)({
key: 'remove',
type: 'boolean',
description: 'Remove paths that do not exist locally',
}),
__metadata("design:type", Boolean)
], Sync.prototype, "remove", void 0);
exports.Sync = Sync;