~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-08-17 18:13:57 UTC
  • mfrom: (5268.7.29 transport-segments)
  • Revision ID: pqm@pqm.ubuntu.com-20110817181357-y5q5eth1hk8bl3om
(jelmer) Allow specifying the colocated branch to use in the branch URL,
 and retrieving the branch name using ControlDir._get_selected_branch.
 (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007 Canonical Ltd
 
1
# Copyright (C) 2007-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
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
16
16
 
17
17
"""Functions to manage the user's Launchpad user ID.
18
18
 
20
20
than once for each place that needs to take it into account.
21
21
"""
22
22
 
23
 
from bzrlib import errors
24
 
from bzrlib.config import GlobalConfig
25
 
from bzrlib.transport import get_transport
 
23
from bzrlib import (
 
24
    errors,
 
25
    trace,
 
26
    transport,
 
27
    )
 
28
from bzrlib.config import AuthenticationConfig, GlobalConfig
26
29
 
27
30
 
28
31
LAUNCHPAD_BASE = 'https://launchpad.net/'
33
36
 
34
37
 
35
38
class NoRegisteredSSHKeys(errors.BzrError):
36
 
    _fmt = "The user %(user)s has not registered any SSH keys with Launchpad."
 
39
    _fmt = "The user %(user)s has not registered any SSH keys with Launchpad.\n" \
 
40
        "See <https://launchpad.net/people/+me>"
 
41
 
 
42
 
 
43
class MismatchedUsernames(errors.BzrError):
 
44
 
 
45
    _fmt = ('bazaar.conf and authentication.conf disagree about launchpad'
 
46
            ' account name.  Please re-run launchpad-login.')
37
47
 
38
48
 
39
49
def get_lp_login(_config=None):
40
 
    """Return the user's Launchpad username"""
41
 
    if _config is None:
42
 
        _config = GlobalConfig()
43
 
 
44
 
    return _config.get_user_option('launchpad_username')
 
50
    """Return the user's Launchpad username.
 
51
 
 
52
    :raises: MismatchedUsername if authentication.conf and bazaar.conf
 
53
        disagree about username.
 
54
    """
 
55
    if _config is None:
 
56
        _config = GlobalConfig()
 
57
 
 
58
    username = _config.get_user_option('launchpad_username')
 
59
    if username is not None:
 
60
        auth = AuthenticationConfig()
 
61
        auth_username = _get_auth_user(auth)
 
62
        # Auto-upgrading
 
63
        if auth_username is None:
 
64
            trace.note('Setting ssh/sftp usernames for launchpad.net.')
 
65
            _set_auth_user(username, auth)
 
66
        elif auth_username != username:
 
67
            raise MismatchedUsernames()
 
68
    return username
 
69
 
 
70
 
 
71
def _set_global_option(username, _config=None):
 
72
    if _config is None:
 
73
        _config = GlobalConfig()
 
74
    _config.set_user_option('launchpad_username', username)
45
75
 
46
76
 
47
77
def set_lp_login(username, _config=None):
48
78
    """Set the user's Launchpad username"""
49
 
    if _config is None:
50
 
        _config = GlobalConfig()
51
 
 
52
 
    _config.set_user_option('launchpad_username', username)
 
79
    _set_global_option(username, _config)
 
80
    _set_auth_user(username)
 
81
 
 
82
 
 
83
def _get_auth_user(auth=None):
 
84
    if auth is None:
 
85
        auth = AuthenticationConfig()
 
86
    username = auth.get_user('ssh', '.launchpad.net')
 
87
    return username
 
88
 
 
89
def _set_auth_user(username, auth=None):
 
90
    if auth is None:
 
91
        auth = AuthenticationConfig()
 
92
    auth.set_credentials(
 
93
        'Launchpad', '.launchpad.net', username, 'ssh')
53
94
 
54
95
 
55
96
def check_lp_login(username, _transport=None):
59
100
    uploaded SSH keys.
60
101
    """
61
102
    if _transport is None:
62
 
        _transport = get_transport(LAUNCHPAD_BASE)
 
103
        _transport = transport.get_transport_from_url(LAUNCHPAD_BASE)
63
104
 
64
105
    try:
65
106
        data = _transport.get_bytes('~%s/+sshkeys' % username)