@@ -1220,6 +1220,18 @@ export interface ProgressCallback {
1220
1220
) : void
1221
1221
}
1222
1222
1223
+ /**
1224
+ * Downloads a file from a given URL to a specified destination path.
1225
+ * If there is cache on the CDN it will use 5 connections so the download will be faster.
1226
+ * If there is no cache on the CDN it will use 1 connection, otherwise the download might fail to start.
1227
+ *
1228
+ * @param {string } url - The URL of the file to download.
1229
+ * @param {string } dest - The destination path to save the downloaded file.
1230
+ * @param {AbortController } abortController - The AbortController instance to cancel the download.
1231
+ * @param {ProgressCallback } [progressCallback] - An optional callback function to track the download progress.
1232
+ * @returns {Promise<void> } - A Promise that resolves when the download is complete.
1233
+ * @throws {Error } - If the download fails or is incomplete.
1234
+ */
1223
1235
export async function downloadFile (
1224
1236
url : string ,
1225
1237
dest : string ,
@@ -1230,22 +1242,41 @@ export async function downloadFile(
1230
1242
let lastBytesWritten = 0
1231
1243
let fileSize = 0
1232
1244
1245
+ let connections = 1
1246
+ try {
1247
+ const response = await axios . head ( url )
1248
+ const cdnCache = response . headers [ 'cdn-cache' ]
1249
+ const isCached = cdnCache === 'HIT' || cdnCache === 'STALE'
1250
+ if ( isCached ) {
1251
+ connections = 5
1252
+ }
1253
+ fileSize = parseInt ( response . headers [ 'content-length' ] , 10 )
1254
+ } catch ( err ) {
1255
+ logError (
1256
+ `Downloader: Failed to get headers for ${ url } ` ,
1257
+ LogPrefix . DownloadManager
1258
+ )
1259
+ throw new Error ( 'Failed to get headers' )
1260
+ }
1261
+
1233
1262
try {
1234
1263
const dl = new EasyDl ( url , dest , {
1235
1264
existBehavior : 'overwrite' ,
1236
- maxRetry : 10 ,
1237
- retryDelay : 1000 ,
1238
- connections : 1 ,
1239
- chunkSize : 1024 * 1024 * 10
1265
+ connections
1240
1266
} ) . start ( )
1241
1267
1242
- dl . on ( 'metadata' , ( metadata ) => {
1243
- fileSize = metadata . size
1244
- } )
1245
-
1246
1268
abortController . signal . addEventListener ( 'abort' , ( ) => {
1247
1269
dl . destroy ( )
1248
1270
} )
1271
+
1272
+ dl . on ( 'error' , ( error ) => {
1273
+ logError ( error , LogPrefix . HyperPlay )
1274
+ } )
1275
+
1276
+ dl . on ( 'retry' , ( retry ) => {
1277
+ logInfo ( `Retrying download: ${ retry } ` , LogPrefix . HyperPlay )
1278
+ } )
1279
+
1249
1280
const throttledProgressCallback = throttle (
1250
1281
(
1251
1282
bytes : number ,
@@ -1282,16 +1313,11 @@ export async function downloadFile(
1282
1313
}
1283
1314
} )
1284
1315
1285
- dl . on ( 'error' , function ( error ) {
1286
- logError ( `Downloader: Error: ${ error } ` , LogPrefix . DownloadManager )
1287
- throw error
1288
- } )
1289
-
1290
1316
const downloaded = await dl . wait ( )
1291
1317
1292
1318
if ( ! downloaded ) {
1293
1319
logWarning (
1294
- `: Downloader: File ${ url } not downloaded ` ,
1320
+ `Downloader: Download stopped or paused ` ,
1295
1321
LogPrefix . DownloadManager
1296
1322
)
1297
1323
throw new Error ( 'Download incomplete' )
0 commit comments