pkgs: update some packages
[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 os
21 import sys
22 import glob
23 import ConfigParser
24 import urllib2
25 from progressbar import Bar, ETA, FileTransferSpeed, Percentage, ProgressBar
26
27 # TODO:
28 #   - support win64
29
30 # TODO make OUTPUT_DIR and LANGCODE configurable from command line
31 OUTPUT_DIR = 'downloads'
32 LANGCODE = 'en-US'
33
34 # TODO PKG_DIR in $(datadir) or something like that for python projects
35 PKG_DIR = 'pkgs'
36 CHUNK_SIZE = 8192
37
38
39 def get_pkg(pkg_file):
40     config = ConfigParser.SafeConfigParser({'language': LANGCODE})
41     with open(pkg_file, mode='r') as f:
42         config.readfp(f)
43         pkg = dict(config.items('Package'))
44         basename = os.path.basename(pkg_file)
45         package_name = os.path.splitext(basename)[0]
46         pkg['package_name'] = package_name
47         f.close()
48         return pkg
49
50     return None
51
52
53 def process_all(path, cb):
54     listing = glob.glob(os.path.join(path, '*.ini'))
55     for pkg_file in listing:
56         pkg = get_pkg(pkg_file)
57         if not pkg:
58             sys.stderr.write("Error: cannot get a pkg for: %s\n" % pkg_file)
59             continue
60         cb(pkg)
61
62
63 def show(pkg):
64     print 'Package:  ', pkg['package_name']
65     print 'Program:  ', pkg['name']
66     if pkg.has_key('version'):
67         print 'Version:  ', pkg['version']
68     print 'Homepage: ', pkg['homepage']
69     print
70
71
72 def download_file(src_url, dest_dir):
73     try:
74         response = urllib2.urlopen(src_url)
75     except Exception, e:
76         if hasattr(e, 'reason'):
77             print 'Downloading from', src_url, 'failed. Reason: ', e.reason
78         elif hasattr(e, 'code'):
79             print 'Downloading from', src_url, 'failed. Error code: ', e.code
80         return
81
82     # get the final URL after possible redirect have been followed
83     url = response.geturl()
84
85     filename = ""
86
87     # From http://paste.pound-python.org/show/9545/
88     # TODO: use a proper module to parse HTTP headers
89     if 'Content-Disposition' in response.info() and len(response.info()['Content-Disposition'].split('filename=')) > 1:
90         # If the response has Content-Disposition, we take file name from it
91         filename = response.info()['Content-Disposition'].split('filename=')[1].decode('utf-8')
92         if filename[0] == '"' or filename[0] == "'":
93             filename = urllib2.unquote(filename.split('"')[1])
94     else:
95         filename = urllib2.unquote(url.split('/')[-1].decode('utf_8'))
96
97     if filename == "":
98         sys.stderr.write("Debug (%s): filename: %s url: %s\n" % (pkg['package_name'], filename, url))
99         return
100
101     # TODO: Add some integrity verification of downloaded files (md5, sha256?)
102
103     destfile = os.path.join(dest_dir, filename)
104     if os.path.exists(destfile):
105         # TODO: check if the file is a full download from previous run,
106         # if not download again discarding the existing file?
107         sys.stderr.write("Warning: %s exists!\n" % destfile)
108         return
109
110     outfile = open(destfile, mode='w')
111
112     total_size = response.info().getheader('Content-Length').strip()
113     total_size = int(total_size)
114
115     #widgets = [pkg['name'], ' ', Percentage(), ' ', Bar(marker='=', left='[', right=']'),
116     widgets = [filename, ' ', Percentage(), ' ', Bar(marker='=', left='[', right=']'),
117                ' ', ETA(), ' ', FileTransferSpeed()]
118     pbar = ProgressBar(widgets=widgets, maxval=total_size).start()
119
120     bytes_so_far = 0
121     while 1:
122         chunk = response.read(CHUNK_SIZE)
123         if not chunk:
124             break
125
126         bytes_so_far += len(chunk)
127         outfile.write(chunk)
128         pbar.update(bytes_so_far)
129     pbar.finish()
130
131     outfile.close()
132
133
134 def download(pkg):
135     pkg_url = pkg['url']
136     download_file(pkg_url, OUTPUT_DIR)
137
138
139 def show_all():
140     process_all(PKG_DIR, show)
141
142
143 def download_all():
144     if os.path.exists(OUTPUT_DIR) == False:
145         os.mkdir(OUTPUT_DIR, 0755)
146
147     process_all(PKG_DIR, download)
148
149
150 def usage():
151     usage = "winfreed - download a selection of Free Software for MS Windows.\n\n"
152     usage += "usage: %s <COMMAND>\n\n" % sys.argv[0]
153     usage += "COMMANDS:\n"
154     usage += "\tshow        Show info about all the available packages\n"
155     usage += "\tdownload    Download all the packages\n"
156     print usage
157
158 if __name__ == "__main__":
159
160     if len(sys.argv) < 2:
161         usage()
162         sys.exit(1)
163
164     if sys.argv[1] == 'download':
165         download_all()
166     elif sys.argv[1] == 'show':
167         show_all()
168     else:
169         usage()
170         sys.exit(1)
171
172     sys.exit(0)