UNPKG

torrent-to-pixeldrain

Version:

Allows you to download a torrent and upload it to pixeldrain.com

50 lines 2.12 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.TorrentToPixeldrain = void 0; const pixeldrainservice_1 = require("./services/pixeldrainservice"); class TorrentToPixeldrain { constructor(torrent, pixeldrainAPIKey, writer) { this.writer = writer; this.torrent = torrent.build(new pixeldrainservice_1.PixeldrainService(pixeldrainAPIKey, writer)); } downloadTorrent() { return new Promise((resolve, reject) => { this.torrent.download().then(resolve).catch(reject); }); } uploadDownloadedFiles(file) { return new Promise((resolve, reject) => { file.upload().then(resolve).catch(reject); }); } /** * Start Download and Upload Processes */ start() { return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { this.downloadTorrent() .then(file => { this.uploadDownloadedFiles(file) .then((id) => __awaiter(this, void 0, void 0, function* () { console.log(id); if (this.writer) { yield this.writer.write(); } resolve(); })); }) .catch(reject); })); } } exports.TorrentToPixeldrain = TorrentToPixeldrain; //# sourceMappingURL=index.js.map