5 Utility functions for process-upload
7 @contact: Debian FTP Master <ftpmaster@debian.org>
8 @copyright: 2000, 2001, 2002, 2003, 2004, 2005, 2006 James Troup <james@nocrew.org>
9 @copyright: 2009 Joerg Jaspert <joerg@debian.org>
10 @copyright: 2009 Mark Hymers <mhy@debian.org>
11 @license: GNU General Public License version 2 or later
14 # This program is free software; you can redistribute it and/or modify
15 # it under the terms of the GNU General Public License as published by
16 # the Free Software Foundation; either version 2 of the License, or
17 # (at your option) any later version.
19 # This program is distributed in the hope that it will be useful,
20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 # GNU General Public License for more details.
24 # You should have received a copy of the GNU General Public License
25 # along with this program; if not, write to the Free Software
26 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 from shutil import copyfile
31 from daklib import utils
32 from daklib.dbconn import *
33 from daklib.config import Config
35 ################################################################################
37 def package_to_suite(u, suite_name, session):
38 if suite_name not in u.pkg.changes["distribution"]:
41 if 'source' in u.pkg.changes["architecture"]:
44 q = session.query(Suite).filter_by(suite_name = suite_name). \
45 filter(Suite.sources.any( \
46 source = u.pkg.changes['source'], \
47 version = u.pkg.changes['version']))
49 # NB: Careful, this logic isn't what you would think it is
50 # Source is already in the target suite so no need to go to policy
51 # Instead, we don't move to the policy area, we just do an ACCEPT
57 def package_to_queue(u, summary, short_summary, queue, chg, session, announce=None):
61 print "Moving to %s policy queue" % queue.queue_name.upper()
62 u.logger.log(["Moving to %s" % queue.queue_name, u.pkg.changes_file])
64 u.move_to_queue(queue)
65 chg.in_queue_id = queue.policy_queue_id
68 # send to build queues
69 if queue.send_to_build_queues:
70 for suite_name in u.pkg.changes["distribution"].keys():
71 suite = get_suite(suite_name, session)
72 for q in suite.copy_queues:
73 q.add_changes_from_policy_queue(queue, chg)
77 # Check for override disparities
80 # Send accept mail, announce to lists and close bugs
82 template = os.path.join(cnf["Dir::Templates"], announce)
84 mail_message = utils.TemplateSubst(u.Subst, template)
85 utils.send_mail(mail_message)
86 u.announce(short_summary, True)
88 ################################################################################
91 session = DBConn().session()
93 # If we dont have the disembargo queue we are not on security and so not interested
94 # in doing any security queue handling
95 disembargo_queue = get_policy_queue("unembargoed")
96 if not disembargo_queue:
99 # If we already are in newstage, then it means this just got passed through and accepted
100 # by a security team member. Don't try to accept it for disembargo again
101 dbc = get_dbchange(u.pkg.changes_file, session)
102 if dbc and dbc.in_queue.queue_name in [ 'newstage' ]:
105 q = session.execute("SELECT package FROM disembargo WHERE package = :source AND version = :version",
106 {'source': u.pkg.changes["source"],
107 'version': u.pkg.changes["version"]})
112 # Ensure we don't have a / on the end or something
113 disdir = os.path.abspath(disembargo_queue.path)
117 if u.pkg.directory == disdir:
118 if u.pkg.changes["architecture"].has_key("source"):
119 session.execute("INSERT INTO disembargo (package, version) VALUES (:source, :version)",
120 {'source': u.pkg.changes["source"],
121 'version': u.pkg.changes["version"]})
130 def do_unembargo(u, summary, short_summary, chg, session=None):
131 polq=get_policy_queue('unembargoed')
132 package_to_queue(u, summary, short_summary,
136 #################################################################################
139 # if we are the security archive, we always have a embargo queue and its the
140 # last in line, so if that exists, return true
141 # Of course do not return true when we accept from out of newstage, as that means
142 # it just left embargo and we want it in the archive
143 if get_policy_queue('embargoed'):
144 session = DBConn().session()
145 dbc = get_dbchange(u.pkg.changes_file, session)
146 if dbc and dbc.in_queue.queue_name in [ 'newstage' ]:
151 def do_embargo(u, summary, short_summary, chg, session=None):
152 polq=get_policy_queue('embargoed')
153 package_to_queue(u, summary, short_summary,
157 ################################################################################
159 def is_autobyhand(u):
164 for f in u.pkg.files.keys():
165 if u.pkg.files[f].has_key("byhand"):
168 # filename is of form "PKG_VER_ARCH.EXT" where PKG, VER and ARCH
169 # don't contain underscores, and ARCH doesn't contain dots.
170 # further VER matches the .changes Version:, and ARCH should be in
171 # the .changes Architecture: list.
176 (pckg, ver, archext) = f.split("_", 2)
177 if archext.count(".") < 1 or u.pkg.changes["version"] != ver:
181 ABH = cnf.subtree("AutomaticByHandPackages")
182 if not ABH.has_key(pckg) or \
183 ABH["%s::Source" % (pckg)] != u.pkg.changes["source"]:
184 print "not match %s %s" % (pckg, u.pkg.changes["source"])
188 (arch, ext) = archext.split(".", 1)
189 if arch not in u.pkg.changes["architecture"]:
193 u.pkg.files[f]["byhand-arch"] = arch
194 u.pkg.files[f]["byhand-script"] = ABH["%s::Script" % (pckg)]
196 return any_auto and all_auto
198 def do_autobyhand(u, summary, short_summary, chg, session):
199 print "Attempting AUTOBYHAND."
201 for f, entry in u.pkg.files.items():
204 if not entry.has_key("byhand"):
207 if not entry.has_key("byhand-script"):
211 os.system("ls -l %s" % byhandfile)
213 result = os.system("%s %s %s %s %s" % (
214 entry["byhand-script"],
216 u.pkg.changes["version"],
217 entry["byhand-arch"],
218 os.path.abspath(u.pkg.changes_file)))
221 os.unlink(byhandfile)
224 print "Error processing %s, left as byhand." % (f)
228 do_byhand(u, summary, short_summary, chg, session)
230 u.accept(summary, short_summary, session)
233 ################################################################################
236 for f in u.pkg.files.keys():
237 if u.pkg.files[f].has_key("byhand"):
241 def do_byhand(u, summary, short_summary, chg, session):
242 return package_to_queue(u, summary, short_summary,
243 get_policy_queue('byhand'), chg, session,
246 ################################################################################
249 for f in u.pkg.files.keys():
250 if u.pkg.files[f].has_key("new"):
254 def acknowledge_new(u, summary, short_summary, chg, session):
257 print "Moving to NEW queue."
258 u.logger.log(["Moving to new", u.pkg.changes_file])
260 q = get_policy_queue('new', session)
263 chg.in_queue_id = q.policy_queue_id
267 print "Sending new ack."
268 template = os.path.join(cnf["Dir::Templates"], 'process-unchecked.new')
270 u.Subst["__SUMMARY__"] = summary
271 new_ack_message = utils.TemplateSubst(u.Subst, template)
272 utils.send_mail(new_ack_message)
274 ################################################################################
276 # FIXME: queues should be able to get autobuild
277 # the current logic doesnt allow this, as buildd stuff is AFTER accept...
278 # embargo/disembargo use a workaround due to this
279 # q-unapproved hax0ring
281 "new": { "is": is_new, "process": acknowledge_new },
282 "autobyhand" : { "is" : is_autobyhand, "process": do_autobyhand },
283 "byhand" : { "is": is_byhand, "process": do_byhand },
284 "embargoed" : { "is": is_embargo, "process": do_embargo },
285 "unembargoed" : { "is": is_unembargo, "process": do_unembargo },
288 def determine_target(u):
291 # Statically handled queues
294 for q in ["autobyhand", "byhand", "new", "unembargoed", "embargoed"]:
295 if QueueInfo[q]["is"](u):
301 ###############################################################################