mirror of
https://github.com/nadimkobeissi/mkbsd.git
synced 2024-12-22 20:15:06 +00:00
92 lines
2.8 KiB
JavaScript
92 lines
2.8 KiB
JavaScript
// Copyright 2024 Nadim Kobeissi
|
|
// Licensed under the WTFPL License
|
|
|
|
const fs = require(`fs`);
|
|
const path = require(`path`);
|
|
|
|
async function main() {
|
|
const url = 'https://storage.googleapis.com/panels-api/data/20240916/media-1a-i-p~s';
|
|
const delay = (ms) => {
|
|
return new Promise(resolve => setTimeout(resolve, ms));
|
|
}
|
|
try {
|
|
const response = await fetch(url);
|
|
if (!response.ok) {
|
|
throw new Error(`⛔ Failed to fetch JSON file: ${response.statusText}`);
|
|
}
|
|
const jsonData = await response.json();
|
|
const data = jsonData.data;
|
|
if (!data) {
|
|
throw new Error('⛔ JSON does not have a "data" property at its root.');
|
|
}
|
|
const downloadDir = path.join(__dirname, 'downloads');
|
|
if (!fs.existsSync(downloadDir)) {
|
|
fs.mkdirSync(downloadDir);
|
|
console.info(`📁 Created directory: ${downloadDir}`);
|
|
}
|
|
for (const key in data) {
|
|
const subproperty = data[key];
|
|
if (subproperty && subproperty.dhd) {
|
|
const imageUrl = subproperty.dhd;
|
|
console.info(`🔍 Found image URL!`, imageUrl);
|
|
await delay(100);
|
|
|
|
const match = imageUrl.match(/\/content\/([^/]+)\//);
|
|
let artistName = match[1];
|
|
artistName = artistName.replace(/^[a~]+|_[^_]+$/g, '');
|
|
// Create folder with artist's name
|
|
const artistDir = path.join(downloadDir, artistName);
|
|
if (!fs.existsSync(artistDir)) {
|
|
fs.mkdirSync(artistDir, { recursive: true });
|
|
}
|
|
|
|
// Extract and clean file name
|
|
const fileNameMatch = imageUrl.match(/\/([^/]+)\?/);
|
|
let cleanFileName = '';
|
|
|
|
if (fileNameMatch) {
|
|
let cleanFileName = fileNameMatch[1].replace(/~/g, ' ');
|
|
const filePath = path.join(artistDir, cleanFileName);
|
|
|
|
console.info('📂', filePath);
|
|
|
|
await downloadImage(imageUrl, filePath);
|
|
console.info(`🖼️ Saved image to ${filePath}`);
|
|
await delay(250);
|
|
}
|
|
}
|
|
}
|
|
} catch (error) {
|
|
console.error(`Error: ${error.message}`);
|
|
}
|
|
}
|
|
|
|
async function downloadImage(url, filePath) {
|
|
const response = await fetch(url);
|
|
if (!response.ok) {
|
|
throw new Error(`Failed to download image: ${response.statusText}`);
|
|
}
|
|
const arrayBuffer = await response.arrayBuffer();
|
|
const buffer = Buffer.from(arrayBuffer);
|
|
await fs.promises.writeFile(filePath, buffer);
|
|
}
|
|
|
|
function asciiArt() {
|
|
console.info(`
|
|
/$$ /$$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$$
|
|
| $$$ /$$$| $$ /$$/| $$__ $$ /$$__ $$| $$__ $$
|
|
| $$$$ /$$$$| $$ /$$/ | $$ \\ $$| $$ \\__/| $$ \\ $$
|
|
| $$ $$/$$ $$| $$$$$/ | $$$$$$$ | $$$$$$ | $$ | $$
|
|
| $$ $$$| $$| $$ $$ | $$__ $$ \\____ $$| $$ | $$
|
|
| $$\\ $ | $$| $$\\ $$ | $$ \\ $$ /$$ \\ $$| $$ | $$
|
|
| $$ \\/ | $$| $$ \\ $$| $$$$$$$/| $$$$$$/| $$$$$$$/
|
|
|__/ |__/|__/ \\__/|_______/ \\______/ |_______/`);
|
|
console.info(``);
|
|
console.info(`🤑 Starting downloads from your favorite sellout grifter's wallpaper app...`);
|
|
}
|
|
|
|
(() => {
|
|
asciiArt();
|
|
setTimeout(main, 5000);
|
|
})();
|