twisted.words.protocols.msn.SwitchboardClient(MSNEventBase)
class documentationtwisted.words.protocols.msn
View Source
(View In Hierarchy)
This class provides support for clients connecting to a switchboard server.
Switchboard servers are used for conversations with other people on the MSN network. This means that the number of conversations at any given time will be directly proportional to the number of connections to varioius switchboard servers.
MSN makes no distinction between single and group conversations, so any number of users may be invited to join a specific conversation taking place on a switchboard server.
Instance Variable | key | authorization key, obtained when receiving invitation / requesting switchboard server. |
Instance Variable | userHandle | your user handle (passport) |
Instance Variable | sessionID | unique session ID, used if you are replying to a switchboard invitation |
Instance Variable | reply | set this to 1 in connectionMade or before to signifiy that you are replying to a switchboard invitation. |
Method | __init__ | Undocumented |
Method | connectionMade | Called when a connection is made. |
Method | connectionLost | Called when the connection is shut down. |
Method | checkMessage | hook for detecting any notification type messages (e.g. file transfer) |
Method | handle_USR | Undocumented |
Method | handle_CAL | Undocumented |
Method | handle_JOI | Undocumented |
Method | handle_IRO | Undocumented |
Method | handle_ANS | Undocumented |
Method | handle_ACK | Undocumented |
Method | handle_NAK | Undocumented |
Method | handle_BYE | Undocumented |
Method | loggedIn | called when all login details have been negotiated. Messages can now be sent, or new users invited. |
Method | gotChattingUsers | called after connecting to an existing chat session. |
Method | userJoined | called when a user has joined the conversation. |
Method | userLeft | called when a user has left the conversation. |
Method | gotMessage | called when we receive a message. |
Method | userTyping | called when we receive the special type of message notifying us that a user is typing a message. |
Method | gotSendRequest | called when a contact is trying to send us a file. To accept or reject this transfer see the fileInvitationReply method. |
Method | inviteUser | used to invite a user to the current switchboard server. |
Method | sendMessage | used to send a message. |
Method | sendTypingNotification | No summary |
Method | sendFileInvitation | send an notification that we want to send a file. |
Method | fileInvitationReply | used to reply to a file transfer invitation. |
Method | sendTransferInfo | send information relating to a file transfer session. |
Method | _sendInit | send initial data based on whether we are replying to an invitation or starting one. |
Method | _newInvitationCookie | Undocumented |
Method | _checkTyping | helper method for checkMessage |
Method | _checkFileInvitation | helper method for checkMessage |
Method | _checkFileResponse | helper method for checkMessage |
Method | _checkFileInfo | helper method for checkMessage |
Inherited from _PauseableMixin (via MSNEventBase, LineReceiver):
Method | pauseProducing | Undocumented |
Method | resumeProducing | Undocumented |
Method | stopProducing | Undocumented |
Inherited from _PauseableMixin (via MSNEventBase, LineReceiver):
Method | pauseProducing | Undocumented |
Method | resumeProducing | Undocumented |
Method | stopProducing | Undocumented |
Inherited from _PauseableMixin (via MSNEventBase, LineReceiver):
Method | pauseProducing | Undocumented |
Method | resumeProducing | Undocumented |
Method | stopProducing | Undocumented |
Inherited from _PauseableMixin (via MSNEventBase, LineReceiver):
Method | pauseProducing | Undocumented |
Method | resumeProducing | Undocumented |
Method | stopProducing | Undocumented |
Inherited from _PauseableMixin (via MSNEventBase, LineReceiver):
Method | pauseProducing | Undocumented |
Method | resumeProducing | Undocumented |
Method | stopProducing | Undocumented |
Called when a connection is made.
This may be considered the initializer of the protocol, because it is called when the connection is completed. For clients, this is called once the connection to the server has been established; for servers, this is called after an accept() call stops blocking and a socket has been received. If you need to send any greeting or initial message, do it here.
Called when the connection is shut down.
Clear any circular references here, and any external references to this Protocol. The connection has been closed.
send initial data based on whether we are replying to an invitation or starting one.
hook for detecting any notification type messages (e.g. file transfer)
called when all login details have been negotiated. Messages can now be sent, or new users invited.
called after connecting to an existing chat session.
Parameters | users | A dict mapping user handles to screen names (current users taking part in the conversation) |
called when a user has joined the conversation.
Parameters | userHandle | the user handle (passport) of the user |
screenName | the screen name of the user |
called when a user has left the conversation.
Parameters | userHandle | the user handle (passport) of the user. |
called when we receive a message.
Parameters | message | the associated MSNMessage object |
called when we receive the special type of message notifying us that a user is typing a message.
Parameters | message | the associated MSNMessage object |
called when a contact is trying to send us a file. To accept or reject this transfer see the fileInvitationReply method.
Parameters | fileName | the name of the file |
fileSize | the size of the file | |
iCookie | the invitation cookie, used so the client can match up your reply with this request. | |
message | the MSNMessage object which brought about this invitation (it may contain more information) |
used to invite a user to the current switchboard server.
Parameters | userHandle | the user handle (passport) of the desired user. |
Returns | A Deferred, the callback for which will be called when the server notifies us that the user has indeed been invited. The callback argument will be a tuple with 1 element, the sessionID given to the invited user. I'm not sure if this is useful or not. |
used to send a message.
Parameters | message | the corresponding MSNMessage object. |
Returns | Depending on the value of message.ack. If set to MSNMessage.MESSAGE_ACK or MSNMessage.MESSAGE_NACK a Deferred will be returned, the callback for which will be fired when an ACK or NACK is received - the callback argument will be (None,). If set to MSNMessage.MESSAGE_ACK_NONE then the return value is None. |
used to send a typing notification. Upon receiving this message the official client will display a 'user is typing' message to all other users in the chat session for 10 seconds. The official client sends one of these every 5 seconds (I think) as long as you continue to type.
send an notification that we want to send a file.
Parameters | fileName | the file name |
fileSize | the file size | |
Returns | A Deferred, the callback of which will be fired when the user responds to this invitation with an appropriate message. The callback argument will be a tuple with 3 elements, the first being 1 or 0 depending on whether they accepted the transfer (1=yes, 0=no), the second being an invitation cookie to identify your follow-up responses and the third being the message 'info' which is a dict of information they sent in their reply (this doesn't really need to be used). If you wish to proceed with the transfer see the sendTransferInfo method. |
used to reply to a file transfer invitation.
Parameters | iCookie | the invitation cookie of the initial invitation |
accept | whether or not you accept this transfer, 1 = yes, 0 = no, default = 1. | |
Returns | A Deferred, the callback for which will be fired when the user responds with the transfer information. The callback argument will be a tuple with 5 elements, whether or not they wish to proceed with the transfer (1=yes, 0=no), their ip, the port, the authentication cookie (see FileReceive/FileSend) and the message info (dict) (in case they send extra header-like info like Internal-IP, this doesn't necessarily need to be used). If you wish to proceed with the transfer see FileReceive. |
send information relating to a file transfer session.
Parameters | accept | whether or not to go ahead with the transfer (1=yes, 0=no) |
iCookie | the invitation cookie of previous replies relating to this transfer | |
authCookie | the authentication cookie obtained from an FileSend instance | |
ip | your ip | |
port | the port on which an FileSend protocol is listening. |