mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-14 01:11:28 +03:00
Added some documentation to downloader.js
This commit is contained in:
@@ -28,6 +28,25 @@ if (db_api.database_initialized) {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
|
||||||
|
This file handles all the downloading functionality.
|
||||||
|
|
||||||
|
To download a file, we go through 4 steps. Here they are with their respective index & function:
|
||||||
|
|
||||||
|
0: Create the download
|
||||||
|
- createDownload()
|
||||||
|
1: Get info for the download (we need this step for categories and archive functionality)
|
||||||
|
- collectInfo()
|
||||||
|
2: Download the file
|
||||||
|
- downloadQueuedFile()
|
||||||
|
3: Complete
|
||||||
|
- N/A
|
||||||
|
|
||||||
|
We use checkDownloads() to move downloads through the steps and call their respective functions.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
exports.createDownload = async (url, type, options, user_uid = null, sub_id = null, sub_name = null, prefetched_info = null) => {
|
exports.createDownload = async (url, type, options, user_uid = null, sub_id = null, sub_name = null, prefetched_info = null) => {
|
||||||
return await mutex.runExclusive(async () => {
|
return await mutex.runExclusive(async () => {
|
||||||
const download = {
|
const download = {
|
||||||
|
|||||||
Reference in New Issue
Block a user