~launchpad-pqm/launchpad/devel

« back to all changes in this revision

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

Split the events classes into their own module.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
from zope.interface import implements
40
40
 
41
41
from lp.codehosting import sftp
42
 
from lp.codehosting.sshserver import accesslog
 
42
from lp.codehosting.sshserver import events
43
43
from lp.codehosting.sshserver.session import (
44
44
    launch_smart_server, PatchedSSHSession)
45
45
from lp.services.twistedsupport.xmlrpc import trap_fault
71
71
        self.subsystemLookup = {'sftp': sftp.FileTransferServer}
72
72
 
73
73
    def logout(self):
74
 
        notify(accesslog.UserLoggedOut(self))
 
74
        notify(events.UserLoggedOut(self))
75
75
 
76
76
 
77
77
components.registerAdapter(launch_smart_server, LaunchpadAvatar, ISession)
215
215
        # connection in the logs.
216
216
        avatar = self.transport.avatar
217
217
        avatar.transport = self.transport
218
 
        notify(accesslog.UserLoggedIn(avatar))
 
218
        notify(events.UserLoggedIn(avatar))
219
219
        return ret
220
220
 
221
221
    def _ebLogToBanner(self, reason):