]> git.decadent.org.uk Git - dak.git/blob - dak/show_new.py
Get syntax right
[dak.git] / dak / show_new.py
1 #!/usr/bin/env python
2
3 """ Output html for packages in NEW """
4 # Copyright (C) 2007, 2009 Joerg Jaspert <joerg@debian.org>
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 ################################################################################
21
22 # <elmo> I'm James Troup, long term source of all evil in Debian. you may
23 #        know me from such debian-devel-announce gems as "Serious
24 #        Problems With ...."
25
26 ################################################################################
27
28 from copy import copy
29 import os, sys, time
30 import apt_pkg
31 import examine_package
32
33 from daklib.dbconn import *
34 from daklib.queue import determine_new, check_valid, Upload, get_policy_queue
35 from daklib import utils
36 from daklib.regexes import re_source_ext
37 from daklib.config import Config
38 from daklib import daklog
39 from daklib.changesutils import *
40 from daklib.dakmultiprocessing import DakProcessPool
41
42 # Globals
43 Cnf = None
44 Options = None
45 sources = set()
46
47
48 ################################################################################
49 ################################################################################
50 ################################################################################
51
52 def html_header(name, filestoexamine):
53     if name.endswith('.changes'):
54         name = ' '.join(name.split('_')[:2])
55     result = """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
56 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
57   <head>
58     <meta http-equiv="content-type" content="text/xhtml+xml; charset=utf-8"
59     />
60     <title>%(name)s - Debian NEW package overview</title>
61     <link type="text/css" rel="stylesheet" href="/style.css" />
62     <link rel="shortcut icon" href="http://www.debian.org/favicon.ico" />
63     <script type="text/javascript">
64       //<![CDATA[
65       <!--
66       function toggle(id, initial, display) {
67         var o = document.getElementById(id);
68         toggleObj(o, initial, display);
69       }
70       function show(id, display) {
71         var o = document.getElementById(id);
72         o.style.display = 'table-row-group';
73       }
74       function toggleObj(o, initial, display) {
75         if(! o.style.display)
76           o.style.display = initial;
77         if(o.style.display == display) {
78           o.style.display = "none";
79         } else {
80           o.style.display = display;
81         }
82       }
83       //-->
84       //]]>
85     </script>
86   </head>
87   <body id="NEW-details-page">
88     <div id="logo">
89       <a href="http://www.debian.org/">
90         <img src="http://www.debian.org/logos/openlogo-nd-50.png"
91         alt="debian logo" /></a>
92       <a href="http://www.debian.org/">
93         <img src="http://www.debian.org/Pics/debian.png"
94         alt="Debian Project" /></a>
95     </div>
96     <div id="titleblock">
97       <img src="http://www.debian.org/Pics/red-upperleft.png"
98       id="red-upperleft" alt="corner image"/>
99       <img src="http://www.debian.org/Pics/red-lowerleft.png"
100       id="red-lowerleft" alt="corner image"/>
101       <img src="http://www.debian.org/Pics/red-upperright.png"
102       id="red-upperright" alt="corner image"/>
103       <img src="http://www.debian.org/Pics/red-lowerright.png"
104       id="red-lowerright" alt="corner image"/>
105       <span class="title">
106         Debian NEW package overview for %(name)s
107       </span>
108     </div>
109
110     """%{"name":name}
111
112     # we assume only one source (.dsc) per changes here
113     result += """
114     <div id="menu">
115       <p class="title">Navigation</p>
116       <p><a href="#changes" onclick="show('changes-body')">.changes</a></p>
117       <p><a href="#dsc" onclick="show('dsc-body')">.dsc</a></p>
118       <p><a href="#source-lintian" onclick="show('source-lintian-body')">source lintian</a></p>
119
120 """
121     for fn in filter(lambda x: x.endswith('.deb') or x.endswith('.udeb'),filestoexamine):
122         packagename = fn.split('_')[0]
123         result += """
124         <p class="subtitle">%(pkg)s</p>
125         <p><a href="#binary-%(pkg)s-control" onclick="show('binary-%(pkg)s-control-body')">control file</a></p>
126         <p><a href="#binary-%(pkg)s-lintian" onclick="show('binary-%(pkg)s-lintian-body')">binary lintian</a></p>
127         <p><a href="#binary-%(pkg)s-contents" onclick="show('binary-%(pkg)s-contents-body')">.deb contents</a></p>
128         <p><a href="#binary-%(pkg)s-copyright" onclick="show('binary-%(pkg)s-copyright-body')">copyright</a></p>
129         <p><a href="#binary-%(pkg)s-file-listing" onclick="show('binary-%(pkg)s-file-listing-body')">file listing</a></p>
130
131 """%{"pkg":packagename}
132     result += "    </div>"
133     return result
134
135 def html_footer():
136     result = """    <p class="validate">Timestamp: %s (UTC)</p>
137 """% (time.strftime("%d.%m.%Y / %H:%M:%S", time.gmtime()))
138     result += """    <p><a href="http://validator.w3.org/check?uri=referer">
139       <img src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"
140       style="border: none; height: 31px; width: 88px" /></a>
141     <a href="http://jigsaw.w3.org/css-validator/check/referer">
142       <img src="http://jigsaw.w3.org/css-validator/images/vcss"
143       alt="Valid CSS!" style="border: none; height: 31px; width: 88px" /></a>
144     </p>
145   </body>
146 </html>
147 """
148     return result
149
150 ################################################################################
151
152
153 def do_pkg(changes_file):
154     session = DBConn().session()
155     u = Upload()
156     u.pkg.changes_file = changes_file
157     (u.pkg.changes["fingerprint"], rejects) = utils.check_signature(changes_file)
158     u.load_changes(changes_file)
159     new_queue = get_policy_queue('new', session );
160     u.pkg.directory = new_queue.path
161     u.update_subst()
162     origchanges = os.path.abspath(u.pkg.changes_file)
163     files = u.pkg.files
164     changes = u.pkg.changes
165     htmlname = changes["source"] + "_" + changes["version"] + ".html"
166     sources.add(htmlname)
167
168     htmlfile = os.path.join(cnf["Show-New::HTMLPath"], htmlname)
169     if os.path.exists(htmlfile) and \
170         os.stat(htmlfile).st_mtime > os.stat(origchanges).st_mtime:
171             session.close()
172             return (PROC_STATUS_SUCCESS, '%s already up-to-date' % htmlfile)
173
174     for deb_filename, f in files.items():
175         if deb_filename.endswith(".udeb") or deb_filename.endswith(".deb"):
176             u.binary_file_checks(deb_filename, session)
177             u.check_binary_against_db(deb_filename, session)
178         else:
179             u.source_file_checks(deb_filename, session)
180             u.check_source_against_db(deb_filename, session)
181     u.pkg.changes["suite"] = u.pkg.changes["distribution"]
182
183     new, byhand = determine_new(u.pkg.changes_file, u.pkg.changes, files, 0, dsc=u.pkg.dsc, session=session)
184
185     outfile = open(os.path.join(cnf["Show-New::HTMLPath"],htmlname),"w")
186
187     filestoexamine = []
188     for pkg in new.keys():
189         for fn in new[pkg]["files"]:
190             filestoexamine.append(fn)
191
192     print >> outfile, html_header(changes["source"], filestoexamine)
193
194     check_valid(new, session)
195     distribution = changes["distribution"].keys()[0]
196     print >> outfile, examine_package.display_changes(distribution, changes_file)
197
198     for fn in filter(lambda fn: fn.endswith(".dsc"), filestoexamine):
199         print >> outfile, examine_package.check_dsc(distribution, fn, session)
200     for fn in filter(lambda fn: fn.endswith(".deb") or fn.endswith(".udeb"), filestoexamine):
201         print >> outfile, examine_package.check_deb(distribution, fn, session)
202
203     print >> outfile, html_footer()
204
205     outfile.close()
206     session.close()
207
208     return (PROC_STATUS_SUCCESS, '%s already updated' % htmlfile)
209
210 ################################################################################
211
212 def usage (exit_code=0):
213     print """Usage: dak show-new [OPTION]... [CHANGES]...
214   -h, --help                show this help and exit.
215   -p, --html-path [path]    override output directory.
216   """
217     sys.exit(exit_code)
218
219 ################################################################################
220
221 def init(session):
222     global cnf, Options
223
224     cnf = Config()
225
226     Arguments = [('h',"help","Show-New::Options::Help"),
227                  ("p","html-path","Show-New::HTMLPath","HasArg")]
228
229     for i in ["help"]:
230         if not cnf.has_key("Show-New::Options::%s" % (i)):
231             cnf["Show-New::Options::%s" % (i)] = ""
232
233     changes_files = apt_pkg.ParseCommandLine(cnf.Cnf,Arguments,sys.argv)
234     if len(changes_files) == 0:
235         new_queue = get_policy_queue('new', session );
236         changes_files = utils.get_changes_files(new_queue.path)
237
238     Options = cnf.SubTree("Show-New::Options")
239
240     if Options["help"]:
241         usage()
242
243     return changes_files
244
245
246 ################################################################################
247 ################################################################################
248
249 def main():
250     session = DBConn().session()
251     changes_files = init(session)
252
253     examine_package.use_html=1
254
255     pool = DakProcessPool()
256     for changes_file in changes_files:
257         changes_file = utils.validate_changes_file_arg(changes_file, 0)
258         if not changes_file:
259             continue
260         print "\n" + changes_file
261         pool.apply_async(do_pkg, (changes_file,))
262     pool.close()
263     pool.join()
264
265     files = set(os.listdir(cnf["Show-New::HTMLPath"]))
266     to_delete = filter(lambda x: x.endswith(".html"), files.difference(sources))
267     for f in to_delete:
268         os.remove(os.path.join(cnf["Show-New::HTMLPath"],f))
269
270 ################################################################################
271
272 if __name__ == '__main__':
273     main()