]> git.decadent.org.uk Git - dak.git/blob - dak/dakdb/update1.py
import latest bpo changes before merging its code around
[dak.git] / dak / dakdb / update1.py
1 #!/usr/bin/env python
2
3 """ Database Update Script - Saner DM db schema """
4 # Copyright (C) 2008  Michael Casadevall <mcasadevall@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 # <tomv_w> really, if we want to screw ourselves, let's find a better way.
23 # <Ganneff> rm -rf /srv/ftp.debian.org
24
25 ################################################################################
26
27 import psycopg2
28 import time
29 from daklib.dak_exceptions import DBUpdateError
30
31 ################################################################################
32
33 def do_update(self):
34     print "Adding DM fields to database"
35
36     try:
37         c = self.db.cursor()
38         c.execute("ALTER TABLE source ADD COLUMN dm_upload_allowed BOOLEAN DEFAULT 'no' NOT NULL;")
39         c.execute("ALTER TABLE keyrings ADD COLUMN debian_maintainer BOOLEAN DEFAULT 'false' NOT NULL;")
40
41         print "Migrating DM data to source table. This might take some time ..."
42
43         c.execute("UPDATE source SET dm_upload_allowed = 't' WHERE id IN (SELECT source FROM src_uploaders);")
44         c.execute("UPDATE config SET value = '1' WHERE name = 'db_revision'")
45
46         print "Migrating DM uids to normal uids"
47         c.execute("SELECT uid FROM uid WHERE uid  LIKE 'dm:%'")
48         rows = c.fetchall()
49         for r in rows:
50             uid = r[0]
51             c.execute("UPDATE uid SET uid = '%s' WHERE uid = '%s'" % (uid[3:], uid))
52
53         self.db.commit()
54
55         print "IMPORTANT: Set the debian_maintainer flag in the config file for keyrings that are DMs!"
56         print "           Failure to do so will result in DM's having full upload abilities!"
57         print "REMINDER: Remember to run the updated byhand-dm crontab to update Debian Maintainer information"
58         print ""
59         print "Pausing for five seconds ..."
60         time.sleep (5)
61
62     except psycopg2.ProgrammingError, msg:
63         self.db.rollback()
64         raise DBUpdateError, "Unable to appy DM table updates, rollback issued. Error message : %s" % (str(msg))