~parinporecha/gtg/set-date-via-calendar

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/usr/bin/env python2
# -*- coding: UTF-8 -*-
# Copyright © 2009 Luca Falavigna <dktrkranz@debian.org>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.


# documentation: https://edge.launchpad.net/+apidoc/#bug_task

import os
import re
import sys
from re import findall
from urllib import urlopen

from launchpadlib.credentials import Credentials
from launchpadlib.launchpad import Launchpad, EDGE_SERVICE_ROOT


def lp_login():
    cachedir = os.path.expanduser('~/.cache/launchpadlib/')
    if not os.path.isdir(cachedir):
        os.makedirs(cachedir)
    creddir = os.path.expanduser("~/.cache/lp_credentials")
    if not os.path.isdir(creddir):
        os.makedirs(creddir)
        os.chmod(creddir, 0700)

    credpath = os.path.join(creddir, 'close_launchpad_bugs.txt')
    try:
        credfile = open(credpath, 'r')
        credentials = Credentials()
        credentials.load(credfile)
        credfile.close()
        launchpad = Launchpad(credentials, EDGE_SERVICE_ROOT, cachedir)
    except IOError:
        launchpad = Launchpad.get_token_and_login('close_launchpad_bugs',
                                                  EDGE_SERVICE_ROOT, cachedir)
        credfile = open(credpath, 'w')
        launchpad.credentials.save(credfile)
        credfile.close()

    return launchpad


def process_bug(bug):
    for task in bug.bug_tasks:
        if task.bug_target_name == 'gtg' and task.status == 'Fix Committed':
            task.status = 'Fix Released'
            task.lp_save()

if len(sys.argv) != 2:
    print 'Usage: %s <release>' % sys.argv[0]
    sys.exit(1)

data = urlopen('https://launchpad.net/gtg/+milestone/%s' % sys.argv[1]).read()
bugs = findall('<a href="\S+/bugs/(\d+)">', data)
launchpad = lp_login()

if not 'gtg' in [e.name for e in launchpad.people[launchpad.me].super_teams]:
    print 'You are not a GTG developer, exiting.'
    sys.exit(0)

for bugno in bugs:
    try:
        process_bug(launchpad.bugs[bugno])
        print "Bug #%s marked as Fix Released: " \
            "https://bugs.edge.launchpad.net/gtg/+bug/%s" % (bugno, bugno)
    except:
        print "UNABLE TO PROCESS BUG #%s" % bugno