-
-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #138 from ajayyy/experimental-ajay
Improved away function
- Loading branch information
Showing
3 changed files
with
40 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,48 @@ | ||
// Function that can be used to wait for a condition before returning | ||
async function wait(condition, timeout = 5000, check = 100) { | ||
return await new Promise((resolve, reject) => { | ||
setTimeout(() => {reject("TIMEOUT")}, timeout); | ||
const interval = setInterval(() => { | ||
let result = condition(); | ||
if (result !== false) { | ||
resolve(result); | ||
clearInterval(interval); | ||
}; | ||
}, check); | ||
}); | ||
return await new Promise((resolve, reject) => { | ||
setTimeout(() => reject("TIMEOUT"), timeout); | ||
|
||
let intervalCheck = () => { | ||
let result = condition(); | ||
if (result !== false) { | ||
resolve(result); | ||
clearInterval(interval); | ||
}; | ||
}; | ||
|
||
let interval = setInterval(intervalCheck, check); | ||
|
||
//run the check once first, this speeds it up a lot | ||
intervalCheck(); | ||
}); | ||
} | ||
|
||
function getYouTubeVideoID(url) { | ||
//Attempt to parse url | ||
let urlObject = null; | ||
try { | ||
urlObject = new URL(url); | ||
urlObject = new URL(url); | ||
} catch (e) { | ||
console.error("[SB] Unable to parse URL: " + url); | ||
return false; | ||
console.error("[SB] Unable to parse URL: " + url); | ||
return false; | ||
} | ||
|
||
//Check if valid hostname | ||
if(!["www.youtube.com","www.youtube-nocookie.com"].includes(urlObject.host)) return false; | ||
|
||
//Get ID from searchParam | ||
if ((urlObject.pathname == "/watch" || urlObject.pathname == "/watch/") && urlObject.searchParams.has("v")) { | ||
id = urlObject.searchParams.get("v"); | ||
return id.length == 11 ? id : false; | ||
id = urlObject.searchParams.get("v"); | ||
return id.length == 11 ? id : false; | ||
} else if (urlObject.pathname.startsWith("/embed/")) { | ||
try { | ||
return urlObject.pathname.substr(7, 11); | ||
} catch (e) { | ||
console.error("[SB] Video ID not valid for " + url); | ||
return false; | ||
} | ||
try { | ||
return urlObject.pathname.substr(7, 11); | ||
} catch (e) { | ||
console.error("[SB] Video ID not valid for " + url); | ||
return false; | ||
} | ||
} | ||
return false; | ||
|
||
return false; | ||
} |