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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
|
# Copyright (C) 2006 - 2008 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""Launchpad.net integration plugin for Bazaar."""
# The XMLRPC server address can be overridden by setting the environment
# variable $BZR_LP_XMLRPL_URL
# see http://bazaar-vcs.org/Specs/BranchRegistrationTool
from bzrlib.lazy_import import lazy_import
lazy_import(globals(), """
import webbrowser
from bzrlib import (
branch as _mod_branch,
trace,
)
""")
from bzrlib.commands import Command, Option, register_command
from bzrlib.directory_service import directories
from bzrlib.errors import (
BzrCommandError,
InvalidURL,
NoPublicBranch,
NotBranchError,
)
from bzrlib.help_topics import topic_registry
from bzrlib.plugins.launchpad.lp_registration import (
LaunchpadService,
NotLaunchpadBranch,
)
class cmd_register_branch(Command):
"""Register a branch with launchpad.net.
This command lists a bzr branch in the directory of branches on
launchpad.net. Registration allows the branch to be associated with
bugs or specifications.
Before using this command you must register the product to which the
branch belongs, and create an account for yourself on launchpad.net.
arguments:
public_url: The publicly visible url for the branch to register.
This must be an http or https url (which Launchpad can read
from to access the branch). Local file urls, SFTP urls, and
bzr+ssh urls will not work.
If no public_url is provided, bzr will use the configured
public_url if there is one for the current branch, and
otherwise error.
example:
bzr register-branch http://foo.com/bzr/fooproduct.mine \\
--product fooproduct
"""
takes_args = ['public_url?']
takes_options = [
Option('product',
'Launchpad product short name to associate with the branch.',
unicode),
Option('branch-name',
'Short name for the branch; '
'by default taken from the last component of the url.',
unicode),
Option('branch-title',
'One-sentence description of the branch.',
unicode),
Option('branch-description',
'Longer description of the purpose or contents of the branch.',
unicode),
Option('author',
"Branch author's email address, if not yourself.",
unicode),
Option('link-bug',
'The bug this branch fixes.',
int),
Option('dry-run',
'Prepare the request but don\'t actually send it.')
]
def run(self,
public_url=None,
product='',
branch_name='',
branch_title='',
branch_description='',
author='',
link_bug=None,
dry_run=False):
from bzrlib.plugins.launchpad.lp_registration import (
LaunchpadService, BranchRegistrationRequest, BranchBugLinkRequest,
DryRunLaunchpadService)
if public_url is None:
try:
b = _mod_branch.Branch.open_containing('.')[0]
except NotBranchError:
raise BzrCommandError('register-branch requires a public '
'branch url - see bzr help register-branch.')
public_url = b.get_public_branch()
if public_url is None:
raise NoPublicBranch(b)
rego = BranchRegistrationRequest(branch_url=public_url,
branch_name=branch_name,
branch_title=branch_title,
branch_description=branch_description,
product_name=product,
author_email=author,
)
linko = BranchBugLinkRequest(branch_url=public_url,
bug_id=link_bug)
if not dry_run:
service = LaunchpadService()
# This gives back the xmlrpc url that can be used for future
# operations on the branch. It's not so useful to print to the
# user since they can't do anything with it from a web browser; it
# might be nice for the server to tell us about an html url as
# well.
else:
# Run on service entirely in memory
service = DryRunLaunchpadService()
service.gather_user_credentials()
branch_object_url = rego.submit(service)
if link_bug:
link_bug_url = linko.submit(service)
print 'Branch registered.'
register_command(cmd_register_branch)
class cmd_launchpad_open(Command):
"""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(location)
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):
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):
if location is None:
location = u'.'
web_url = self._get_web_url(LaunchpadService(), location)
trace.note('Opening %s in web browser' % web_url)
if not dry_run:
webbrowser.open(web_url)
register_command(cmd_launchpad_open)
class cmd_launchpad_login(Command):
"""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::
bzr launchpad-login
Set the Launchpad ID of the current user to 'bob'::
bzr launchpad-login bob
"""
aliases = ['lp-login']
takes_args = ['name?']
takes_options = [
Option('no-check',
"Don't check that the user name is valid."),
]
def run(self, name=None, no_check=False):
from bzrlib.plugins.launchpad 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)
self.outf.write(username + '\n')
else:
self.outf.write('No Launchpad user ID configured.\n')
return 1
else:
if check_account:
account.check_lp_login(name)
account.set_lp_login(name)
register_command(cmd_launchpad_login)
def _register_directory():
directories.register_lazy('lp:', 'bzrlib.plugins.launchpad.lp_directory',
'LaunchpadDirectory',
'Launchpad-based directory service',)
_register_directory()
def test_suite():
"""Called by bzrlib to fetch tests for this plugin"""
from unittest import TestSuite, TestLoader
from bzrlib.plugins.launchpad import (
test_account,
test_lp_directory,
test_lp_open,
test_lp_service,
test_register,
)
loader = TestLoader()
suite = TestSuite()
for module in [
test_account,
test_register,
test_lp_directory,
test_lp_open,
test_lp_service,
]:
suite.addTests(loader.loadTestsFromModule(module))
return suite
_launchpad_help = """Integration with Launchpad.net
Launchpad.net provides free Bazaar branch hosting with integrated bug and
specification tracking.
The bzr client (through the plugin called 'launchpad') has special
features to communicate with Launchpad:
* The launchpad-login command tells Bazaar your Launchpad user name. This
is then used by the 'lp:' transport to download your branches using
bzr+ssh://.
* The register-branch command tells Launchpad about the url of a
public branch. Launchpad will then mirror the branch, display
its contents and allow it to be attached to bugs and other
objects.
* The 'lp:' transport uses Launchpad as a directory service: for example
'lp:bzr' and 'lp:python' refer to the main branches of the relevant
projects and may be branched, logged, etc. You can also use the 'lp:'
transport to refer to specific branches, e.g. lp:///~bzr/bzr/trunk.
For more information see http://help.launchpad.net/
"""
topic_registry.register('launchpad',
_launchpad_help,
'Using Bazaar with Launchpad.net')
|