@ethersphere/swarm-cli
Version:
CLI tool for Bee
68 lines (67 loc) • 2.81 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 });
exports.ReuploadAll = void 0;
const furious_commander_1 = require("furious-commander");
const option_1 = require("../../utils/option");
const pinning_command_1 = require("./pinning-command");
class ReuploadAll extends pinning_command_1.PinningCommand {
constructor() {
super(...arguments);
Object.defineProperty(this, "name", {
enumerable: true,
configurable: true,
writable: true,
value: 'reupload-all'
});
Object.defineProperty(this, "description", {
enumerable: true,
configurable: true,
writable: true,
value: 'Reupload all locally pinned content'
});
Object.defineProperty(this, "stamp", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
}
async run() {
super.init();
const chunks = await this.bee.getAllPins();
const total = chunks.length;
let successful = 0;
this.console.log(`Found ${total} root chunks to reupload...`);
for (const chunk of chunks) {
try {
await this.reuploadOne(chunk.toHex());
successful++;
}
catch (error) {
this.console.error('Failed to reupload ' + chunk);
this.console.printBeeError(error);
}
}
this.console.log(`Reuploaded ${successful} out of ${total} pinned root chunks`);
this.console.quiet(successful + '/' + total);
}
async reuploadOne(chunk) {
this.console.log('Reuploading ' + chunk + '...');
await this.bee.reuploadPinnedData(this.stamp, chunk);
this.console.log('Reuploaded successfully.');
}
}
__decorate([
(0, furious_commander_1.Option)(option_1.stampProperties),
__metadata("design:type", String)
], ReuploadAll.prototype, "stamp", void 0);
exports.ReuploadAll = ReuploadAll;