~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: 2009-08-27 02:27:19 UTC
  • mfrom: (4634.3.19 gc-batching)
  • Revision ID: pqm@pqm.ubuntu.com-20090827022719-bl2yoqhpj3fcfczu
(andrew) Fix #402657: 2a fetch over dumb transport reads one group at
        a time.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2007 Canonical Ltd
 
1
# Copyright (C) 2007, 2008 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
 
23
from bzrlib import errors, trace
 
24
from bzrlib.config import AuthenticationConfig, GlobalConfig
25
25
from bzrlib.transport import get_transport
26
26
 
27
27
 
33
33
 
34
34
 
35
35
class NoRegisteredSSHKeys(errors.BzrError):
36
 
    _fmt = "The user %(user)s has not registered any SSH keys with Launchpad."
 
36
    _fmt = "The user %(user)s has not registered any SSH keys with Launchpad.\n" \
 
37
        "See <https://launchpad.net/people/+me>"
 
38
 
 
39
 
 
40
class MismatchedUsernames(errors.BzrError):
 
41
 
 
42
    _fmt = ('bazaar.conf and authentication.conf disagree about launchpad'
 
43
            ' account name.  Please re-run launchpad-login.')
37
44
 
38
45
 
39
46
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')
 
47
    """Return the user's Launchpad username.
 
48
 
 
49
    :raises: MismatchedUsername if authentication.conf and bazaar.conf
 
50
        disagree about username.
 
51
    """
 
52
    if _config is None:
 
53
        _config = GlobalConfig()
 
54
 
 
55
    username = _config.get_user_option('launchpad_username')
 
56
    if username is not None:
 
57
        auth = AuthenticationConfig()
 
58
        auth_username = _get_auth_user(auth)
 
59
        # Auto-upgrading
 
60
        if auth_username is None:
 
61
            trace.note('Setting ssh/sftp usernames for launchpad.net.')
 
62
            _set_auth_user(username, auth)
 
63
        elif auth_username != username:
 
64
            raise MismatchedUsernames()
 
65
    return username
 
66
 
 
67
 
 
68
def _set_global_option(username, _config=None):
 
69
    if _config is None:
 
70
        _config = GlobalConfig()
 
71
    _config.set_user_option('launchpad_username', username)
45
72
 
46
73
 
47
74
def set_lp_login(username, _config=None):
48
75
    """Set the user's Launchpad username"""
49
 
    if _config is None:
50
 
        _config = GlobalConfig()
51
 
 
52
 
    _config.set_user_option('launchpad_username', username)
 
76
    _set_global_option(username, _config)
 
77
    _set_auth_user(username)
 
78
 
 
79
 
 
80
def _get_auth_user(auth=None):
 
81
    if auth is None:
 
82
        auth = AuthenticationConfig()
 
83
    username = auth.get_user('ssh', '.launchpad.net')
 
84
    return username
 
85
 
 
86
def _set_auth_user(username, auth=None):
 
87
    if auth is None:
 
88
        auth = AuthenticationConfig()
 
89
    auth.set_credentials(
 
90
        'Launchpad', '.launchpad.net', username, 'ssh')
53
91
 
54
92
 
55
93
def check_lp_login(username, _transport=None):