]> git.decadent.org.uk Git - dak.git/blob - dak/override.py
Fix logging import
[dak.git] / dak / override.py
1 #!/usr/bin/env python
2
3 # Microscopic modification and query tool for overrides in projectb
4 # Copyright (C) 2004, 2006  Daniel Silverstone <dsilvers@digital-scurf.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 ## So line up your soldiers and she'll shoot them all down
23 ## Coz Alisha Rules The World
24 ## You think you found a dream, then it shatters and it seems,
25 ## That Alisha Rules The World
26 ################################################################################
27
28 import pg, sys
29 import apt_pkg
30 import daklib.logging
31 import daklib.database
32 import daklib.utils
33
34 ################################################################################
35
36 Cnf = None
37 projectB = None
38
39 ################################################################################
40
41 # Shamelessly stolen from 'dak rm'. Should probably end up in daklib.utils.py
42 def game_over():
43     answer = daklib.utils.our_raw_input("Continue (y/N)? ").lower()
44     if answer != "y":
45         print "Aborted."
46         sys.exit(1)
47
48
49 def usage (exit_code=0):
50     print """Usage: dak override [OPTIONS] package [section] [priority]
51 Make microchanges or microqueries of the overrides
52
53   -h, --help                 show this help and exit
54   -d, --done=BUG#            send priority/section change as closure to bug#
55   -n, --no-action            don't do anything
56   -s, --suite                specify the suite to use
57 """
58     sys.exit(exit_code)
59
60 def main ():
61     global Cnf, projectB
62
63     Cnf = daklib.utils.get_conf()
64
65     Arguments = [('h',"help","Override::Options::Help"),
66                  ('d',"done","Override::Options::Done", "HasArg"),
67                  ('n',"no-action","Override::Options::No-Action"),
68                  ('s',"suite","Override::Options::Suite", "HasArg"),
69                  ]
70     for i in ["help", "no-action"]:
71         if not Cnf.has_key("Override::Options::%s" % (i)):
72             Cnf["Override::Options::%s" % (i)] = ""
73     if not Cnf.has_key("Override::Options::Suite"):
74         Cnf["Override::Options::Suite"] = "unstable"
75
76     arguments = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
77     Options = Cnf.SubTree("Override::Options")
78
79     if Options["Help"]:
80         usage()
81
82     projectB = pg.connect(Cnf["DB::Name"], Cnf["DB::Host"], int(Cnf["DB::Port"]))
83     daklib.database.init(Cnf, projectB)
84
85     if not arguments:
86         daklib.utils.fubar("package name is a required argument.")
87
88     package = arguments.pop(0)
89     suite = Options["Suite"]
90     if arguments and len(arguments) > 2:
91         daklib.utils.fubar("Too many arguments")
92
93     if arguments and len(arguments) == 1:
94         # Determine if the argument is a priority or a section...
95         arg = arguments.pop()
96         q = projectB.query("""
97         SELECT ( SELECT COUNT(*) FROM section WHERE section=%s ) AS secs,
98                ( SELECT COUNT(*) FROM priority WHERE priority=%s ) AS prios
99                """ % ( pg._quote(arg,"str"), pg._quote(arg,"str")))
100         r = q.getresult()
101         if r[0][0] == 1:
102             arguments = (arg,".")
103         elif r[0][1] == 1:
104             arguments = (".",arg)
105         else:
106             daklib.utils.fubar("%s is not a valid section or priority" % (arg))
107
108
109     # Retrieve current section/priority...
110     q = projectB.query("""
111     SELECT priority.priority AS prio, section.section AS sect
112       FROM override, priority, section, suite
113      WHERE override.priority = priority.id
114        AND override.section = section.id
115        AND override.package = %s
116        AND override.suite = suite.id
117        AND suite.suite_name = %s
118     """ % (pg._quote(package,"str"), pg._quote(suite,"str")))
119
120     if q.ntuples() == 0:
121         daklib.utils.fubar("Unable to find package %s" % (package))
122     if q.ntuples() > 1:
123         daklib.utils.fubar("%s is ambiguous. Matches %d packages" % (package,q.ntuples()))
124
125     r = q.getresult()
126     oldsection = r[0][1]
127     oldpriority = r[0][0]
128
129     if not arguments:
130         print "%s is in section '%s' at priority '%s'" % (
131             package,oldsection,oldpriority)
132         sys.exit(0)
133
134     # At this point, we have a new section and priority... check they're valid...
135     newsection, newpriority = arguments
136
137     if newsection == ".":
138         newsection = oldsection
139     if newpriority == ".":
140         newpriority = oldpriority
141
142     q = projectB.query("SELECT id FROM section WHERE section=%s" % (
143         pg._quote(newsection,"str")))
144
145     if q.ntuples() == 0:
146         daklib.utils.fubar("Supplied section %s is invalid" % (newsection))
147     newsecid = q.getresult()[0][0]
148
149     q = projectB.query("SELECT id FROM priority WHERE priority=%s" % (
150         pg._quote(newpriority,"str")))
151
152     if q.ntuples() == 0:
153         daklib.utils.fubar("Supplied priority %s is invalid" % (newpriority))
154     newprioid = q.getresult()[0][0]
155
156     if newpriority == oldpriority and newsection == oldsection:
157         print "I: Doing nothing"
158         sys.exit(0)
159
160     # If we're in no-action mode
161     if Options["No-Action"]:
162         if newpriority != oldpriority:
163             print "I: Would change priority from %s to %s" % (oldpriority,newpriority)
164         if newsection != oldsection:
165             print "I: Would change section from %s to %s" % (oldsection,newsection)
166         if Options.has_key("Done"):
167             print "I: Would also close bug(s): %s" % (Options["Done"])
168
169         sys.exit(0)
170
171     if newpriority != oldpriority:
172         print "I: Will change priority from %s to %s" % (oldpriority,newpriority)
173     if newsection != oldsection:
174         print "I: Will change section from %s to %s" % (oldsection,newsection)
175
176     if not Options.has_key("Done"):
177         pass
178         #daklib.utils.warn("No bugs to close have been specified. Noone will know you have done this.")
179     else:
180         print "I: Will close bug(s): %s" % (Options["Done"])
181
182     game_over()
183
184     Logger = daklib.logging.Logger(Cnf, "override")
185
186     projectB.query("BEGIN WORK")
187     # We're in "do it" mode, we have something to do... do it
188     if newpriority != oldpriority:
189         q = projectB.query("""
190         UPDATE override
191            SET priority=%d
192          WHERE package=%s
193            AND suite = (SELECT id FROM suite WHERE suite_name=%s)""" % (
194             newprioid,
195             pg._quote(package,"str"),
196             pg._quote(suite,"str") ))
197         Logger.log(["changed priority",package,oldpriority,newpriority])
198
199     if newsection != oldsection:
200         q = projectB.query("""
201         UPDATE override
202            SET section=%d
203          WHERE package=%s
204            AND suite = (SELECT id FROM suite WHERE suite_name=%s)""" % (
205             newsecid,
206             pg._quote(package,"str"),
207             pg._quote(suite,"str") ))
208         Logger.log(["changed priority",package,oldsection,newsection])
209     projectB.query("COMMIT WORK")
210
211     if Options.has_key("Done"):
212         Subst = {}
213         Subst["__OVERRIDE_ADDRESS__"] = Cnf["Override::MyEmailAddress"]
214         Subst["__BUG_SERVER__"] = Cnf["Dinstall::BugServer"]
215         bcc = []
216         if Cnf.Find("Dinstall::Bcc") != "":
217             bcc.append(Cnf["Dinstall::Bcc"])
218         if Cnf.Find("Override::Bcc") != "":
219             bcc.append(Cnf["Override::Bcc"])
220         if bcc:
221             Subst["__BCC__"] = "Bcc: " + ", ".join(bcc)
222         else:
223             Subst["__BCC__"] = "X-Filler: 42"
224         Subst["__CC__"] = "X-DAK: dak override"
225         Subst["__ADMIN_ADDRESS__"] = Cnf["Dinstall::MyAdminAddress"]
226         Subst["__DISTRO__"] = Cnf["Dinstall::MyDistribution"]
227         Subst["__WHOAMI__"] = daklib.utils.whoami()
228
229         summary = "Concerning package %s...\n" % (package)
230         summary += "Operating on the %s suite\n" % (suite)
231         if newpriority != oldpriority:
232             summary += "Changed priority from %s to %s\n" % (oldpriority,newpriority)
233         if newsection != oldsection:
234             summary += "Changed section from %s to %s\n" % (oldsection,newsection)
235         Subst["__SUMMARY__"] = summary
236
237         for bug in daklib.utils.split_args(Options["Done"]):
238             Subst["__BUG_NUMBER__"] = bug
239             mail_message = daklib.utils.TemplateSubst(
240                 Subst,Cnf["Dir::Templates"]+"/override.bug-close")
241             daklib.utils.send_mail(mail_message)
242             Logger.log(["closed bug",bug])
243
244     Logger.close()
245
246     print "Done"
247
248 #################################################################################
249
250 if __name__ == '__main__':
251     main()