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