public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Pakfire: abort download if downloaded size is emtpy or zero
@ 2018-10-22 17:58 Peter Müller
  2018-10-22 17:58 ` [PATCH 2/2] fix download routines in Pakfire if behind upstream proxy Peter Müller
  0 siblings, 1 reply; 2+ messages in thread
From: Peter Müller @ 2018-10-22 17:58 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1109 bytes --]

In case a download fails for whatever reason, and the downloaded
file size cannot be determined or is zero, Pakfire should abort.

Signed-off-by: Peter Müller <peter.mueller(a)link38.eu>
---
 src/pakfire/lib/functions.pl | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl
index 12a405bd7..bbc580ad2 100644
--- a/src/pakfire/lib/functions.pl
+++ b/src/pakfire/lib/functions.pl
@@ -180,7 +180,14 @@ sub fetchfile {
 		my $result = $ua->head($url);
 		my $remote_headers = $result->headers;
 		$total_size = $remote_headers->content_length;
-		logger("DOWNLOAD INFO: $file has size of $total_size bytes");
+
+		# validate if file download was successful (size <= 0)
+		if ( $total_size eq "0" || not $total_size ) {
+			logger("DOWNLOAD ERROR: download of $file failed with size '$total_size' bytes");
+			return 1;
+		} else {
+			logger("DOWNLOAD INFO: $file has size of $total_size bytes");
+		}
 		
 		my $response = $ua->get($url, ':content_cb' => \&callback );
 		message("");
-- 
2.16.4


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-10-22 17:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-10-22 17:58 [PATCH 1/2] Pakfire: abort download if downloaded size is emtpy or zero Peter Müller
2018-10-22 17:58 ` [PATCH 2/2] fix download routines in Pakfire if behind upstream proxy Peter Müller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox