import WebTorrent from 'webtorrent' import { SubtitleParser, SubtitleStream } from 'matroska-subtitles' import { ipcRenderer } from 'electron' import { pipeline } from 'streamx' import HTTPTracker from 'bittorrent-tracker/lib/client/http-tracker.js' import { hex2bin, bin2hex, arr2text, hex2arr } from 'uint8-util' class TorrentClient extends WebTorrent { constructor (settings) { super({ dht: !settings.torrentDHT, maxConns: settings.maxConns, downloadLimit: settings.torrentSpeed * 1048576 || 0, uploadLimit: settings.torrentSpeed * 1572864 || 0, // :trolled: torrentPort: settings.torrentPort || 0, dhtPort: settings.dhtPort || 0 }) this.settings = settings this.current = null this.parsed = false this.boundParse = this.parseSubtitles.bind(this) setInterval(() => { this.dispatch('stats', { numPeers: (this.torrents.length && this.torrents[0].numPeers) || 0, uploadSpeed: (this.torrents.length && this.torrents[0].uploadSpeed) || 0, downloadSpeed: (this.torrents.length && this.torrents[0].downloadSpeed) || 0 }) }, 200) setInterval(() => { if (this.torrents[0]?.pieces) this.dispatch('progress', this.current?.progress) }, 2000) this.on('torrent', this.handleTorrent.bind(this)) this.server = this.createServer(undefined, 'node') this.server.listen(0) this.trackers = { cat: new HTTPTracker({}, atob('aHR0cDovL255YWEudHJhY2tlci53Zjo3Nzc3L2Fubm91bmNl')) } this.on('error', e => { this.dispatch('error', e) }) } handleTorrent (torrent) { const files = torrent.files.map(file => { return { infoHash: torrent.infoHash, name: file.name, type: file.type, size: file.size, path: file.path, url: 'http://localhost:' + this.server.address().port + file.streamURL } }) this.dispatch('files', files) this.dispatch('magnet', { magnet: torrent.magnetURI, hash: torrent.infoHash }) this.dispatch('torrent', Array.from(torrent.torrentFile)) } _scrape ({ id, infoHashes }) { const hashes = infoHashes.map(infoHash => hex2bin(infoHash)) const malformed = {} for (const hash of infoHashes) { malformed[bin2hex(arr2text(hex2arr(hash)))] = hash } this.trackers.cat._request(this.trackers.cat.scrapeUrl, { info_hash: hashes }, (err, data) => { if (err) { console.error(err) return this.dispatch('scrape', { id, result: [] }) } const { files } = data const result = [] for (const [key, data] of Object.entries(files || {})) { result.push({ hash: malformed[bin2hex(key)], ...data }) } this.dispatch('scrape', { id, result }) console.log(result, data) }) } async handleMessage ({ data }) { switch (data.type) { case 'current': { if (data.data) { const found = (await this.get(data.data.infoHash))?.files.find(file => file.path === data.data.path) if (this.current) { this.current.removeListener('done', this.boundParse) this.current.removeAllListeners('stream') } this.cancelParse() this.parsed = false this.current = found if (this.current?.name.endsWith('.mkv')) { // if (this.current.done) this.parseSubtitles() // this.current.once('done', this.boundParse) this.parseFonts(this.current) this.current.on('stream', (_, cb) => { if (!this.parsed) { const parser = new SubtitleStream(this.metadata) this.handleSubtitleParser(parser, true) cb(parser) } }) } // TODO: findSubtitleFiles(current) } break } case 'scrape': { this._scrape(data.data) break } case 'torrent': { const id = typeof data.data !== 'string' ? new Uint8Array(data.data) : data.data const existing = await this.get(id) if (existing) { if (existing.ready) return this.handleTorrent(existing) existing.once('ready', this.handleTorrent.bind(this)) } if (this.torrents.length) await this.remove(this.torrents[0]) this.add(id, { private: this.settings.torrentPeX, path: this.settings.torrentPath, destroyStoreOnDestroy: !this.settings.torrentPersist, announce: [ 'wss://tracker.openwebtorrent.com', 'wss://tracker.webtorrent.dev', 'wss://tracker.files.fm:7073/announce', 'wss://tracker.btorrent.xyz/' ] }) break } } } dispatch (type, data) { message({ type, data }) } parseSubtitles () { if (this.current.name.endsWith('.mkv')) { const parser = new SubtitleParser() this.handleSubtitleParser(parser, true) const finish = () => { console.log('Sub parsing finished') this.parsed = true this.parser?.destroy() this.parser = undefined fileStream?.destroy() } parser.once('tracks', tracks => { if (!tracks.length) finish() }) parser.once('finish', finish) console.log('Sub parsing started') const fileStream = this.current.createReadStream() this.parser = fileStream.pipe(parser) } } cancelParse () { this.parser?.destroy() this.metadata?.destroy() this.metadata = undefined this.parser = undefined } parseFonts (file) { this.metadata = pipeline(file.createReadStream(), new SubtitleParser()) this.handleSubtitleParser(this.metadata) this.metadata.once('tracks', tracks => { if (!tracks.length) { this.parsed = true this.metadata.destroy() } }) this.metadata.once('subtitle', () => { this.metadata.destroy() }) } handleSubtitleParser (parser, skipFile) { parser.once('tracks', tracks => { if (!tracks.length) { this.parsed = true parser?.destroy() } else { this.dispatch('tracks', tracks) } }) parser.on('subtitle', (subtitle, trackNumber) => { this.dispatch('subtitle', { subtitle, trackNumber }) }) if (!skipFile) { parser.once('chapters', chapters => { this.dispatch('chapters', chapters) }) parser.on('file', file => { if (file.mimetype === 'application/x-truetype-font' || file.mimetype === 'application/font-woff' || file.mimetype === 'application/vnd.ms-opentype' || file.mimetype === 'font/sfnt' || file.mimetype.startsWith('font/') || file.filename.toLowerCase().endsWith('.ttf')) { this.dispatch('file', { mimetype: file.mimetype, data: Array.from(file.data) }) } }) } } predestroy () { this.destroy() this.server.close() this.parser?.destroy() this.parser = undefined } } let client = null let message = null ipcRenderer.on('port', (e) => { e.ports[0].onmessage = ({ data }) => { const cloned = structuredClone(data) if (!client && cloned.type === 'settings') window.client = client = new TorrentClient(cloned.data) if (cloned.type === 'destroy') client?.predestroy() client.handleMessage({ data: cloned }) } message = e.ports[0].postMessage.bind(e.ports[0]) })