]> git.decadent.org.uk Git - dak.git/blob - dak/dakdb/update10.py
add update to fix up src_uploaders
[dak.git] / dak / dakdb / update10.py
1 #!/usr/bin/env python
2 # coding=utf8
3
4 """
5 Pending contents disinguished by arch
6
7 @contact: Debian FTP Master <ftpmaster@debian.org>
8 @copyright: 2009  Mark Hymers <mhy@debian.org>
9 @license: GNU General Public License version 2 or later
10 """
11
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
16
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 # GNU General Public License for more details.
21
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
25
26 ################################################################################
27
28 # * Ganneff ponders how to best write the text to -devel. (need to tell em in
29 #   case they find more bugs). "We fixed the fucking idiotic broken implementation
30 #   to be less so" is probably not the nicest, even if perfect valid, way to say so
31
32 ################################################################################
33
34 import psycopg2
35 import time
36 from daklib.dak_exceptions import DBUpdateError
37 from daklib.utils import get_conf
38
39 ################################################################################
40
41 def do_update(self):
42     print "Add constraints to src_uploaders"
43     Cnf = get_conf()
44
45     try:
46         c = self.db.cursor()
47         # Deal with out-of-date src_uploaders entries
48         c.execute("DELETE FROM src_uploaders WHERE source NOT IN (SELECT id FROM source)")
49         c.execute("DELETE FROM src_uploaders WHERE maintainer NOT IN (SELECT id FROM maintainer)")
50         # Add constraints
51         c.execute("ALTER TABLE src_uploaders ADD CONSTRAINT src_uploaders_maintainer FOREIGN KEY (maintainer) REFERENCES maintainer(id) ON DELETE CASCADE")
52         c.execute("ALTER TABLE src_uploaders ADD CONSTRAINT src_uploaders_source FOREIGN KEY (source) REFERENCES source(id) ON DELETE CASCADE")
53         c.execute("UPDATE config SET value = '10' WHERE name = 'db_revision'")
54         self.db.commit()
55
56     except psycopg2.ProgrammingError, msg:
57         self.db.rollback()
58         raise DBUpdateError, "Unable to apply suite config updates, rollback issued. Error message : %s" % (str(msg))