-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmake-prefetch.py
executable file
·174 lines (134 loc) · 4.13 KB
/
make-prefetch.py
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
#!/usr/bin/env python
from __future__ import print_function
try:
from urllib.parse import urlparse
from urllib.request import urlopen
except ImportError:
from urlparse import urlparse
from urllib2 import urlopen
from argparse import ArgumentParser
import hashlib
import os
import sys
usage = """make-prefetch.py [options] <file or url>
Create a prefetch statement for BigFix ActionScript
Options:
-a, --algorithm ALGORITHM Hash algorithm to use (all, sha1, sha256)
default: all
-n, --name NAME The name to use for the file
default: the name of the file
-u, --url URL The url to use for the file
default: the url of the file
-o, --output OUTPUT Output format (prefetch, davis, value)
default: prefetch
-h, --help Print this help message and exit
Examples:
Create a pretch statement from a URL
make-prefetch.py http://example.com/hello.txt
Create a prefetch statement from a file
make-prefetch.py hello.txt
Create a 9.0 style prefetch statement
make-prefetch.py --algorithm sha1 hello.txt
Create a 7.2 style prefetch statement
make-prefetch.py --algorithm sha1 --output davis hello.txt
"""
def hash_file(args):
f = open(args.file, 'rb')
sha1 = hashlib.sha1()
sha256 = hashlib.sha256()
while True:
chunk = f.read(4096)
if not chunk:
break
sha1.update(chunk)
sha256.update(chunk)
f.close()
return {
'name': os.path.basename(args.file),
'url': '',
'size': os.path.getsize(args.file),
'sha1': sha1.hexdigest(),
'sha256': sha256.hexdigest()
}
def hash_url(args):
response = urlopen(args.file)
size = 0
sha1 = hashlib.sha1()
sha256 = hashlib.sha256()
while True:
chunk = response.read(4096)
if not chunk:
break
size += len(chunk)
sha1.update(chunk)
sha256.update(chunk)
return {
'name': os.path.basename(urlparse(args.file).path),
'url': args.file,
'size': size,
'sha1': sha1.hexdigest(),
'sha256': sha256.hexdigest()
}
def prefetch_output(algorithm):
if args.algorithm == 'sha256':
return "prefetch {name} size:{size} {url} sha256:{sha256}"
if args.algorithm == 'sha1':
return "prefetch {name} sha1:{sha1} size:{size} {url}"
return "prefetch {name} sha1:{sha1} size:{size} {url} sha256:{sha256}"
def davis_output(algorithm):
if algorithm != 'all' and algorithm != 'sha1':
print("Algorithm {0} is not supported in davis downloads".format(algorithm),
file=sys.stderr)
sys.exit(2)
return ("begin prefetch block\n"
"add prefetch item name={name} sha1={sha1} size={size} url={url}\n"
"collect prefetch items\n"
"end prefetch block")
def value_output(algorithm):
if algorithm == 'sha1':
return "{sha1}"
if algorithm == 'sha256':
return "{sha256}"
print("You must specify a hash algorithm to use", file=sys.stderr)
sys.exit(2)
parser = ArgumentParser(add_help=False, usage=usage)
parser.add_argument('file')
parser.add_argument(
'-a',
'--algorithm',
choices=['all', 'sha1', 'sha256'],
default='all')
parser.add_argument(
'-o',
'--output',
choices=['value', 'davis', 'prefetch'],
default='prefetch')
parser.add_argument('-n', '--name', required=False)
parser.add_argument('-u', '--url', required=False)
if '-h' in sys.argv or '--help' in sys.argv:
print(usage)
sys.exit()
args = parser.parse_args()
if "://" in args.file:
file = hash_url(args)
else:
file = hash_file(args)
if args.name != None:
file['name'] = args.name
if file['name'] == '':
file['name'] = 'REPLACEME'
if args.url != None:
file['url'] = args.url
if file['url'] == '':
file['url'] = 'http://REPLACEME'
if args.output == 'value':
output = value_output(args.algorithm)
elif args.output == 'davis':
output = davis_output(args.algorithm)
else:
output = prefetch_output(args.algorithm)
print(output.format(name=file['name'],
size=file['size'],
url=file['url'],
sha1=file['sha1'],
sha256=file['sha256']))