Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update: author wise download #42

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 29 additions & 9 deletions mkbsd.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
// Copyright 2024 Nadim Kobeissi
// edit by Jay 2024
// Licensed under the WTFPL License

const fs = require(`fs`);
Expand All @@ -19,24 +20,32 @@ async function main() {
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}`);
}
let fileIndex = 1;
// const downloadDir = path.join(__dirname, 'downloads');
// if (!fs.existsSync(downloadDir)) {
// fs.mkdirSync(downloadDir);
// console.info(`📁 Created directory: ${downloadDir}`);
// }
//let fileIndex = 1;
for (const key in data) {
const subproperty = data[key];
if (subproperty && subproperty.dhd) {
const imageUrl = subproperty.dhd;
console.info(`🔍 Found image URL!`);
await delay(100);

const author = getAuthor(imageUrl);
const authorDir = path.join(__dirname, 'downloads', author);
if (!fs.existsSync(authorDir)) {
fs.mkdirSync(authorDir, { recursive: true });
console.info(`📁 Created directory: ${authorDir}`);
}

const ext = path.extname(new URL(imageUrl).pathname) || '.jpg';
const filename = `${fileIndex}${ext}`;
const filePath = path.join(downloadDir, filename);
const filename = `${key}${ext}`;
const filePath = path.join(authorDir, filename);
await downloadImage(imageUrl, filePath);
console.info(`🖼️ Saved image to ${filePath}`);
fileIndex++;
//fileIndex++;
await delay(250);
}
}
Expand All @@ -45,6 +54,17 @@ async function main() {
}
}

function getAuthor(url) {
const parUrl = new URL(url);
const urlParts = parUrl.pathname.split('/');
const authorPart = urlParts.find(part => part.includes('~'));
if (authorPart) {
const nameParts = authorPart.split('~')[1].split('_');
return nameParts[0];
}
return 'unknown';
}

async function downloadImage(url, filePath) {
const response = await fetch(url);
if (!response.ok) {
Expand Down