~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/lp_api.py

Merge pt1 hooks branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    )
36
36
from bzrlib.plugins.launchpad.lp_registration import (
37
37
    InvalidLaunchpadInstance,
38
 
    NotLaunchpadBranch,
39
38
    )
40
39
 
41
40
try:
47
46
    STAGING_SERVICE_ROOT,
48
47
    Launchpad,
49
48
    )
50
 
from launchpadlib import uris
51
49
 
52
 
LPNET_SERVICE_ROOT = getattr(uris, 'LPNET_SERVICE_ROOT',
53
 
                             'https://api.launchpad.net/beta/')
54
 
QASTAGING_SERVICE_ROOT = getattr(uris, 'QASTAGING_SERVICE_ROOT',
55
 
                                 'https://api.qastaging.launchpad.net/')
56
50
 
57
51
# Declare the minimum version of launchpadlib that we need in order to work.
58
52
# 1.5.1 is the version of launchpadlib packaged in Ubuntu 9.10, the most
79
73
            installed_version, installed_version)
80
74
 
81
75
 
 
76
# The older versions of launchpadlib only provided service root constants for
 
77
# edge and staging, whilst newer versions drop edge. Therefore service root
 
78
# URIs for which we do not always have constants are derived from the staging
 
79
# one, which does always exist.
 
80
#
 
81
# It is necessary to derive, rather than use hardcoded URIs because
 
82
# launchpadlib <= 1.5.4 requires service root URIs that end in a path of
 
83
# /beta/, whilst launchpadlib >= 1.5.5 requires service root URIs with no path
 
84
# info.
 
85
#
 
86
# Once we have a hard dependency on launchpadlib >= 1.5.4 we can replace all of
 
87
# bzr's local knowledge of individual Launchpad instances with use of the
 
88
# launchpadlib.uris module.
82
89
LAUNCHPAD_API_URLS = {
83
 
    'production': LPNET_SERVICE_ROOT,
84
 
    'qastaging': QASTAGING_SERVICE_ROOT,
 
90
    'production': STAGING_SERVICE_ROOT.replace('api.staging.launchpad.net',
 
91
        'api.launchpad.net'),
 
92
    'qastaging': STAGING_SERVICE_ROOT.replace('api.staging.launchpad.net',
 
93
        'api.qastaging.launchpad.net'),
85
94
    'staging': STAGING_SERVICE_ROOT,
86
 
    'dev': 'https://api.launchpad.dev/beta/',
 
95
    'dev': STAGING_SERVICE_ROOT.replace('api.staging.launchpad.net',
 
96
        'api.launchpad.dev'),
87
97
    }
88
98
 
89
99
 
186
196
        url = bzr_branch.get_push_location()
187
197
        if url is not None:
188
198
            yield url
 
199
        url = bzr_branch.get_parent()
 
200
        if url is not None:
 
201
            yield url
189
202
        yield bzr_branch.base
190
203
 
191
204
    @staticmethod
194
207
        if str(launchpad._root_uri) == STAGING_SERVICE_ROOT:
195
208
            return url.replace('bazaar.launchpad.net',
196
209
                               'bazaar.staging.launchpad.net')
197
 
        elif str(launchpad._root_uri) == QASTAGING_SERVICE_ROOT:
 
210
        elif str(launchpad._root_uri) == LAUNCHPAD_API_URLS['qastaging']:
198
211
            return url.replace('bazaar.launchpad.net',
199
212
                               'bazaar.qastaging.launchpad.net')
200
213
        return url
234
247
        """Return the 'LaunchpadBranch' for the target of this one."""
235
248
        lp_branch = self.lp
236
249
        if lp_branch.project is not None:
237
 
            dev_focus = lp_branch.project.development_focus.branch
 
250
            dev_focus = lp_branch.project.development_focus
238
251
            if dev_focus is None:
239
252
                raise errors.BzrError('%s has no development focus.' %
240
253
                                  lp_branch.bzr_identity)
283
296
        return self.bzr.repository.revision_tree(lca)
284
297
 
285
298
 
286
 
def load_branch(launchpad, branch):
287
 
    """Return the launchpadlib Branch object corresponding to 'branch'.
288
 
 
289
 
    :param launchpad: The root `Launchpad` object from launchpadlib.
290
 
    :param branch: A `bzrlib.branch.Branch`.
291
 
    :raise NotLaunchpadBranch: If we cannot determine the Launchpad URL of
292
 
        `branch`.
293
 
    :return: A launchpadlib Branch object.
294
 
    """
295
 
    # XXX: This duplicates the "What are possible URLs for the branch that
296
 
    # Launchpad might recognize" logic found in cmd_lp_open.
297
 
 
298
 
    # XXX: This makes multiple roundtrips to Launchpad for what is
299
 
    # conceptually a single operation -- get me the branches that match these
300
 
    # URLs. Unfortunately, Launchpad's support for such operations is poor, so
301
 
    # we have to allow multiple roundtrips.
302
 
    for url in branch.get_public_branch(), branch.get_push_location():
303
 
        lp_branch = launchpad.branches.getByUrl(url=url)
304
 
        if lp_branch:
305
 
            return lp_branch
306
 
    raise NotLaunchpadBranch(url)
307
 
 
308
 
 
309
299
def canonical_url(object):
310
300
    """Return the canonical URL for a branch."""
311
301
    scheme, netloc, path, params, query, fragment = urlparse.urlparse(