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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
# Copyright (C) 2006-2017 Canonical Ltd
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""Launchpad plugin commands."""
from ... import (
branch as _mod_branch,
controldir,
trace,
)
from ...commands import (
Command,
)
from ...errors import (
BzrCommandError,
NotBranchError,
)
from ...i18n import gettext
from ...option import (
Option,
ListOption,
)
class cmd_launchpad_open(Command):
__doc__ = """Open a Launchpad branch page in your web browser."""
aliases = ['lp-open']
takes_options = [
Option('dry-run',
'Do not actually open the browser. Just say the URL we would '
'use.'),
]
takes_args = ['location?']
def _possible_locations(self, location):
"""Yield possible external locations for the branch at 'location'."""
yield location
try:
branch = _mod_branch.Branch.open_containing(location)[0]
except NotBranchError:
return
branch_url = branch.get_public_branch()
if branch_url is not None:
yield branch_url
branch_url = branch.get_push_location()
if branch_url is not None:
yield branch_url
def _get_web_url(self, service, location):
from .lp_registration import (
InvalidURL,
NotLaunchpadBranch)
for branch_url in self._possible_locations(location):
try:
return service.get_web_url_from_branch_url(branch_url)
except (NotLaunchpadBranch, InvalidURL):
pass
raise NotLaunchpadBranch(branch_url)
def run(self, location=None, dry_run=False):
from .lp_registration import (
LaunchpadService)
if location is None:
location = u'.'
web_url = self._get_web_url(LaunchpadService(), location)
trace.note(gettext('Opening %s in web browser') % web_url)
if not dry_run:
import webbrowser # this import should not be lazy
# otherwise brz.exe lacks this module
webbrowser.open(web_url)
class cmd_launchpad_login(Command):
__doc__ = """Show or set the Launchpad user ID.
When communicating with Launchpad, some commands need to know your
Launchpad user ID. This command can be used to set or show the
user ID that Bazaar will use for such communication.
:Examples:
Show the Launchpad ID of the current user::
brz launchpad-login
Set the Launchpad ID of the current user to 'bob'::
brz launchpad-login bob
"""
aliases = ['lp-login']
takes_args = ['name?']
takes_options = [
'verbose',
Option('no-check',
"Don't check that the user name is valid."),
]
def run(self, name=None, no_check=False, verbose=False):
# This is totally separate from any launchpadlib login system.
from . import account
check_account = not no_check
if name is None:
username = account.get_lp_login()
if username:
if check_account:
account.check_lp_login(username)
if verbose:
self.outf.write(gettext(
"Launchpad user ID exists and has SSH keys.\n"))
self.outf.write(username + '\n')
else:
self.outf.write(gettext('No Launchpad user ID configured.\n'))
return 1
else:
name = name.lower()
if check_account:
account.check_lp_login(name)
if verbose:
self.outf.write(gettext(
"Launchpad user ID exists and has SSH keys.\n"))
account.set_lp_login(name)
if verbose:
self.outf.write(gettext("Launchpad user ID set to '%s'.\n") %
(name,))
class cmd_launchpad_logout(Command):
__doc__ = """Unset the Launchpad user ID.
When communicating with Launchpad, some commands need to know your
Launchpad user ID. This command will log you out from Launchpad.
This means that communication with Launchpad will happen over
HTTPS, and will not require one of your SSH keys to be available.
"""
aliases = ['lp-logout']
takes_options = ['verbose']
def run(self, verbose=False):
from . import account
old_username = account.get_lp_login()
if old_username is None:
self.outf.write(gettext('Not logged into Launchpad.\n'))
return 1
account.set_lp_login(None)
if verbose:
self.outf.write(gettext(
"Launchpad user ID %s logged out.\n") %
old_username)
class cmd_lp_find_proposal(Command):
__doc__ = """Find the proposal to merge this revision.
Finds the merge proposal(s) that discussed landing the specified revision.
This works only if the if the merged_revno was recorded for the merge
proposal. The proposal(s) are opened in a web browser.
Only the revision specified is searched for. To find the mainline
revision that merged it into mainline, use the "mainline" revision spec.
So, to find the merge proposal that reviewed line 1 of README::
brz lp-find-proposal -r mainline:annotate:README:1
"""
takes_options = ['revision']
def run(self, revision=None):
from ... import ui
from . import lp_api
import webbrowser
b = _mod_branch.Branch.open_containing('.')[0]
with ui.ui_factory.nested_progress_bar() as pb, b.lock_read():
if revision is None:
revision_id = b.last_revision()
else:
revision_id = revision[0].as_revision_id(b)
merged = self._find_proposals(revision_id, pb)
if len(merged) == 0:
raise BzrCommandError(gettext('No review found.'))
trace.note(gettext('%d proposals(s) found.') % len(merged))
for mp in merged:
webbrowser.open(lp_api.canonical_url(mp))
def _find_proposals(self, revision_id, pb):
from launchpadlib import uris
from . import lp_api
# "devel" because branches.getMergeProposals is not part of 1.0 API.
lp_base_url = uris.LPNET_SERVICE_ROOT
launchpad = lp_api.connect_launchpad(lp_base_url, version='devel')
pb.update(gettext('Finding proposals'))
return list(launchpad.branches.getMergeProposals(
merged_revision=revision_id.decode('utf-8')))
|