# Copyright 2004-2006 Daniel Henninger # Licensed for distribution under the GPL version 2, check COPYING for details from twisted.internet import protocol, reactor from tlib import oscar from tlib import socks5 import config import utils from debug import LogEvent, INFO, WARN, ERROR import lang import re import time import binascii import md5 import imgmanip ############################################################################# # BOSConnection ############################################################################# class B(oscar.BOSConnection): def __init__(self,username,cookie,oscarcon): self.chats = list() self.ssigroups = list() self.ssiiconsum = list() self.requesticon = {} self.awayResponses = {} self.oscarcon = oscarcon self.authorizationRequests = [] # buddies that need authorization self.oscarcon.bos = self self.session = oscarcon.session # convenience self.capabilities = [oscar.CAP_CHAT, oscar.CAP_ICON] self.unreadmessages = 0 if config.crossChat: self.capabilities.append(oscar.CAP_CROSS_CHAT) oscar.BOSConnection.__init__(self,username,cookie) if config.socksProxyServer and config.socksProxyPort: self.socksProxyServer = config.socksProxyServer self.socksProxyPort = config.socksProxyPort if config.aimPort: self.connectPort = config.aimPort def initDone(self): if not hasattr(self, "session") or not self.session: LogEvent(INFO, msg="No session!") return self.requestSelfInfo().addCallback(self.gotSelfInfo) #self.requestSelfInfo() # experimenting with no callback self.requestSSI().addCallback(self.gotBuddyList) LogEvent(INFO, self.session.jabberID) def connectionLost(self, reason): message = "AIM connection lost! Reason: %s" % reason LogEvent(INFO, self.session.jabberID, message) try: self.oscarcon.alertUser(message) except: pass oscar.BOSConnection.connectionLost(self, reason) try: self.session.removeMe() except: pass def gotUserInfo(self, id, type, userinfo): if userinfo: for i in range(len(userinfo)): #userinfo[i] = userinfo[i].decode(config.encoding, "replace").encode("utf-8", "replace") try: userinfo[i],uenc = oscar.guess_encoding(userinfo[i], "iso-8859-1") except UnicodeError: userinfo[i] = userinfo[i].encode('utf-8', 'replace') if self.oscarcon.userinfoCollection[id].gotUserInfo(id, type, userinfo): # True when all info packages has been received self.oscarcon.gotvCard(self.oscarcon.userinfoCollection[id]) del self.oscarcon.userinfoCollection[id] def buddyAdded(self, scrnname): from glue import aim2jid for g in self.ssigroups: for u in g.users: if u.name == scrnname: if u.authorized: self.session.sendPresence(to=self.session.jabberID, fro=aim2jid(scrnname), show=None, ptype="subscribed") return def gotAuthorizationResponse(self, scrnname, success): from glue import aim2jid LogEvent(INFO, self.session.jabberID) if success: for g in self.ssigroups: for u in g.users: if u.name == scrnname: u.authorized = True u.authorizationRequestSent = False self.session.sendPresence(to=self.session.jabberID, fro=aim2jid(scrnname), show=None, ptype="subscribed") return else: for g in self.ssigroups: for u in g.users: if u.name == scrnname: u.authorizationRequestSent = False self.session.sendPresence(to=self.session.jabberID, fro=aim2jid(scrnname), show=None, status=None, ptype="unsubscribed") def gotAuthorizationRequest(self, scrnname): from glue import aim2jid LogEvent(INFO, self.session.jabberID) if not scrnname in self.authorizationRequests: self.authorizationRequests.append(scrnname) self.session.sendPresence(to=self.session.jabberID, fro=aim2jid(scrnname), ptype="subscribe") def youWereAdded(self, scrnname): from glue import aim2jid LogEvent(INFO, self.session.jabberID) self.session.sendPresence(to=self.session.jabberID, fro=aim2jid(scrnname), ptype="subscribe") def updateBuddy(self, user): from glue import aim2jid LogEvent(INFO, self.session.jabberID) buddyjid = aim2jid(user.name) c = self.session.contactList.findContact(buddyjid) if not c: return ptype = None show = None status = user.status encoding = user.statusencoding url = user.url #status = re.sub("<[^>]*>","",status) # Removes any HTML tags status = oscar.dehtml(status) # Removes any HTML tags if encoding: if encoding == "unicode": status = status.decode("utf-16be", "replace") elif encoding == "iso-8859-1": status = status.decode("iso-8859-1", "replace") if status == "Away" or status=="I am currently away from the computer." or status=="I am away from my computer right now.": status = "" if user.idleTime: if user.idleTime>60*24: idle_time = "Idle %d days"%(user.idleTime/(60*24)) elif user.idleTime>60: idle_time = "Idle %d hours"%(user.idleTime/(60)) else: idle_time = "Idle %d minutes"%(user.idleTime) if status: status="%s - %s"%(idle_time,status) else: status=idle_time if user.iconmd5sum != None and not config.disableAvatars and not config.avatarsOnlyOnChat: if self.oscarcon.legacyList.diffAvatar(user.name, md5Hash=binascii.hexlify(user.iconmd5sum)): LogEvent(INFO, self.session.jabberID, "Retrieving buddy icon for %s" % user.name) self.retrieveBuddyIconFromServer(user.name, user.iconmd5sum, user.icontype).addCallback(self.gotBuddyIconFromServer) else: LogEvent(INFO, self.session.jabberID, "Buddy icon is the same, using what we have for %s" % user.name) if user.caps: self.oscarcon.legacyList.setCapabilities(user.name, user.caps) status = status.encode("utf-8", "replace") if user.flags.count("away"): self.getAway(user.name).addCallback(self.sendAwayPresence, user) else: c.updatePresence(show=show, status=status, ptype=ptype, url=url) self.oscarcon.legacyList.updateSSIContact(user.name, presence=ptype, show=show, status=status, url=url) def gotBuddyIconFromServer(self, (contact, icontype, iconhash, iconlen, icondata)): if config.disableAvatars: return LogEvent(INFO, self.session.jabberID, "%s: hash: %s, len: %d" % (contact, binascii.hexlify(iconhash), iconlen)) if iconlen > 0 and iconlen != 90: # Some AIM clients send crap self.oscarcon.legacyList.updateAvatar(contact, icondata, md5Hash=iconhash) def offlineBuddy(self, user): from glue import aim2jid LogEvent(INFO, self.session.jabberID, user.name) buddyjid = aim2jid(user.name) c = self.session.contactList.findContact(buddyjid) if not c: return show = None status = None ptype = "unavailable" c.updatePresence(show=show, status=status, ptype=ptype) self.oscarcon.legacyList.updateSSIContact(user.name, presence=ptype, show=show, status=status) def receiveMessage(self, user, multiparts, flags): from glue import aim2jid LogEvent(INFO, self.session.jabberID, "%s %s %s" % (user.name, multiparts, flags)) sourcejid = aim2jid(user.name) text = multiparts[0][0] if len(multiparts[0]) > 1: if multiparts[0][1] == 'unicode': encoding = "utf-16be" else: encoding = "iso-8859-1" else: encoding = "iso-8859-1" LogEvent(INFO, self.session.jabberID, "Using encoding %s" % (encoding)) text = text.decode(encoding, "replace") xhtml = utils.prepxhtml(text) if not user.name[0].isdigit(): text = oscar.dehtml(text) text = text.strip() mtype = "chat" if "auto" in flags: mtype = "headline" self.session.sendMessage(to=self.session.jabberID, fro=sourcejid, body=text, mtype=mtype, xhtml=xhtml) self.session.pytrans.serviceplugins['Statistics'].stats['IncomingMessages'] += 1 self.session.pytrans.serviceplugins['Statistics'].sessionUpdate(self.session.jabberID, 'IncomingMessages', 1) if not config.disableAwayMessage and self.awayMessage and not "auto" in flags: if not self.awayResponses.has_key(user.name) or self.awayResponses[user.name] < (time.time() - 900): self.sendMessage(user.name, "Away message: "+self.awayMessage, autoResponse=1) self.awayResponses[user.name] = time.time() if "icon" in flags and not config.disableAvatars: if self.oscarcon.legacyList.diffAvatar(user.name, numHash=user.iconcksum): LogEvent(INFO, self.session.jabberID, "User %s has a buddy icon we want, will ask for it next message." % user.name) self.requesticon[user.name] = 1 else: LogEvent(INFO, self.session.jabberID, "User %s has a icon that we already have." % user.name) if "iconrequest" in flags and hasattr(self.oscarcon, "myavatar") and not config.disableAvatars: LogEvent(INFO, self.session.jabberID, "User %s wants our icon, so we're sending it." % user.name) icondata = self.oscarcon.myavatar self.sendIconDirect(user.name, icondata, wantAck=1) def receiveWarning(self, newLevel, user): LogEvent(INFO, self.session.jabberID) def receiveTypingNotify(self, type, user): from glue import aim2jid LogEvent(INFO, self.session.jabberID) sourcejid = aim2jid(user.name) if type == "begin": self.session.sendTypingNotification(to=self.session.jabberID, fro=sourcejid, typing=True) self.session.sendChatStateNotification(to=self.session.jabberID, fro=sourcejid, state="composing") elif type == "idle": self.session.sendTypingNotification(to=self.session.jabberID, fro=sourcejid, typing=False) self.session.sendChatStateNotification(to=self.session.jabberID, fro=sourcejid, state="paused") elif type == "finish": self.session.sendTypingNotification(to=self.session.jabberID, fro=sourcejid, typing=False) self.session.sendChatStateNotification(to=self.session.jabberID, fro=sourcejid, state="active") def errorMessage(self, message): tmpjid = config.jid if self.session.registeredmunge: tmpjid = tmpjid + "/registered" self.session.sendErrorMessage(to=self.session.jabberID, fro=tmpjid, etype="cancel", condition="recipient-unavailable",explanation=message) def receiveChatInvite(self, user, message, exchange, fullName, instance, shortName, inviteTime): from glue import aim2jid, LegacyGroupchat LogEvent(INFO, self.session.jabberID) groupchat = LegacyGroupchat(session=self.session, resource=self.session.highestResource(), ID=shortName.replace(' ','_')+"%"+str(exchange), existing=True) groupchat.sendUserInvite(aim2jid(user.name)) def chatReceiveMessage(self, chat, user, message): from glue import aim2jidGroup LogEvent(INFO, self.session.jabberID) if user.name.lower() == self.username.lower(): return fro = aim2jidGroup(chat.name, user.name, None) if not self.session.findGroupchat(fro): fro = aim2jidGroup(chat.name, user.name, chat.exchange) text = oscar.dehtml(message) text = text.decode("utf-8", "replace") text = text.strip() self.session.sendMessage(to=self.session.jabberID, fro=fro, body=text, mtype="groupchat") self.session.pytrans.statistics.stats['IncomingMessages'] += 1 self.session.pytrans.statistics.sessionUpdate(self.session.jabberID, 'IncomingMessages', 1) def chatMemberJoined(self, chat, member): from glue import aim2jidGroup LogEvent(INFO, self.session.jabberID) fro = aim2jidGroup(chat.name, member.name, chat.exchange) ptype = None show = None status = None self.session.sendPresence(to=self.session.jabberID, fro=fro, show=show, status=status, ptype=ptype) def chatMemberLeft(self, chat, member): from glue import aim2jidGroup LogEvent(INFO, self.session.jabberID) fro = aim2jidGroup(chat.name, member.name, chat.exchange) ptype = "unavailable" show = None status = None self.session.sendPresence(to=self.session.jabberID, fro=fro, show=show, status=status, ptype=ptype) def receiveSendFileRequest(self, user, file, description, cookie): LogEvent(INFO, self.session.jabberID) def emailNotificationReceived(self, addr, url, unreadnum, hasunread): LogEvent(INFO, self.session.jabberID) if unreadnum > self.unreadmessages: diff = unreadnum - self.unreadmessages self.session.sendMessage(to=self.session.jabberID, fro=config.jid, body=lang.get("aimemailnotification", config.jid) % (diff, addr, url), mtype="headline") self.unreadmessages = unreadnum # Callbacks def sendAwayPresence(self, msg, user): from glue import aim2jid buddyjid = aim2jid(user.name) c = self.session.contactList.findContact(buddyjid) if not c: return ptype = None show = "away" status = oscar.dehtml(msg[1]) # Removes any HTML tags url = user.url if status != None: charset = "iso-8859-1" m = None if msg[0]: m = re.search('charset="(.+)"', msg[0]) if m != None: charset = m.group(1) if charset == 'unicode-2-0': charset = 'utf-16be' elif charset == 'utf-8': pass elif charset == "us-ascii": charset = "iso-8859-1" else: LogEvent(INFO, self.session.jabberID, "Unknown charset (%s) of buddy's away message" % msg[0]); charset = "iso-8859-1" status = msg[0] + ": " + status status = status.decode(charset, 'replace') LogEvent(INFO, self.session.jabberID, "Away (%s, %s) message %s" % (charset, msg[0], status)) if status == "Away" or status=="I am currently away from the computer." or status=="I am away from my computer right now.": status = "" if user.idleTime: if user.idleTime>60*24: idle_time = "Idle %d days"%(user.idleTime/(60*24)) elif user.idleTime>60: idle_time = "Idle %d hours"%(user.idleTime/(60)) else: idle_time = "Idle %d minutes"%(user.idleTime) if status: status="%s - %s"%(idle_time,status) else: status=idle_time c.updatePresence(show=show, status=status, ptype=ptype) self.oscarcon.legacyList.updateSSIContact(user.name, presence=ptype, show=show, status=status, url=url) def gotSelfInfo(self, user): LogEvent(INFO, self.session.jabberID) self.name = user.name def receivedSelfInfo(self, user): LogEvent(INFO, self.session.jabberID) self.name = user.name def receivedIconUploadRequest(self, iconhash): if config.disableAvatars: return LogEvent(INFO, self.session.jabberID, "%s" % binascii.hexlify(iconhash)) if hasattr(self.oscarcon, "myavatar"): LogEvent(INFO, self.session.jabberID, "I have an icon, sending it on, %d" % len(self.oscarcon.myavatar)) self.uploadBuddyIconToServer(self.oscarcon.myavatar, len(self.oscarcon.myavatar)).addCallback(self.uploadedBuddyIconToServer) def receivedIconDirect(self, user, icondata): if config.disableAvatars: return LogEvent(INFO, self.session.jabberID, "%s [%d]" % (user.name, user.iconlen)) if user.iconlen > 0 and user.iconlen != 90: # Some AIM clients send crap self.oscarcon.legacyList.updateAvatar(user.name, icondata, numHash=user.iconcksum) def uploadedBuddyIconToServer(self, iconchecksum): LogEvent(INFO, self.session.jabberID, "%s" % (iconchecksum)) def readGroup(self, memberlist, parent=None): for member in memberlist: if isinstance(member, oscar.SSIGroup): LogEvent(INFO, self.session.jabberID, "Found group %s" % (member.name)) self.ssigroups.append(member) self.readGroup(member.users, parent=member) elif isinstance(member, oscar.SSIBuddy): if member.nick: unick,uenc = oscar.guess_encoding(member.nick, "iso-8859-1") else: unick = None if parent: LogEvent(INFO, self.session.jabberID, "Found user %r (%r) from group %r" % (member.name, unick, parent.name)) else: LogEvent(INFO, self.session.jabberID, "Found user %r (%r) from master group" % (member.name, unick)) self.oscarcon.legacyList.updateSSIContact(member.name, nick=unick) if member.name[0].isdigit() and (not member.nick or member.name == member.nick): # Hrm, lets get that nick self.getnicknames.append(member.name) else: LogEvent(INFO, self.session.jabberID, "Found unknown SSI entity: %r" % member) def gotBuddyList(self, l): LogEvent(INFO, self.session.jabberID, "%s" % (str(l))) self.getnicknames = list() if l is not None and l[0] is not None: self.readGroup(l[0]) if l is not None and l[5] is not None: for i in l[5]: LogEvent(INFO, self.session.jabberID, "Found icon %s" % (str(i))) self.ssiiconsum.append(i) self.activateSSI() if l is not None and l[8] is not None and l[3] != "denysome": LogEvent(INFO, self.session.jabberID, "Permissions not set in a compatible manner on SSI, switching to 'deny some'") l[8].permitMode = oscar.AIM_SSI_PERMDENY_DENY_SOME self.startModifySSI() self.modifyItemSSI(l[8]) self.endModifySSI() self.setProfile(self.session.description) self.setIdleTime(0) self.clientReady() if not config.disableMailNotifications: self.activateEmailNotification() self.session.ready = True tmpjid=config.jid if self.session.registeredmunge: tmpjid=config.jid+"/registered" if self.session.pytrans: self.session.sendPresence(to=self.session.jabberID, fro=tmpjid, show=self.oscarcon.savedShow, status=self.oscarcon.savedFriendly, url=self.oscarcon.savedURL) if not self.oscarcon.savedShow or self.oscarcon.savedShow == "online": self.oscarcon.setBack(self.oscarcon.savedFriendly) else: self.oscarcon.setAway(self.oscarcon.savedFriendly) if hasattr(self.oscarcon, "myavatar") and not config.disableAvatars: self.oscarcon.changeAvatar(self.oscarcon.myavatar) def warnedUser(self, oldLevel, newLevel, username): LogEvent(INFO, self.session.jabberID) def createdRoom(self, (exchange, fullName, instance)): LogEvent(INFO, self.session.jabberID) self.joinChat(exchange, fullName, instance).addCallback(self.chatJoined) def chatJoined(self, chat): from glue import aim2jidGroup LogEvent(INFO, self.session.jabberID) if chat.members is not None: for m in chat.members: fro = aim2jidGroup(chat.name, m.name, chat.exchange) ptype = None show = None status = None self.session.sendPresence(to=self.session.jabberID, fro=fro, show=show, status=status, ptype=ptype) self.chats.append(chat) ############################################################################# # Oscar Authenticator ############################################################################# class OA(oscar.OscarAuthenticator): def __init__(self,username,password,oscarcon,deferred=None,icq=0): self.oscarcon = oscarcon self.BOSClass = B oscar.OscarAuthenticator.__init__(self,username,password,deferred,icq) def connectToBOS(self, server, port): if config.socksProxyServer: c = socks5.ProxyClientCreator(reactor, self.BOSClass, self.username, self.cookie, self.oscarcon) return c.connectSocks5Proxy(server, port, config.socksProxyServer, config.socksProxyPort, "OABOS") else: c = protocol.ClientCreator(reactor, self.BOSClass, self.username, self.cookie, self.oscarcon) return c.connectTCP(server, port) def connectionLost(self, reason): message = "AIM connection lost! Reason: %s" % reason try: LogEvent(INFO, self.session.jabberID, message) except: pass try: self.oscarcon.alertUser(message) except: pass oscar.OscarConnection.connectionLost(self, reason) try: self.oscarcon.session.removeMe() except: pass