~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/sshserver/auth.py

  • Committer: Michael Hudson
  • Date: 2010-04-19 06:35:23 UTC
  • mto: (7675.623.118 launchpad) (9590.16.1)
  • mto: This revision was merged to the branch mainline in revision 10828.
  • Revision ID: michael.hudson@canonical.com-20100419063523-4uy5n83u11t4wiyq
a start at combining the puller and filesystem endpoints

Show diffs side-by-side

added added

removed removed

Lines of Context:
50
50
class LaunchpadAvatar(avatar.ConchUser):
51
51
    """An account on the SSH server, corresponding to a Launchpad person.
52
52
 
53
 
    :ivar branchfs_proxy: A Twisted XML-RPC client for the authserver. The
54
 
        server must implement `IBranchFileSystem`.
 
53
    :ivar codehosting_proxy: A Twisted XML-RPC client for the internal
 
54
        server. The server must implement `ICodehosting`.
55
55
    :ivar channelLookup: See `avatar.ConchUser`.
56
56
    :ivar subsystemLookup: See `avatar.ConchUser`.
57
57
    :ivar user_id: The Launchpad database ID of the Person for this account.
58
58
    :ivar username: The Launchpad username for this account.
59
59
    """
60
60
 
61
 
    def __init__(self, userDict, branchfs_proxy):
 
61
    def __init__(self, userDict, codehosting_proxy):
62
62
        avatar.ConchUser.__init__(self)
63
 
        self.branchfs_proxy = branchfs_proxy
 
63
        self.codehosting_proxy = codehosting_proxy
64
64
        self.user_id = userDict['id']
65
65
        self.username = userDict['name']
66
66
 
87
87
class Realm:
88
88
    implements(IRealm)
89
89
 
90
 
    def __init__(self, authentication_proxy, branchfs_proxy):
 
90
    def __init__(self, authentication_proxy, codehosting_proxy):
91
91
        self.authentication_proxy = authentication_proxy
92
 
        self.branchfs_proxy = branchfs_proxy
 
92
        self.codehosting_proxy = codehosting_proxy
93
93
 
94
94
    def requestAvatar(self, avatarId, mind, *interfaces):
95
95
        # Fetch the user's details from the authserver
97
97
 
98
98
        # Once all those details are retrieved, we can construct the avatar.
99
99
        def gotUserDict(userDict):
100
 
            avatar = LaunchpadAvatar(userDict, self.branchfs_proxy)
 
100
            avatar = LaunchpadAvatar(userDict, self.codehosting_proxy)
101
101
            return interfaces[0], avatar, avatar.logout
102
102
        return deferred.addCallback(gotUserDict)
103
103
 
332
332
            "user %s" % credentials.username)
333
333
 
334
334
 
335
 
def get_portal(authentication_proxy, branchfs_proxy):
 
335
def get_portal(authentication_proxy, codehosting_proxy):
336
336
    """Get a portal for connecting to Launchpad codehosting."""
337
 
    portal = Portal(Realm(authentication_proxy, branchfs_proxy))
 
337
    portal = Portal(Realm(authentication_proxy, codehosting_proxy))
338
338
    portal.registerChecker(
339
339
        PublicKeyFromLaunchpadChecker(authentication_proxy))
340
340
    return portal