~launchpad-pqm/launchpad/devel

4678.6.12 by Bjorn Tillenius
add a script for importing debian bugs.
1
#!/usr/bin/python2.4
4678.6.13 by Bjorn Tillenius
move DebianBugImportScript into an importable location.
2
# Copyright 2007 Canonical Ltd.  All rights reserved.
4678.6.12 by Bjorn Tillenius
add a script for importing debian bugs.
3
4678.6.23 by Bjorn Tillenius
move DebianBugImportScript back into the actual script.
4
"""Import Debian bugs into Launchpad, linking them to Ubuntu.
5
6
New bugs will be filed against the Debian source package in
7
Launchpad, with the real Debian bug linked as a bug watch.
8
9
An Ubuntu task will be created for each imported bug.
4678.6.12 by Bjorn Tillenius
add a script for importing debian bugs.
10
"""
11
12
import _pythonpath
13
4678.6.24 by Bjorn Tillenius
use the checkwatches db user.
14
from canonical.config import config
4678.6.23 by Bjorn Tillenius
move DebianBugImportScript back into the actual script.
15
from canonical.launchpad.scripts.base import LaunchpadScript
16
from canonical.launchpad.scripts.importdebianbugs import import_debian_bugs
17
18
19
class DebianBugImportScript(LaunchpadScript):
4678.6.33 by Bjorn Tillenius
add docstring.
20
    """Import Debian bugs into Launchpad, linking them to Ubuntu.
21
22
    New bugs will be filed against the Debian source package in
23
    Launchpad, with the real Debian bug linked as a bug watch.
24
25
    An Ubuntu task will be created for each imported bug.
26
    """
4678.6.23 by Bjorn Tillenius
move DebianBugImportScript back into the actual script.
27
28
    usage = "%(prog)s [options] <debian-bug-1> ... <debian-bug-n>"
29
    description = __doc__
30
31
    def add_my_options(self):
32
        self.parser.add_option(
33
            '-n', '--dry-run', action='store_true',
34
           help="Don't commit the DB transaction.",
35
           dest='dry_run', default=False)
36
37
    def main(self):
38
        if len(self.args) < 1:
39
            self.parser.print_help()
40
            return
41
4678.6.28 by Bjorn Tillenius
use a single list argument rather than *bugs_to_import
42
        import_debian_bugs(self.args)
4678.6.23 by Bjorn Tillenius
move DebianBugImportScript back into the actual script.
43
44
        if self.options.dry_run:
4678.6.29 by Bjorn Tillenius
improve dry-run message.
45
            self.logger.info("Dry run - rolling back the transaction.")
4678.6.23 by Bjorn Tillenius
move DebianBugImportScript back into the actual script.
46
            self.txn.abort()
47
        else:
48
            self.logger.info("Committing the transaction.")
49
            self.txn.commit()
4678.6.12 by Bjorn Tillenius
add a script for importing debian bugs.
50
51
52
if __name__ == '__main__':
53
    script = DebianBugImportScript(
4678.6.24 by Bjorn Tillenius
use the checkwatches db user.
54
        'canonical.launchpad.scripts.importdebianbugs',
55
        dbuser=config.checkwatches.dbuser)
4678.6.12 by Bjorn Tillenius
add a script for importing debian bugs.
56
    script.run()