13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
17
"""Launchpad.net integration plugin for Bazaar."""
22
22
# see http://bazaar-vcs.org/Specs/BranchRegistrationTool
24
from bzrlib.branch import Branch
24
# Since we are a built-in plugin we share the bzrlib version
25
from bzrlib import version_info
27
from bzrlib.lazy_import import lazy_import
28
lazy_import(globals(), """
30
branch as _mod_branch,
25
35
from bzrlib.commands import Command, Option, register_command
26
36
from bzrlib.directory_service import directories
27
from bzrlib.errors import BzrCommandError, NoPublicBranch, NotBranchError
37
from bzrlib.errors import (
28
44
from bzrlib.help_topics import topic_registry
34
50
This command lists a bzr branch in the directory of branches on
35
51
launchpad.net. Registration allows the branch to be associated with
36
52
bugs or specifications.
38
Before using this command you must register the product to which the
54
Before using this command you must register the project to which the
39
55
branch belongs, and create an account for yourself on launchpad.net.
51
bzr register-branch http://foo.com/bzr/fooproduct.mine \\
67
bzr register-branch http://foo.com/bzr/fooproject.mine \\
54
70
takes_args = ['public_url?']
73
'Launchpad project short name to associate with the branch.',
57
'Launchpad product short name to associate with the branch.',
76
'Launchpad product short name to associate with the branch.',
59
79
Option('branch-name',
60
80
'Short name for the branch; '
61
81
'by default taken from the last component of the url.',
89
110
from bzrlib.plugins.launchpad.lp_registration import (
90
LaunchpadService, BranchRegistrationRequest, BranchBugLinkRequest,
91
DryRunLaunchpadService)
111
BranchRegistrationRequest, BranchBugLinkRequest,
112
DryRunLaunchpadService, LaunchpadService)
92
113
if public_url is None:
94
b = Branch.open_containing('.')[0]
115
b = _mod_branch.Branch.open_containing('.')[0]
95
116
except NotBranchError:
96
117
raise BzrCommandError('register-branch requires a public '
97
118
'branch url - see bzr help register-branch.')
98
119
public_url = b.get_public_branch()
99
120
if public_url is None:
100
121
raise NoPublicBranch(b)
122
if product is not None:
124
trace.note('--product is deprecated; please use --project.')
102
127
rego = BranchRegistrationRequest(branch_url=public_url,
103
128
branch_name=branch_name,
104
129
branch_title=branch_title,
105
130
branch_description=branch_description,
106
product_name=product,
131
product_name=project,
107
132
author_email=author,
109
134
linko = BranchBugLinkRequest(branch_url=public_url,
119
144
# Run on service entirely in memory
120
145
service = DryRunLaunchpadService()
121
146
service.gather_user_credentials()
122
branch_object_url = rego.submit(service)
124
link_bug_url = linko.submit(service)
149
linko.submit(service)
125
150
print 'Branch registered.'
127
152
register_command(cmd_register_branch)
130
# XXX: Make notes to test this.
131
155
class cmd_launchpad_open(Command):
132
156
"""Open a Launchpad branch page in your web browser."""
140
164
takes_args = ['location?']
166
def _possible_locations(self, location):
167
"""Yield possible external locations for the branch at 'location'."""
170
branch = _mod_branch.Branch.open_containing(location)[0]
171
except NotBranchError:
173
branch_url = branch.get_public_branch()
174
if branch_url is not None:
176
branch_url = branch.get_push_location()
177
if branch_url is not None:
180
def _get_web_url(self, service, location):
181
from bzrlib.plugins.launchpad.lp_registration import (
183
for branch_url in self._possible_locations(location):
185
return service.get_web_url_from_branch_url(branch_url)
186
except (NotLaunchpadBranch, InvalidURL):
188
raise NotLaunchpadBranch(branch_url)
142
190
def run(self, location=None, dry_run=False):
143
from bzrlib.plugins.launchpad.lp_registration import LaunchpadService
144
from bzrlib.trace import note
191
from bzrlib.plugins.launchpad.lp_registration import (
146
193
if location is None:
148
branch = Branch.open(location)
149
branch_url = branch.get_public_branch()
150
if branch_url is None:
151
raise NoPublicBranch(branch)
152
service = LaunchpadService()
153
web_url = service.get_web_url_from_branch_url(branch_url)
154
note('Opening %s in web browser' % web_url)
195
web_url = self._get_web_url(LaunchpadService(), location)
196
trace.note('Opening %s in web browser' % web_url)
198
import webbrowser # this import should not be lazy
199
# otherwise bzr.exe lacks this module
156
200
webbrowser.open(web_url)
158
202
register_command(cmd_launchpad_open)
177
221
aliases = ['lp-login']
178
222
takes_args = ['name?']
179
223
takes_options = [
180
225
Option('no-check',
181
226
"Don't check that the user name is valid."),
184
def run(self, name=None, no_check=False):
229
def run(self, name=None, no_check=False, verbose=False):
230
# This is totally separate from any launchpadlib login system.
185
231
from bzrlib.plugins.launchpad import account
186
232
check_account = not no_check
191
237
if check_account:
192
238
account.check_lp_login(username)
241
"Launchpad user ID exists and has SSH keys.\n")
193
242
self.outf.write(username + '\n')
195
244
self.outf.write('No Launchpad user ID configured.\n')
198
248
if check_account:
199
249
account.check_lp_login(name)
252
"Launchpad user ID exists and has SSH keys.\n")
200
253
account.set_lp_login(name)
255
self.outf.write("Launchpad user ID set to '%s'.\n" % (name,))
202
257
register_command(cmd_launchpad_login)
260
# XXX: cmd_launchpad_mirror is untested
261
class cmd_launchpad_mirror(Command):
262
"""Ask Launchpad to mirror a branch now."""
264
aliases = ['lp-mirror']
265
takes_args = ['location?']
267
def run(self, location='.'):
268
from bzrlib.plugins.launchpad import lp_api
269
from bzrlib.plugins.launchpad.lp_registration import LaunchpadService
270
branch = _mod_branch.Branch.open(location)
271
service = LaunchpadService()
272
launchpad = lp_api.login(service)
273
lp_branch = lp_api.load_branch(launchpad, branch)
274
lp_branch.requestMirror()
277
register_command(cmd_launchpad_mirror)
205
280
def _register_directory():
206
281
directories.register_lazy('lp:', 'bzrlib.plugins.launchpad.lp_directory',
207
282
'LaunchpadDirectory',
209
284
_register_directory()
213
"""Called by bzrlib to fetch tests for this plugin"""
214
from unittest import TestSuite, TestLoader
215
from bzrlib.plugins.launchpad import (
287
def load_tests(basic_tests, module, loader):
297
basic_tests.addTest(loader.loadTestsFromModuleNames(
298
["%s.%s" % (__name__, tmn) for tmn in testmod_names]))
223
loader = TestLoader()
232
suite.addTests(loader.loadTestsFromModule(module))
235
302
_launchpad_help = """Integration with Launchpad.net
244
311
is then used by the 'lp:' transport to download your branches using
314
* The 'lp:' transport uses Launchpad as a directory service: for example
315
'lp:bzr' and 'lp:python' refer to the main branches of the relevant
316
projects and may be branched, logged, etc. You can also use the 'lp:'
317
transport to refer to specific branches, e.g. lp:~bzr/bzr/trunk.
319
* The 'lp:' bug tracker alias can expand launchpad bug numbers to their
320
URLs for use with 'bzr commit --fixes', e.g. 'bzr commit --fixes lp:12345'
321
will record a revision property that marks that revision as fixing
322
Launchpad bug 12345. When you push that branch to Launchpad it will
323
automatically be linked to the bug report.
247
325
* The register-branch command tells Launchpad about the url of a
248
326
public branch. Launchpad will then mirror the branch, display
249
327
its contents and allow it to be attached to bugs and other
252
* The 'lp:' transport uses Launchpad as a directory service: for example
253
'lp:bzr' and 'lp:python' refer to the main branches of the relevant
254
projects and may be branched, logged, etc. You can also use the 'lp:'
255
transport to refer to specific branches, e.g. lp:///~bzr/bzr/trunk.
257
330
For more information see http://help.launchpad.net/
259
332
topic_registry.register('launchpad',