winfreed.py: differentiate between pkg_url and actual url
[winfreed.git] / winfreed.py
1 #!/usr/bin/env python
2 #
3 # winfreed - download a selection of Free Software for MS Windows.
4 #
5 # Copyright (C) 2011  Antonio Ospite <ospite@studenti.unina.it>
6 #
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 import re
21 import os
22 import sys
23 import glob
24 import json
25 import urllib2
26 from progressbar import Bar, ETA, FileTransferSpeed, Percentage, ProgressBar
27
28 # TODO make OUTPUT_DIR and LANGCODE configurable from command line
29 OUTPUT_DIR = 'downloads'
30 LANGCODE = 'en-US'
31
32 # TODO PKG_DIR in $(datadir) or something like that for python projects
33 PKG_DIR = 'pkgs'
34 CHUNK_SIZE = 8192
35
36
37 def get_pkg(json_file):
38     with open(json_file, mode='r') as f:
39         pkg = json.load(f)
40         basename = os.path.basename(json_file)
41         package_name = os.path.splitext(basename)[0]
42         pkg['package_name'] = package_name
43         f.close()
44         return pkg
45
46     return None
47
48
49 def process_all(path, cb):
50     listing = glob.glob(os.path.join(path, '*.json'))
51     for json_file in listing:
52         pkg = get_pkg(json_file)
53         if not pkg:
54             sys.stderr.write("Error: cannot get a pkg for: %s\n" % json_file)
55             continue
56         cb(pkg)
57
58
59 def show(pkg):
60     print 'Package:  ', pkg['package_name']
61     print 'Program:  ', pkg['name']
62     print 'Homepage: ', pkg['homepage']
63     print
64
65
66 def download(pkg):
67     # the "%s" in URLs are meant to be replaced with LANGCODE
68     try:
69         pkg_url = pkg['URL'] % LANGCODE
70     except:
71         pkg_url = pkg['URL']
72         pass
73
74     response = urllib2.urlopen(pkg_url)
75     url = response.geturl()
76
77     filename = ""
78     if 'Content-Disposition' in  response.info():
79         # Use the filename the server tells us if any,
80         # re pattern from http://stackoverflow.com/questions/8035900
81         content_disposition = response.info().getheader('Content-Disposition').strip()
82         filename = re.findall("filename=(\S+)", content_disposition)[0]
83
84     if filename == "":
85         filename = urllib2.unquote(os.path.basename(response.geturl()))
86
87     if filename == "":
88         sys.stderr.write("Debug (%s): filename: %s url: %s\n" % (pkg['package_name'], filename, url))
89         return
90
91     destfile = os.path.join(OUTPUT_DIR, filename)
92     if os.path.exists(destfile):
93         sys.stderr.write("Warning (%s): %s exists!\n" % (pkg['package_name'], destfile))
94         return
95
96     outfile = open(destfile, mode='w')
97
98     total_size = response.info().getheader('Content-Length').strip()
99     total_size = int(total_size)
100
101     widgets = [pkg['name'], ' ', Percentage(), ' ', Bar(marker='=', left='[', right=']'),
102                ' ', ETA(), ' ', FileTransferSpeed()]
103     pbar = ProgressBar(widgets=widgets, maxval=total_size).start()
104
105     bytes_so_far = 0
106     while 1:
107         chunk = response.read(CHUNK_SIZE)
108         if not chunk:
109             break
110
111         bytes_so_far += len(chunk)
112         outfile.write(chunk)
113         pbar.update(bytes_so_far)
114     pbar.finish()
115
116
117 def show_all():
118     process_all(PKG_DIR, show)
119
120
121 def download_all():
122     if os.path.exists(OUTPUT_DIR) == False:
123         os.mkdir(OUTPUT_DIR, 0755)
124
125     process_all(PKG_DIR, download)
126
127
128 def usage():
129     usage = "winfreed - download a selection of Free Software for MS Windows.\n\n"
130     usage += "usage: %s <COMMAND>\n\n" % sys.argv[0]
131     usage += "COMMANDS:\n"
132     usage += "\tshow        Show info about all the available packages\n"
133     usage += "\tdownload    Download all the packages\n"
134     print usage
135
136 if __name__ == "__main__":
137
138     if len(sys.argv) < 2:
139         usage()
140         sys.exit(1)
141
142     if sys.argv[1] == 'download':
143         download_all()
144     elif sys.argv[1] == 'show':
145         show_all()
146     else:
147         usage()
148         sys.exit(1)
149
150     sys.exit(0)