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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
17
"""Functions to manage the user's Launchpad user ID.
20
20
than once for each place that needs to take it into account.
23
from bzrlib import errors, trace
24
from bzrlib.config import AuthenticationConfig, GlobalConfig
23
from bzrlib import errors
24
from bzrlib.config import GlobalConfig
25
25
from bzrlib.transport import get_transport
35
35
class NoRegisteredSSHKeys(errors.BzrError):
36
_fmt = "The user %(user)s has not registered any SSH keys with Launchpad.\n" \
37
"See <https://launchpad.net/people/+me>"
40
class MismatchedUsernames(errors.BzrError):
42
_fmt = ('bazaar.conf and authentication.conf disagree about launchpad'
43
' account name. Please re-run launchpad-login.')
36
_fmt = "The user %(user)s has not registered any SSH keys with Launchpad."
46
39
def get_lp_login(_config=None):
47
"""Return the user's Launchpad username.
49
:raises: MismatchedUsername if authentication.conf and bazaar.conf
50
disagree about username.
53
_config = GlobalConfig()
55
username = _config.get_user_option('launchpad_username')
56
if username is not None:
57
auth = AuthenticationConfig()
58
auth_username = _get_auth_user(auth)
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()
68
def _set_global_option(username, _config=None):
70
_config = GlobalConfig()
71
_config.set_user_option('launchpad_username', username)
40
"""Return the user's Launchpad username"""
42
_config = GlobalConfig()
44
return _config.get_user_option('launchpad_username')
74
47
def set_lp_login(username, _config=None):
75
48
"""Set the user's Launchpad username"""
76
_set_global_option(username, _config)
77
_set_auth_user(username)
80
def _get_auth_user(auth=None):
82
auth = AuthenticationConfig()
83
username = auth.get_user('ssh', '.launchpad.net')
86
def _set_auth_user(username, auth=None):
88
auth = AuthenticationConfig()
90
'Launchpad', '.launchpad.net', username, 'ssh')
50
_config = GlobalConfig()
52
_config.set_user_option('launchpad_username', username)
93
55
def check_lp_login(username, _transport=None):
94
56
"""Check whether the given Launchpad username is okay.
96
This will check for both existence and whether the user has
58
This will check for both existance and whether the user has
99
61
if _transport is None: