[Kimchi-devel] [PATCH v2 2/3] Fix verification of remote ISO

Christy Perez christy at linux.vnet.ibm.com
Fri Aug 8 19:34:35 UTC 2014


Currently the entire ISO is grabbed, which times out.
Use httplib to connect to the server and just get
the head of the http object.

Signed-off-by: Christy Perez <christy at linux.vnet.ibm.com>
---
 src/kimchi/utils.py | 21 +++++++++++++++------
 1 file changed, 15 insertions(+), 6 deletions(-)

diff --git a/src/kimchi/utils.py b/src/kimchi/utils.py
index 9ed8802..4ab0435 100644
--- a/src/kimchi/utils.py
+++ b/src/kimchi/utils.py
@@ -26,11 +26,11 @@
 import re
 import subprocess
 import traceback
-import urllib2
 import xml.etree.ElementTree as ET
+from httplib import HTTPConnection, HTTPException
 from multiprocessing import Process, Queue
 from threading import Timer
-
+from urlparse import urlparse
 from cherrypy.lib.reprconf import Parser
 
 from kimchi.asynctask import AsyncTask
@@ -138,14 +138,23 @@ def import_module(module_name):
     return __import__(module_name, globals(), locals(), [''])
 
 
+def url_to_fqdn(path):
+    parse_result = urlparse(path)
+    return parse_result.netloc
+
+
 def check_url_path(path):
     try:
-        code = urllib2.urlopen(path).getcode()
-        if code != 200:
+        server_name = url_to_fqdn(path)
+        conn = HTTPConnection(server_name)
+        # Don't try to get the whole file:
+        conn.request('HEAD', path)
+        response = conn.getresponse()
+        conn.close()
+        if response.status != 200:
             return False
-    except (urllib2.URLError, ValueError):
+    except (HTTPException, IOError, ValueError):
         return False
-
     return True
 
 
-- 
1.9.3




More information about the Kimchi-devel mailing list