processing: pass URL object instead of string

This commit is contained in:
dumbmoron
2023-12-14 23:04:05 +00:00
parent 30c9652b6e
commit 81e68c37f5
4 changed files with 12 additions and 7 deletions

View File

@@ -39,17 +39,18 @@ export default async function(obj) {
if (!clientId) return { error: 'ErrorSoundCloudNoClientId' };
let link;
if (obj.shortLink && !obj.author && !obj.song) {
if (obj.url.hostname === 'on.soundcloud.com' && obj.shortLink) {
link = await fetch(`https://on.soundcloud.com/${obj.shortLink}/`, { redirect: "manual" }).then((r) => {
if (r.status === 302 && r.headers.get("location").startsWith("https://soundcloud.com/")) {
return r.headers.get("location").split('?', 1)[0]
}
return false
}).catch(() => { return false });
}).catch(() => {});
}
if (!link && obj.author && obj.song) {
link = `https://soundcloud.com/${obj.author}/${obj.song}${obj.accessKey ? `/s-${obj.accessKey}` : ''}`
}
if (!link) return { error: 'ErrorCouldntFetch' };
let json = await fetch(`https://api-v2.soundcloud.com/resolve?url=${link}&client_id=${clientId}`).then((r) => {