1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
###############################################################################
##
## This script is coded for minimum version of Python 2.7 .
##
## Python3 is incompatible.
##
## Authors: konablend
##
###############################################################################
import errno
import hashlib
import json
import os
import re
import tempfile
import traceback
import urllib2
from optparse import OptionGroup
from optparse import OptionParser
from sys import stderr
from sys import stdout
from urlparse import urlparse
###############################################################################
class Fetch(object):
def __init__(self, options, urls):
if options.disable:
self.errln('fetching files from the network is disabled.')
self.options = options
self.urls = urls
if len(self.urls) > 1:
self.infof('\n')
self.verbosef('OPTIONS:\n')
self.verbosef(' disable: %s\n' % self.options.disable)
self.verbosef(' disable_md5: %s\n' % self.options.disable_md5)
self.verbosef(' config: %s\n' % self.options.config)
self.verbosef(' md5: %s\n' % self.options.md5)
self.verbosef(' output_dir: %s\n' % self.options.output_dir)
index = 0
for spec in self.options.accept_url:
self.verbosef(' accept_url[%d]: %s\n' % (index,spec))
index += 1
if not self.options.accept_url:
self.verbosef(' accept_url: %s\n' % None)
index = 0
for spec in self.options.deny_url:
self.verbosef(' deny_url[%d]: %s\n' % (index,spec))
index += 1
if not self.options.deny_url:
self.verbosef(' deny_url: %s\n' % None)
def run(self):
files = []
for url in self.urls:
files.append(self._process_url(url))
index = 0
for file in files:
file.dump(index)
index += 1
for file in files:
if file.run():
return
self.errln('download failed.')
def errln(self, format, *args):
s = (format % args)
if re.match( '^.*[!?:;.]$', s ):
stderr.write('ERROR: %s fetch stop.\n' % (s))
else:
stderr.write('ERROR: %s; fetch stop.\n' % (s))
exit(1)
def warnln(self, format, *args):
s = (format % args)
if re.match( '^.*[!?:;.]$', s ):
stderr.write('WARNING: %s fetch continuing.\n' % (s))
else:
stderr.write('WARNING: %s; fetch continuing.\n' % (s))
def infof(self, format, *args):
stdout.write(format % args)
def verbosef(self, format, *args):
if self.options.verbose:
stdout.write(format % args)
def _process_url(self, url):
props = {}
index = 0
while True:
m = re.match('(\[(\w+)=([^]]+)\])?(.*)', url[index:])
if not m.group(1):
break
props[m.group(2)] = m.group(3)
index += len(m.group(1))
return File(url[index:], **props)
###############################################################################
class File(object):
def __init__(self, url, **kwargs):
self.url = url
self.md5 = kwargs.get('md5', fetch.options.md5)
self.filename = os.path.join(fetch.options.output_dir,os.path.basename(urlparse(self.url).path))
self.active = True
self.active_descr = 'default'
self._accept()
self._deny()
def dump(self, index):
fetch.verbosef('URL[%d]: %s\n' % (index,self.url))
fetch.verbosef(' MD5: %s\n' % self.md5)
fetch.verbosef(' filename: %s\n' % self.filename)
fetch.verbosef(' active: %s (%s)\n' % ('yes' if self.active else 'no',self.active_descr))
def run(self):
if not self.active:
return False
try:
if self._download():
return True
except Exception, x:
if fetch.options.verbose:
traceback.print_exc()
fetch.warnln('%s' % x)
return False
def _accept(self):
if not fetch.options.accept_url:
return
index = 0
for spec in fetch.options.accept_url:
if re.match(spec, self.url):
self.active_descr = 'via accept rule %d: %s' % (index,spec)
return
index += 1
self.active = False
self.active_descr = 'no matching spec'
def _deny(self):
index = 0
for spec in fetch.options.deny_url:
if re.match(spec, self.url):
self.active = False
self.active_descr = 'via deny rule %d: %s' % (index,spec)
return
index += 1
def _download(self):
fetch.infof('downloading %s to %s\n' % (self.url,self.filename))
hasher = hashlib.md5()
ftmp = self.filename + '.' + os.path.basename(tempfile.mktemp())
r = urllib2.urlopen(self.url, None, 30)
try:
o = open(ftmp, 'w')
info = r.info()
try:
content_length = int(info.getheader('Content-Length'))
except:
content_length = None
data_total = 0
while True:
data = r.read(65536)
if not data:
break
o.write(data)
hasher.update(data)
data_total += len(data)
except:
os.unlink(ftmp)
finally:
for closeable in [r,o]:
try:
if not closeable:
continue
closeable.close()
except:
pass
if content_length and content_length != data_total:
fetch.warnln('expected %d bytes, got %d bytes' % (content_length,data_total))
os.unlink(ftmp)
return False
if not fetch.options.disable_md5 and self.md5 and self.md5 == hasher.hexdigest():
s = ' (verified)'
else:
s = ''
fetch.infof("downloaded '%s' - %d bytes - %s%s\n" % (self.filename,data_total,hasher.hexdigest(),s))
if not fetch.options.disable_md5 and self.md5 and self.md5 != hasher.hexdigest():
os.unlink(ftmp)
raise RuntimeError("expected MD5 hash '%s', got '%s'" % (self.md5, hasher.hexdigest()))
if os.access(self.filename, os.F_OK) and not os.access(self.filename, os.W_OK):
os.unlink(ftmp)
raise IOError(errno.EACCES, "Permission denied: '%s'" % self.filename)
try:
os.rename(ftmp,self.filename)
except:
os.unlink(ftmp)
return True
###############################################################################
def load_config(option, opt, value, parser):
with open(value, 'r') as file:
data = json.load(file)
parser.values.disable = data[0]
parser.values.disable_md5 = data[1]
parser.values.accept_url = data[2]
parser.values.deny_url = data[3]
###############################################################################
parser = OptionParser('usage: %prog [OPTIONS...] [URL...]')
parser.description = 'Fetch files from the network.'
parser.add_option('--verbose', default=False, action='store_true', help='increase verbosity')
parser.add_option('--config', default=None, action='callback', metavar='FILE', type='str', callback=load_config, help='specify configuration file')
parser.add_option('--disable', default=False, action='store_true', help='print disabled message and exit with error')
parser.add_option('--disable-md5', default=False, action='store_true', help='disable MD5 data error detection')
parser.add_option('--md5', default=None, action='store', metavar='HASH', help='set default MD5 hash value')
parser.add_option('--accept-url', default=[], action='append', metavar='SPEC', help='accept URL regex pattern')
parser.add_option('--deny-url', default=[], action='append', metavar='SPEC', help='deny URL regex pattern')
parser.add_option('--output-dir', default='', action='store', help='specify output directory')
fetch = Fetch(*parser.parse_args())
fetch.run()
|