Skip to content

Commit 65ee239

Browse files
committed
download: don't retry on 403/404/410
1 parent f98aea1 commit 65ee239

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

download-to-file.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ func (cli *Client) DownloadMediaWithPathToFile(directPath string, encFileHash, f
7777
// TODO omit hash for unencrypted media?
7878
mediaURL := fmt.Sprintf("https://%s%s&hash=%s&mms-type=%s&__wa-mms=", host.Hostname, directPath, base64.URLEncoding.EncodeToString(encFileHash), mmsType)
7979
err = cli.downloadAndDecryptToFile(mediaURL, mediaKey, mediaType, fileLength, encFileHash, fileHash, file)
80-
if err == nil || errors.Is(err, ErrFileLengthMismatch) || errors.Is(err, ErrInvalidMediaSHA256) {
80+
if err == nil || errors.Is(err, ErrFileLengthMismatch) || errors.Is(err, ErrInvalidMediaSHA256) ||
81+
errors.Is(err, ErrMediaDownloadFailedWith403) || errors.Is(err, ErrMediaDownloadFailedWith404) || errors.Is(err, ErrMediaDownloadFailedWith410) {
8182
return err
8283
} else if i >= len(mediaConn.Hosts)-1 {
8384
return fmt.Errorf("failed to download media from last host: %w", err)
8485
}
85-
// TODO there are probably some errors that shouldn't retry
8686
cli.Log.Warnf("Failed to download media: %s, trying with next host...", err)
8787
}
8888
return err

download.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -240,12 +240,12 @@ func (cli *Client) DownloadMediaWithPath(directPath string, encFileHash, fileHas
240240
// TODO omit hash for unencrypted media?
241241
mediaURL := fmt.Sprintf("https://%s%s&hash=%s&mms-type=%s&__wa-mms=", host.Hostname, directPath, base64.URLEncoding.EncodeToString(encFileHash), mmsType)
242242
data, err = cli.downloadAndDecrypt(mediaURL, mediaKey, mediaType, fileLength, encFileHash, fileHash)
243-
if err == nil || errors.Is(err, ErrFileLengthMismatch) || errors.Is(err, ErrInvalidMediaSHA256) {
243+
if err == nil || errors.Is(err, ErrFileLengthMismatch) || errors.Is(err, ErrInvalidMediaSHA256) ||
244+
errors.Is(err, ErrMediaDownloadFailedWith403) || errors.Is(err, ErrMediaDownloadFailedWith404) || errors.Is(err, ErrMediaDownloadFailedWith410) {
244245
return
245246
} else if i >= len(mediaConn.Hosts)-1 {
246247
return nil, fmt.Errorf("failed to download media from last host: %w", err)
247248
}
248-
// TODO there are probably some errors that shouldn't retry
249249
cli.Log.Warnf("Failed to download media: %s, trying with next host...", err)
250250
}
251251
return

0 commit comments

Comments
 (0)