files being renamed while downloaded

This commit is contained in:
retardgerman 2024-09-27 10:54:28 +00:00
parent 82e50c64f0
commit 2c4f79c307

106
mkbsd.js
View file

@ -1,62 +1,59 @@
// Copyright 2024 Nadim Kobeissi const fs = require('fs');
// Licensed under the WTFPL License const path = require('path');
const fs = require(`fs`);
const path = require(`path`);
async function main() { async function main() {
const url = 'https://storage.googleapis.com/panels-api/data/20240916/media-1a-i-p~s'; const url = 'https://storage.googleapis.com/panels-api/data/20240916/media-1a-i-p~s';
const delay = (ms) => { const delay = (ms) => new Promise(resolve => setTimeout(resolve, ms));
return new Promise(resolve => setTimeout(resolve, ms));
} try {
try { const response = await fetch(url);
const response = await fetch(url); if (!response.ok) {
if (!response.ok) { throw new Error(`⛔ Failed to fetch JSON file: ${response.statusText}`);
throw new Error(` Failed to fetch JSON file: ${response.statusText}`); }
} const jsonData = await response.json();
const jsonData = await response.json(); const data = jsonData.data;
const data = jsonData.data; if (!data) {
if (!data) { throw new Error('⛔ JSON does not have a "data" property at its root.');
throw new Error('⛔ JSON does not have a "data" property at its root.'); }
} const downloadDir = path.join(__dirname, 'downloads');
const downloadDir = path.join(__dirname, 'downloads'); if (!fs.existsSync(downloadDir)) {
if (!fs.existsSync(downloadDir)) { fs.mkdirSync(downloadDir);
fs.mkdirSync(downloadDir); console.info(`📁 Created directory: ${downloadDir}`);
console.info(`📁 Created directory: ${downloadDir}`); }
}
let fileIndex = 1; for (const key in data) {
for (const key in data) { const subproperty = data[key];
const subproperty = data[key]; if (subproperty && subproperty.dhd) {
if (subproperty && subproperty.dhd) { const imageUrl = subproperty.dhd;
const imageUrl = subproperty.dhd; console.info(`🔍 Found image URL!`);
console.info(`🔍 Found image URL!`);
await delay(100); // Extrahiere den Dateinamen aus der URL
const ext = path.extname(new URL(imageUrl).pathname) || '.jpg'; const urlPath = new URL(imageUrl).pathname;
const filename = `${fileIndex}${ext}`; const fileName = path.basename(urlPath, '.jpg'); // Name ohne '.jpg'
const filePath = path.join(downloadDir, filename); const filePath = path.join(downloadDir, `${fileName}.jpg`);
await downloadImage(imageUrl, filePath);
console.info(`🖼️ Saved image to ${filePath}`); await downloadImage(imageUrl, filePath);
fileIndex++; console.info(`🖼️ Saved image to ${filePath}`);
await delay(250); await delay(250); // Wartezeit zwischen Downloads
} }
} }
} catch (error) { } catch (error) {
console.error(`Error: ${error.message}`); console.error(`Error: ${error.message}`);
} }
} }
async function downloadImage(url, filePath) { async function downloadImage(url, filePath) {
const response = await fetch(url); const response = await fetch(url);
if (!response.ok) { if (!response.ok) {
throw new Error(`Failed to download image: ${response.statusText}`); throw new Error(`Failed to download image: ${response.statusText}`);
} }
const arrayBuffer = await response.arrayBuffer(); const arrayBuffer = await response.arrayBuffer();
const buffer = Buffer.from(arrayBuffer); const buffer = Buffer.from(arrayBuffer);
await fs.promises.writeFile(filePath, buffer); await fs.promises.writeFile(filePath, buffer);
} }
function asciiArt() { function asciiArt() {
console.info(` console.info(`
/$$ /$$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$ /$$ /$$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$
| $$$ /$$$| $$ /$$/| $$__ $$ /$$__ $$| $$__ $$ | $$$ /$$$| $$ /$$/| $$__ $$ /$$__ $$| $$__ $$
| $$$$ /$$$$| $$ /$$/ | $$ \\ $$| $$ \\__/| $$ \\ $$ | $$$$ /$$$$| $$ /$$/ | $$ \\ $$| $$ \\__/| $$ \\ $$
@ -65,11 +62,10 @@ function asciiArt() {
| $$\\ $ | $$| $$\\ $$ | $$ \\ $$ /$$ \\ $$| $$ | $$ | $$\\ $ | $$| $$\\ $$ | $$ \\ $$ /$$ \\ $$| $$ | $$
| $$ \\/ | $$| $$ \\ $$| $$$$$$$/| $$$$$$/| $$$$$$$/ | $$ \\/ | $$| $$ \\ $$| $$$$$$$/| $$$$$$/| $$$$$$$/
|__/ |__/|__/ \\__/|_______/ \\______/ |_______/`); |__/ |__/|__/ \\__/|_______/ \\______/ |_______/`);
console.info(``); console.info(`🤑 Starting downloads from your favorite sellout grifter's wallpaper app...`);
console.info(`🤑 Starting downloads from your favorite sellout grifter's wallpaper app...`);
} }
(() => { (() => {
asciiArt(); asciiArt();
setTimeout(main, 5000); setTimeout(main, 5000);
})(); })();