Run Through Prettier

This commit is contained in:
Leo Herzog
2024-05-07 10:21:00 -04:00
parent 41f408d828
commit f81243896c

View File

@@ -1,8 +1,8 @@
import { Buffer } from 'https://cdn.jsdelivr.net/npm/buffer@6/+esm'; import { Buffer } from 'https://cdn.jsdelivr.net/npm/buffer@6/+esm';
import clipboard from 'https://cdn.jsdelivr.net/npm/clipboard@2/+esm' import clipboard from 'https://cdn.jsdelivr.net/npm/clipboard@2/+esm';
import parseTorrent, { toMagnetURI, toTorrentFile, remote as parseTorrentRemote } from 'https://cdn.jsdelivr.net/npm/parse-torrent@11/+esm'; import parseTorrent, { toMagnetURI, toTorrentFile, remote as parseTorrentRemote } from 'https://cdn.jsdelivr.net/npm/parse-torrent@11/+esm';
import bytes from 'https://cdn.jsdelivr.net/npm/bytes@3/+esm'; import bytes from 'https://cdn.jsdelivr.net/npm/bytes@3/+esm';
import mime from 'https://cdn.jsdelivr.net/npm/mime-types@2/+esm' import mime from 'https://cdn.jsdelivr.net/npm/mime-types@2/+esm';
import WebTorrent from 'https://cdn.jsdelivr.net/npm/webtorrent@2/dist/webtorrent.min.js'; import WebTorrent from 'https://cdn.jsdelivr.net/npm/webtorrent@2/dist/webtorrent.min.js';
import tippy from 'https://cdn.jsdelivr.net/npm/tippy.js@6/+esm'; import tippy from 'https://cdn.jsdelivr.net/npm/tippy.js@6/+esm';
import { Notyf } from 'https://cdn.jsdelivr.net/npm/notyf@3/+esm'; import { Notyf } from 'https://cdn.jsdelivr.net/npm/notyf@3/+esm';
@@ -14,7 +14,7 @@ var example3 = document.getElementById('example3');
var properties = document.getElementById('properties'); var properties = document.getElementById('properties');
var originalSourceIcon = document.getElementById('originalSourceIcon'); var originalSourceIcon = document.getElementById('originalSourceIcon');
var source; var source;
var sourceTooltip = tippy(originalSourceIcon, {"theme": "torrent-parts", "animation": "shift-away-subtle"}); var sourceTooltip = tippy(originalSourceIcon, { theme: 'torrent-parts', animation: 'shift-away-subtle' });
var name = document.getElementById('name'); var name = document.getElementById('name');
var reset = document.getElementById('reset'); var reset = document.getElementById('reset');
var created = document.getElementById('created'); var created = document.getElementById('created');
@@ -37,45 +37,45 @@ var copyURL = document.getElementById('copyURL');
var copyMagnet = document.getElementById('copyMagnet'); var copyMagnet = document.getElementById('copyMagnet');
var downloadTorrentWrapper = document.getElementById('downloadTorrentWrapper'); var downloadTorrentWrapper = document.getElementById('downloadTorrentWrapper');
var downloadTorrent = document.getElementById('downloadTorrent'); var downloadTorrent = document.getElementById('downloadTorrent');
var openURLTooltip = tippy(openURL, {"theme": "torrent-parts", "animation": "shift-away-subtle", "content": "Open this Magnet URL in your Torrent client"}); var openURLTooltip = tippy(openURL, { theme: 'torrent-parts', animation: 'shift-away-subtle', content: 'Open this Magnet URL in your Torrent client' });
var copyURLTooltip = tippy(copyURL, {"theme": "torrent-parts", "animation": "shift-away-subtle", "content": "Copy torrent.parts link to clipboard"}); var copyURLTooltip = tippy(copyURL, { theme: 'torrent-parts', animation: 'shift-away-subtle', content: 'Copy torrent.parts link to clipboard' });
var copyMagnetTooltip = tippy(copyMagnet, {"theme": "torrent-parts", "animation": "shift-away-subtle", "content": "Copy Magnet link to clipboard"}); var copyMagnetTooltip = tippy(copyMagnet, { theme: 'torrent-parts', animation: 'shift-away-subtle', content: 'Copy Magnet link to clipboard' });
var downloadTorrentTooltip = tippy(downloadTorrentWrapper, {"theme": "torrent-parts", "animation": "shift-away-subtle", "content": "Download Torrent file"}); var downloadTorrentTooltip = tippy(downloadTorrentWrapper, { theme: 'torrent-parts', animation: 'shift-away-subtle', content: 'Download Torrent file' });
var parsed; var parsed;
var client = new WebTorrent(); var client = new WebTorrent();
var notyf = new Notyf({ var notyf = new Notyf({
"duration": 8000, duration: 8000,
"dismissible": true, dismissible: true,
"ripple": false, ripple: false,
"position": { position: {
"x": "right", x: 'right',
"y": "top", y: 'top',
}, },
"types": [ types: [
{ {
"type": "success", type: 'success',
"background": "#46835C", background: '#46835C',
"icon": false icon: false,
}, },
{ {
"type": "error", type: 'error',
"background": "#A60A0A", background: '#A60A0A',
"icon": false icon: false,
} },
] ],
}); });
function placeDownloadTooltips(e) { function placeDownloadTooltips(e) {
if (window.innerWidth > 1080) { if (window.innerWidth > 1080) {
openURLTooltip.setProps({"placement": "right"}); openURLTooltip.setProps({ placement: 'right' });
copyURLTooltip.setProps({"placement": "right"}); copyURLTooltip.setProps({ placement: 'right' });
copyMagnetTooltip.setProps({"placement": "right"}); copyMagnetTooltip.setProps({ placement: 'right' });
downloadTorrentTooltip.setProps({"placement": "right"}); downloadTorrentTooltip.setProps({ placement: 'right' });
} else { } else {
openURLTooltip.setProps({"placement": "top"}); openURLTooltip.setProps({ placement: 'top' });
copyURLTooltip.setProps({"placement": "top"}); copyURLTooltip.setProps({ placement: 'top' });
copyMagnetTooltip.setProps({"placement": "top"}); copyMagnetTooltip.setProps({ placement: 'top' });
downloadTorrentTooltip.setProps({"placement": "top"}); downloadTorrentTooltip.setProps({ placement: 'top' });
} }
} }
@@ -85,9 +85,8 @@ placeDownloadTooltips();
document.addEventListener('DOMContentLoaded', start); document.addEventListener('DOMContentLoaded', start);
function start() { function start() {
// magnet input // magnet input
document.getElementById('magnet').addEventListener('keyup', function(event) { document.getElementById('magnet').addEventListener('keyup', function (event) {
event.preventDefault(); event.preventDefault();
if (event.key === 'Enter') { if (event.key === 'Enter') {
source = 'magnet'; source = 'magnet';
@@ -98,9 +97,9 @@ function start() {
}); });
// torrent select button // torrent select button
document.getElementById('torrent').addEventListener('change', function(event) { document.getElementById('torrent').addEventListener('change', function (event) {
event.preventDefault(); event.preventDefault();
event.target.files[0].arrayBuffer().then(function(arrayBuffer) { event.target.files[0].arrayBuffer().then(function (arrayBuffer) {
source = 'torrent-file'; source = 'torrent-file';
originalSourceIcon.innerHTML = '<span class="fad fa-file-alt fa-fw"></span>'; originalSourceIcon.innerHTML = '<span class="fad fa-file-alt fa-fw"></span>';
sourceTooltip.setContent('Currently loaded information sourced from Torrent file'); sourceTooltip.setContent('Currently loaded information sourced from Torrent file');
@@ -109,13 +108,16 @@ function start() {
}); });
// body drag-and-drop torrent file support // body drag-and-drop torrent file support
document.addEventListener('dragover', function(event) { document.addEventListener('dragover', function (event) {
event.preventDefault(); event.preventDefault();
}); });
document.addEventListener('drop', function(event) { document.addEventListener('drop', function (event) {
event.preventDefault(); event.preventDefault();
event.dataTransfer.items[0].getAsFile().arrayBuffer().then(function(arrayBuffer) { event.dataTransfer.items[0]
.getAsFile()
.arrayBuffer()
.then(function (arrayBuffer) {
source = 'torrent-file'; source = 'torrent-file';
originalSourceIcon.innerHTML = '<span class="fad fa-file-alt fa-fw"></span>'; originalSourceIcon.innerHTML = '<span class="fad fa-file-alt fa-fw"></span>';
sourceTooltip.setContent('Currently loaded information sourced from Torrent file'); sourceTooltip.setContent('Currently loaded information sourced from Torrent file');
@@ -124,16 +126,16 @@ function start() {
}); });
// example buttons // example buttons
example1.addEventListener('click', function(event) { example1.addEventListener('click', function (event) {
event.preventDefault(); event.preventDefault();
notyf.success('Parsing Ubuntu 22.04 Magnet URL'); notyf.success('Parsing Ubuntu 24.04 Magnet URL');
source = 'magnet'; source = 'magnet';
originalSourceIcon.innerHTML = '<span class="fad fa-magnet fa-fw"></span>'; originalSourceIcon.innerHTML = '<span class="fad fa-magnet fa-fw"></span>';
sourceTooltip.setContent('Currently loaded information sourced from Magnet URL'); sourceTooltip.setContent('Currently loaded information sourced from Magnet URL');
parse('magnet:?xt=urn:btih:2c6b6858d61da9543d4231a71db4b1c9264b0685&dn=ubuntu-22.04-desktop-amd64.iso&tr=https%3A%2F%2Ftorrent.ubuntu.com%2Fannounce&tr=https%3A%2F%2Fipv6.torrent.ubuntu.com%2Fannounce'); parse('magnet:?xt=urn:btih:2aa4f5a7e209e54b32803d43670971c4c8caaa05&dn=ubuntu-24.04-desktop-amd64.iso&tr=https%3A%2F%2Ftorrent.ubuntu.com%2Fannounce&tr=https%3A%2F%2Fipv6.torrent.ubuntu.com%2Fannounce');
}); });
example2.addEventListener('click', async function(event) { example2.addEventListener('click', async function (event) {
event.preventDefault(); event.preventDefault();
notyf.success('Fetching and Parsing &ldquo;The WIRED CD&rdquo; Torrent File...'); notyf.success('Fetching and Parsing &ldquo;The WIRED CD&rdquo; Torrent File...');
source = 'remote-torrent-file'; source = 'remote-torrent-file';
@@ -142,7 +144,7 @@ function start() {
parseRemote('https://webtorrent.io/torrents/wired-cd.torrent'); parseRemote('https://webtorrent.io/torrents/wired-cd.torrent');
}); });
example3.addEventListener('click', async function(event) { example3.addEventListener('click', async function (event) {
event.preventDefault(); event.preventDefault();
notyf.success('Parsing Jack Johnson Archive.org Torrent File'); notyf.success('Parsing Jack Johnson Archive.org Torrent File');
let response = await fetch('/ext/jj2008-06-14.mk4_archive.torrent'); let response = await fetch('/ext/jj2008-06-14.mk4_archive.torrent');
@@ -155,20 +157,20 @@ function start() {
// share buttons // share buttons
let copyurl = new clipboard('#copyURL'); let copyurl = new clipboard('#copyURL');
copyurl.on('success', function(e) { copyurl.on('success', function (e) {
notyf.success('Copied site URL to clipboard!'); notyf.success('Copied site URL to clipboard!');
console.info(e); console.info(e);
}); });
copyurl.on('failure', function(e) { copyurl.on('failure', function (e) {
notyf.error('Problem copying to clipboard'); notyf.error('Problem copying to clipboard');
console.warn(e); console.warn(e);
}); });
let copymagnet = new clipboard('#copyMagnet'); let copymagnet = new clipboard('#copyMagnet');
copymagnet.on('success', function(e) { copymagnet.on('success', function (e) {
notyf.success('Copied Magnet URL to clipboard!'); notyf.success('Copied Magnet URL to clipboard!');
}); });
copymagnet.on('failure', function(e) { copymagnet.on('failure', function (e) {
notyf.error('Problem copying to clipboard'); notyf.error('Problem copying to clipboard');
console.warn(e); console.warn(e);
}); });
@@ -190,7 +192,7 @@ function start() {
removeWebseeds.addEventListener('click', () => removeAllRows('urlList')); removeWebseeds.addEventListener('click', () => removeAllRows('urlList'));
getFiles.addEventListener('click', getFilesFromPeers); getFiles.addEventListener('click', getFilesFromPeers);
tippy('[data-tippy-content]', {"theme": "torrent-parts", "animation": "shift-away-subtle"}); // all element-defined tooltips tippy('[data-tippy-content]', { theme: 'torrent-parts', animation: 'shift-away-subtle' }); // all element-defined tooltips
sourceTooltip.disable(); sourceTooltip.disable();
if (window.location.hash) { if (window.location.hash) {
@@ -199,7 +201,6 @@ function start() {
sourceTooltip.setContent('Currently loaded information sourced from shared torrent.parts link'); sourceTooltip.setContent('Currently loaded information sourced from shared torrent.parts link');
parse(window.location.hash.split('#')[1]); parse(window.location.hash.split('#')[1]);
} }
} }
async function parse(toLoad) { async function parse(toLoad) {
@@ -212,13 +213,14 @@ async function parse(toLoad) {
console.info('Magnet includes xs, attempting remote parse'); console.info('Magnet includes xs, attempting remote parse');
parseRemote(parsed.xs); parseRemote(parsed.xs);
} }
} } catch (e) {
catch(e) { // maybe they put a URL to a torrent file in the magnet box? // maybe they put a URL to a torrent file in the magnet box?
console.warn(e); console.warn(e);
if (source == 'magnet') { if (source == 'magnet') {
console.info('Attempting remote parse'); console.info('Attempting remote parse');
parseRemote(toLoad); parseRemote(toLoad);
} else { // probably not. Just a bad file. } else {
// probably not. Just a bad file.
notyf.error('Problem parsing input. Is this a .torrent file?'); notyf.error('Problem parsing input. Is this a .torrent file?');
console.error('Problem parsing input'); console.error('Problem parsing input');
} }
@@ -247,9 +249,7 @@ async function parseRemote(toLoad) {
} }
} }
function display() { function display() {
console.log(parsed); console.log(parsed);
hash.value = parsed.infoHash; hash.value = parsed.infoHash;
@@ -262,7 +262,7 @@ function display() {
} }
createdBy.value = parsed.createdBy ? ' by ' + parsed.createdBy : ''; createdBy.value = parsed.createdBy ? ' by ' + parsed.createdBy : '';
comment.value = parsed.comment ? parsed.comment : ''; comment.value = parsed.comment ? parsed.comment : '';
pieces.value = parsed.pieces ? parsed.pieces.length.toLocaleString() + ' ' + bytes.format(parsed.pieceLength, {"decimalPlaces": 1, "unitSeparator": " "}) + ' pieces (last piece ' + bytes.format(parsed.lastPieceLength, {"decimalPlaces": 1, "unitSeparator": " "}) + ')' : ''; pieces.value = parsed.pieces ? parsed.pieces.length.toLocaleString() + ' ' + bytes.format(parsed.pieceLength, { decimalPlaces: 1, unitSeparator: ' ' }) + ' pieces (last piece ' + bytes.format(parsed.lastPieceLength, { decimalPlaces: 1, unitSeparator: ' ' }) + ')' : '';
announce.innerHTML = ''; announce.innerHTML = '';
if (parsed.announce && parsed.announce.length) { if (parsed.announce && parsed.announce.length) {
@@ -360,11 +360,10 @@ function display() {
if (parsed.name) { if (parsed.name) {
document.title = 'Torrent Parts | ' + parsed.name; document.title = 'Torrent Parts | ' + parsed.name;
} else { } else {
document.title = 'Torrent Parts | Inspect and edit what\'s in your Torrent file or Magnet link'; document.title = "Torrent Parts | Inspect and edit what's in your Torrent file or Magnet link";
} }
sourceTooltip.enable(); sourceTooltip.enable();
} }
function createFileRow(icon, name, size) { function createFileRow(icon, name, size) {
@@ -376,7 +375,7 @@ function createFileRow(icon, name, size) {
namecell.innerHTML = name; namecell.innerHTML = name;
row.appendChild(namecell); row.appendChild(namecell);
let totalcell = document.createElement('td'); let totalcell = document.createElement('td');
totalcell.innerHTML = bytes.format(size, {"decimalPlaces": 1, "unitSeparator": " "}); totalcell.innerHTML = bytes.format(size, { decimalPlaces: 1, unitSeparator: ' ' });
row.appendChild(totalcell); row.appendChild(totalcell);
return row; return row;
} }
@@ -443,13 +442,13 @@ function resetProperties() {
hash.value = ''; hash.value = '';
announce.innerHTML = ''; announce.innerHTML = '';
urlList.innerHTML = ''; urlList.innerHTML = '';
client.torrents.forEach(torrent => torrent.destroy()); client.torrents.forEach((torrent) => torrent.destroy());
getFiles.style.display = 'block'; getFiles.style.display = 'block';
files.innerHTML = ''; files.innerHTML = '';
window.location.hash = ''; window.location.hash = '';
copyURL.setAttribute('data-clipboard-text', ''); copyURL.setAttribute('data-clipboard-text', '');
copyMagnet.setAttribute('data-clipboard-text', ''); copyMagnet.setAttribute('data-clipboard-text', '');
document.title = 'Torrent Parts | Inspect and edit what\'s in your Torrent file or Magnet link'; document.title = "Torrent Parts | Inspect and edit what's in your Torrent file or Magnet link";
sourceTooltip.disable(); sourceTooltip.disable();
} }
@@ -462,11 +461,10 @@ async function addCurrentTrackers() {
parsed.announce = parsed.announce.concat(trackers.split('\n\n')); parsed.announce = parsed.announce.concat(trackers.split('\n\n'));
parsed.announce.push('http://bt1.archive.org:6969/announce'); parsed.announce.push('http://bt1.archive.org:6969/announce');
parsed.announce.push('http://bt2.archive.org:6969/announce'); parsed.announce.push('http://bt2.archive.org:6969/announce');
parsed.announce = parsed.announce.filter((v,i) => v && parsed.announce.indexOf(v) === i); // remove duplicates and empties parsed.announce = parsed.announce.filter((v, i) => v && parsed.announce.indexOf(v) === i); // remove duplicates and empties
notyf.success('Added known working trackers from newTrackon'); notyf.success('Added known working trackers from newTrackon');
updateModified(); updateModified();
} } catch (e) {
catch(e) {
notyf.error('Problem fetching trackers from newTrackon'); notyf.error('Problem fetching trackers from newTrackon');
console.warn(e); console.warn(e);
} }
@@ -510,7 +508,7 @@ function getFilesFromPeers() {
parsed.announce.push('wss://tracker.openwebtorrent.com'); parsed.announce.push('wss://tracker.openwebtorrent.com');
parsed.announce.push('wss://tracker.btorrent.xyz'); parsed.announce.push('wss://tracker.btorrent.xyz');
parsed.announce.push('wss://tracker.fastcast.nz'); parsed.announce.push('wss://tracker.fastcast.nz');
parsed.announce = parsed.announce.filter((v,i) => v && parsed.announce.indexOf(v) === i); // remove duplicates and empties parsed.announce = parsed.announce.filter((v, i) => v && parsed.announce.indexOf(v) === i); // remove duplicates and empties
client.add(toMagnetURI(parsed), (torrent) => { client.add(toMagnetURI(parsed), (torrent) => {
parsed.info = Object.assign({}, torrent.info); // clone object parsed.info = Object.assign({}, torrent.info); // clone object
parsed.files = torrent.files; parsed.files = torrent.files;
@@ -528,11 +526,10 @@ function getFilesFromPeers() {
// https://stackoverflow.com/a/36899900/2700296 // https://stackoverflow.com/a/36899900/2700296
function saveTorrent() { function saveTorrent() {
let data = toTorrentFile(parsed); let data = toTorrentFile(parsed);
if (data !== null && navigator.msSaveBlob) if (data !== null && navigator.msSaveBlob) return navigator.msSaveBlob(new Blob([data], { type: 'application/x-bittorrent' }), parsed.name + '.torrent');
return navigator.msSaveBlob(new Blob([data], { "type": "application/x-bittorrent" }), parsed.name + '.torrent');
let a = document.createElement('a'); let a = document.createElement('a');
a.style.display = 'none'; a.style.display = 'none';
let url = window.URL.createObjectURL(new Blob([data], { "type": "application/x-bittorrent" })); let url = window.URL.createObjectURL(new Blob([data], { type: 'application/x-bittorrent' }));
a.setAttribute('href', url); a.setAttribute('href', url);
a.setAttribute('download', parsed.name + '.torrent'); a.setAttribute('download', parsed.name + '.torrent');
document.body.appendChild(a); document.body.appendChild(a);