add status, exists and getHeaders to net and cache, fix timeout bug in cache, now timeouts other then default actually work
This commit is contained in:
parent
87901cc20e
commit
a883b62405
2 changed files with 74 additions and 11 deletions
|
@ -5,8 +5,10 @@ import os
|
||||||
import sha
|
import sha
|
||||||
import time
|
import time
|
||||||
import urlparse
|
import urlparse
|
||||||
|
import urllib2
|
||||||
|
|
||||||
import chardet
|
import chardet
|
||||||
|
import simplejson
|
||||||
|
|
||||||
import net
|
import net
|
||||||
from net import DEFAULT_HEADERS
|
from net import DEFAULT_HEADERS
|
||||||
|
@ -14,6 +16,38 @@ from net import DEFAULT_HEADERS
|
||||||
|
|
||||||
cache_timeout = 30*24*60*60 # default is 30 days
|
cache_timeout = 30*24*60*60 # default is 30 days
|
||||||
|
|
||||||
|
def status(url, data=None, headers=DEFAULT_HEADERS, timeout=cache_timeout):
|
||||||
|
headers = getHeaders(url, data, headers)
|
||||||
|
return int(headers['status'])
|
||||||
|
|
||||||
|
def exists(url, data=None, headers=DEFAULT_HEADERS, timeout=cache_timeout):
|
||||||
|
s = status(url, data, headers, timeout)
|
||||||
|
if s >= 200 and s < 400:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
def getHeaders(url, data=None, headers=DEFAULT_HEADERS, timeout=cache_timeout):
|
||||||
|
url_cache_file = "%s.headers" % getUrlCacheFile(url, data, headers)
|
||||||
|
url_headers = loadUrlCache(url_cache_file, timeout)
|
||||||
|
if url_headers:
|
||||||
|
url_headers = simplejson.loads(url_headers)
|
||||||
|
else:
|
||||||
|
url_headers = net.getHeaders(url, data, headers)
|
||||||
|
saveUrlHeaders(url_cache_file, url_headers)
|
||||||
|
return url_headers
|
||||||
|
|
||||||
|
def getUrl(url, data=None, headers=DEFAULT_HEADERS, timeout=cache_timeout):
|
||||||
|
url_cache_file = getUrlCacheFile(url, data, headers)
|
||||||
|
result = loadUrlCache(url_cache_file, timeout)
|
||||||
|
if not result:
|
||||||
|
try:
|
||||||
|
url_headers, result = net.getUrl(url, data, headers, returnHeaders=True)
|
||||||
|
except urllib2.HTTPError, e:
|
||||||
|
url_headers = dict(e.headers)
|
||||||
|
result = e.read()
|
||||||
|
saveUrlCache(url_cache_file, result, url_headers)
|
||||||
|
return result
|
||||||
|
|
||||||
def getUrlUnicode(url):
|
def getUrlUnicode(url):
|
||||||
data = getUrl(url)
|
data = getUrl(url)
|
||||||
encoding = chardet.detect(data)['encoding']
|
encoding = chardet.detect(data)['encoding']
|
||||||
|
@ -21,14 +55,6 @@ def getUrlUnicode(url):
|
||||||
encoding = 'latin-1'
|
encoding = 'latin-1'
|
||||||
return unicode(data, encoding)
|
return unicode(data, encoding)
|
||||||
|
|
||||||
def getUrl(url, data=None, headers=DEFAULT_HEADERS, timeout=cache_timeout):
|
|
||||||
url_cache_file = getUrlCacheFile(url, data, headers)
|
|
||||||
result = loadUrlCache(url_cache_file, timeout)
|
|
||||||
if not result:
|
|
||||||
result = net.getUrl(url, data, headers)
|
|
||||||
saveUrlCache(url_cache_file, result)
|
|
||||||
return result
|
|
||||||
|
|
||||||
def getCacheBase():
|
def getCacheBase():
|
||||||
'cache base is eather ~/.ox/cache or can set via env variable oxCACHE'
|
'cache base is eather ~/.ox/cache or can set via env variable oxCACHE'
|
||||||
return os.environ.get('oxCACHE', os.path.expanduser('~/.ox/cache'))
|
return os.environ.get('oxCACHE', os.path.expanduser('~/.ox/cache'))
|
||||||
|
@ -41,7 +67,7 @@ def getUrlCacheFile(url, data=None, headers=DEFAULT_HEADERS):
|
||||||
domain = ".".join(urlparse.urlparse(url)[1].split('.')[-2:])
|
domain = ".".join(urlparse.urlparse(url)[1].split('.')[-2:])
|
||||||
return os.path.join(getCacheBase(), domain, url_hash[:2], url_hash[2:4], url_hash[4:6], url_hash)
|
return os.path.join(getCacheBase(), domain, url_hash[:2], url_hash[2:4], url_hash[4:6], url_hash)
|
||||||
|
|
||||||
def loadUrlCache(url_cache_file, data, timeout=cache_timeout):
|
def loadUrlCache(url_cache_file, timeout=cache_timeout):
|
||||||
if timeout <= 0:
|
if timeout <= 0:
|
||||||
return None
|
return None
|
||||||
if os.path.exists(url_cache_file):
|
if os.path.exists(url_cache_file):
|
||||||
|
@ -55,11 +81,20 @@ def loadUrlCache(url_cache_file, data, timeout=cache_timeout):
|
||||||
return data
|
return data
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def saveUrlCache(url_cache_file, data):
|
def saveUrlCache(url_cache_file, data, headers):
|
||||||
folder = os.path.dirname(url_cache_file)
|
folder = os.path.dirname(url_cache_file)
|
||||||
if not os.path.exists(folder):
|
if not os.path.exists(folder):
|
||||||
os.makedirs(folder)
|
os.makedirs(folder)
|
||||||
f = open(url_cache_file, 'w')
|
f = open(url_cache_file, 'w')
|
||||||
f.write(data)
|
f.write(data)
|
||||||
f.close()
|
f.close()
|
||||||
|
saveUrlHeaders("%s.headers" % url_cache_file, headers)
|
||||||
|
|
||||||
|
def saveUrlHeaders(url_cache_file, headers):
|
||||||
|
folder = os.path.dirname(url_cache_file)
|
||||||
|
if not os.path.exists(folder):
|
||||||
|
os.makedirs(folder)
|
||||||
|
f = open(url_cache_file, 'w')
|
||||||
|
f.write(simplejson.dumps(headers))
|
||||||
|
f.close()
|
||||||
|
|
||||||
|
|
|
@ -14,17 +14,45 @@ DEFAULT_HEADERS = {
|
||||||
'Accept-Encoding': 'gzip'
|
'Accept-Encoding': 'gzip'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def status(url, data=None, headers=DEFAULT_HEADERS):
|
||||||
|
try:
|
||||||
|
f = openUrl(url, data, headers)
|
||||||
|
s = f.code
|
||||||
|
except urllib2.HTTPError, e:
|
||||||
|
s = e.code
|
||||||
|
return s
|
||||||
|
|
||||||
|
def exists(url, data=None, headers=DEFAULT_HEADERS):
|
||||||
|
s = status(url, data, headers)
|
||||||
|
if s >= 200 and s < 400:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
def getHeaders(url, data=None, headers=DEFAULT_HEADERS):
|
||||||
|
try:
|
||||||
|
f = openUrl(url, data, headers)
|
||||||
|
f.headers['Status'] = "%s" % f.code
|
||||||
|
headers = f.headers
|
||||||
|
f.close()
|
||||||
|
except urllib2.HTTPError, e:
|
||||||
|
e.headers['Status'] = "%s" % e.code
|
||||||
|
headers = e.headers
|
||||||
|
return dict(headers)
|
||||||
|
|
||||||
def openUrl(url, data=None, headers=DEFAULT_HEADERS):
|
def openUrl(url, data=None, headers=DEFAULT_HEADERS):
|
||||||
url = url.replace(' ', '%20')
|
url = url.replace(' ', '%20')
|
||||||
req = urllib2.Request(url, data, headers)
|
req = urllib2.Request(url, data, headers)
|
||||||
return urllib2.urlopen(req)
|
return urllib2.urlopen(req)
|
||||||
|
|
||||||
def getUrl(url, data=None, headers=DEFAULT_HEADERS):
|
def getUrl(url, data=None, headers=DEFAULT_HEADERS, returnHeaders=False):
|
||||||
f = openUrl(url, data, headers)
|
f = openUrl(url, data, headers)
|
||||||
data = f.read()
|
data = f.read()
|
||||||
f.close()
|
f.close()
|
||||||
if f.headers.get('content-encoding', None) == 'gzip':
|
if f.headers.get('content-encoding', None) == 'gzip':
|
||||||
data = gzip.GzipFile(fileobj=StringIO.StringIO(data)).read()
|
data = gzip.GzipFile(fileobj=StringIO.StringIO(data)).read()
|
||||||
|
if returnHeaders:
|
||||||
|
f.headers['Status'] = "%s" % f.code
|
||||||
|
return dict(f.headers), data
|
||||||
return data
|
return data
|
||||||
|
|
||||||
def getUrlUnicode(url):
|
def getUrlUnicode(url):
|
||||||
|
|
Loading…
Reference in a new issue