2007-02-26 01:24:48 +01:00
|
|
|
# Copyright (C) 2007, Red Hat, Inc.
|
|
|
|
# Copyright (C) 2007, Collabora Ltd.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
import gobject
|
2007-02-27 23:51:53 +01:00
|
|
|
import dbus
|
2007-02-26 01:24:48 +01:00
|
|
|
from sugar import profile
|
|
|
|
from sugar import util
|
2007-02-28 04:38:28 +01:00
|
|
|
from sugar import env
|
|
|
|
import gtk
|
2007-02-26 17:18:52 +01:00
|
|
|
from buddyiconcache import BuddyIconCache
|
2007-02-26 01:24:48 +01:00
|
|
|
import logging
|
2007-02-28 04:38:28 +01:00
|
|
|
import os
|
2007-03-05 12:52:29 +01:00
|
|
|
import hashlib
|
2007-02-26 01:24:48 +01:00
|
|
|
|
|
|
|
from telepathy.client import ConnectionManager, ManagerRegistry, Connection, Channel
|
|
|
|
from telepathy.interfaces import (
|
|
|
|
CONN_MGR_INTERFACE, CONN_INTERFACE, CHANNEL_TYPE_CONTACT_LIST, CHANNEL_INTERFACE_GROUP, CONN_INTERFACE_ALIASING,
|
|
|
|
CONN_INTERFACE_AVATARS, CONN_INTERFACE_PRESENCE)
|
|
|
|
from telepathy.constants import (
|
|
|
|
CONNECTION_HANDLE_TYPE_NONE, CONNECTION_HANDLE_TYPE_CONTACT,
|
|
|
|
CONNECTION_STATUS_CONNECTED, CONNECTION_STATUS_DISCONNECTED, CONNECTION_STATUS_CONNECTING,
|
2007-03-05 18:56:17 +01:00
|
|
|
CONNECTION_HANDLE_TYPE_LIST, CONNECTION_HANDLE_TYPE_CONTACT,CONNECTION_HANDLE_TYPE_ROOM,
|
2007-02-26 04:45:16 +01:00
|
|
|
CONNECTION_STATUS_REASON_AUTHENTICATION_FAILED)
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-02-27 23:51:53 +01:00
|
|
|
CONN_INTERFACE_BUDDY_INFO = 'org.laptop.Telepathy.BuddyInfo'
|
|
|
|
|
2007-02-26 19:18:06 +01:00
|
|
|
_PROTOCOL = "jabber"
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-02-28 04:38:28 +01:00
|
|
|
class InvalidBuddyError(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def _get_buddy_icon_at_size(maxw, maxh, maxsize):
|
|
|
|
icon = os.path.join(env.get_profile_path(), "buddy-icon.jpg")
|
|
|
|
pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(icon, maxw, maxh)
|
|
|
|
|
|
|
|
obj = {}
|
|
|
|
obj['data'] = ""
|
|
|
|
quality = 90
|
|
|
|
img_size = maxsize + 1
|
|
|
|
while img_size > maxsize:
|
|
|
|
del obj['data']
|
|
|
|
obj['data'] = ""
|
|
|
|
pixbuf.save_to_callback(_buddy_icon_save_cb, "jpeg", {"quality":"%d" % quality}, obj)
|
|
|
|
quality -= 10
|
|
|
|
img_size = len(obj['data'])
|
|
|
|
del pixbuf
|
|
|
|
|
|
|
|
if img_size > maxsize:
|
|
|
|
del obj['data']
|
|
|
|
raise RuntimeError("could not size image less than %d bytes" % maxsize)
|
|
|
|
|
|
|
|
return obj['data']
|
|
|
|
|
|
|
|
def _buddy_icon_save_cb(buf, obj):
|
|
|
|
obj['data'] += buf
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
class ServerPlugin(gobject.GObject):
|
|
|
|
__gsignals__ = {
|
|
|
|
'contact-online': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
|
|
|
([gobject.TYPE_PYOBJECT, gobject.TYPE_PYOBJECT])),
|
|
|
|
'contact-offline': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
|
|
|
([gobject.TYPE_PYOBJECT])),
|
|
|
|
'status': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
2007-02-26 17:18:52 +01:00
|
|
|
([gobject.TYPE_INT, gobject.TYPE_INT])),
|
|
|
|
'avatar-updated': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
2007-02-27 23:51:53 +01:00
|
|
|
([gobject.TYPE_PYOBJECT, gobject.TYPE_PYOBJECT])),
|
|
|
|
'properties-changed': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
|
|
|
([gobject.TYPE_PYOBJECT, gobject.TYPE_PYOBJECT])),
|
2007-03-05 18:56:17 +01:00
|
|
|
'contact-activities-changed': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
2007-02-26 17:18:52 +01:00
|
|
|
([gobject.TYPE_PYOBJECT, gobject.TYPE_PYOBJECT]))
|
2007-02-26 01:24:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
def __init__(self, registry):
|
|
|
|
gobject.GObject.__init__(self)
|
|
|
|
|
2007-02-26 17:18:52 +01:00
|
|
|
self._icon_cache = BuddyIconCache()
|
|
|
|
|
2007-02-26 19:18:06 +01:00
|
|
|
self._gabble_mgr = registry.GetManager('gabble')
|
2007-03-01 04:13:27 +01:00
|
|
|
self._online_contacts = {} # handle -> jid
|
2007-03-05 18:56:17 +01:00
|
|
|
self._activities = {} # activity id -> handle
|
2007-02-26 01:24:48 +01:00
|
|
|
self._account = self._get_account_info()
|
|
|
|
|
|
|
|
self._conn = self._init_connection()
|
|
|
|
|
2007-03-03 09:15:18 +01:00
|
|
|
self._reconnect_id = 0
|
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
def _get_account_info(self):
|
2007-02-27 19:08:17 +01:00
|
|
|
account_info = {}
|
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
pubkey = profile.get_pubkey()
|
2007-02-27 19:08:17 +01:00
|
|
|
|
|
|
|
server = profile.get_server()
|
|
|
|
if not server:
|
|
|
|
account_info['server'] = 'olpc.collabora.co.uk'
|
|
|
|
else:
|
|
|
|
account_info['server'] = server
|
|
|
|
|
|
|
|
registered = profile.get_server_registered()
|
|
|
|
account_info['register'] = not registered
|
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
khash = util.printable_hash(util._sha_data(pubkey))
|
|
|
|
account_info['account'] = "%s@%s" % (khash, account_info['server'])
|
|
|
|
|
|
|
|
account_info['password'] = profile.get_private_key_hash()
|
|
|
|
return account_info
|
|
|
|
|
2007-02-26 19:18:06 +01:00
|
|
|
def _find_existing_connection(self):
|
|
|
|
our_name = self._account['account']
|
2007-02-26 01:24:48 +01:00
|
|
|
|
|
|
|
# Search existing connections, if any, that we might be able to use
|
|
|
|
connections = Connection.get_connections()
|
|
|
|
conn = None
|
|
|
|
for item in connections:
|
|
|
|
if not item.object_path.startswith("/org/freedesktop/Telepathy/Connection/gabble/jabber/"):
|
|
|
|
continue
|
2007-02-26 19:18:06 +01:00
|
|
|
if item[CONN_INTERFACE].GetProtocol() != _PROTOCOL:
|
2007-02-26 01:24:48 +01:00
|
|
|
continue
|
|
|
|
if item[CONN_INTERFACE].GetStatus() == CONNECTION_STATUS_CONNECTED:
|
2007-02-26 19:18:06 +01:00
|
|
|
test_handle = item[CONN_INTERFACE].RequestHandles(CONNECTION_HANDLE_TYPE_CONTACT, [our_name])[0]
|
2007-02-26 01:24:48 +01:00
|
|
|
if item[CONN_INTERFACE].GetSelfHandle() != test_handle:
|
|
|
|
continue
|
2007-02-26 19:18:06 +01:00
|
|
|
return item
|
|
|
|
return None
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-02-26 21:38:50 +01:00
|
|
|
def _init_connection(self):
|
2007-02-26 19:18:06 +01:00
|
|
|
conn = self._find_existing_connection()
|
2007-02-26 01:24:48 +01:00
|
|
|
if not conn:
|
2007-02-26 04:45:16 +01:00
|
|
|
acct = self._account.copy()
|
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
# Create a new connection
|
2007-02-26 19:18:06 +01:00
|
|
|
name, path = self._gabble_mgr[CONN_MGR_INTERFACE].RequestConnection(_PROTOCOL, acct)
|
2007-02-26 04:45:16 +01:00
|
|
|
conn = Connection(name, path)
|
2007-02-26 19:18:06 +01:00
|
|
|
del acct
|
2007-02-26 01:24:48 +01:00
|
|
|
|
|
|
|
conn[CONN_INTERFACE].connect_to_signal('StatusChanged', self._status_changed_cb)
|
|
|
|
|
|
|
|
# hack
|
|
|
|
conn._valid_interfaces.add(CONN_INTERFACE_PRESENCE)
|
|
|
|
conn[CONN_INTERFACE_PRESENCE].connect_to_signal('PresenceUpdate',
|
2007-03-01 04:13:27 +01:00
|
|
|
self._presence_update_cb)
|
2007-02-26 01:24:48 +01:00
|
|
|
|
|
|
|
return conn
|
|
|
|
|
|
|
|
def _request_list_channel(self, name):
|
|
|
|
handle = self._conn[CONN_INTERFACE].RequestHandles(
|
|
|
|
CONNECTION_HANDLE_TYPE_LIST, [name])[0]
|
|
|
|
chan_path = self._conn[CONN_INTERFACE].RequestChannel(
|
|
|
|
CHANNEL_TYPE_CONTACT_LIST, CONNECTION_HANDLE_TYPE_LIST,
|
|
|
|
handle, True)
|
|
|
|
channel = Channel(self._conn._dbus_object._named_service, chan_path)
|
|
|
|
# hack
|
|
|
|
channel._valid_interfaces.add(CHANNEL_INTERFACE_GROUP)
|
|
|
|
return channel
|
|
|
|
|
|
|
|
def _connected_cb(self):
|
2007-02-27 19:08:17 +01:00
|
|
|
if self._account['register']:
|
|
|
|
# we successfully register this account
|
|
|
|
profile.set_server_registered()
|
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
# the group of contacts who may receive your presence
|
|
|
|
publish = self._request_list_channel('publish')
|
|
|
|
publish_handles, local_pending, remote_pending = publish[CHANNEL_INTERFACE_GROUP].GetAllMembers()
|
|
|
|
|
|
|
|
# the group of contacts for whom you wish to receive presence
|
|
|
|
subscribe = self._request_list_channel('subscribe')
|
|
|
|
subscribe_handles = subscribe[CHANNEL_INTERFACE_GROUP].GetMembers()
|
|
|
|
|
|
|
|
if local_pending:
|
|
|
|
# accept pending subscriptions
|
|
|
|
#print 'pending: %r' % local_pending
|
|
|
|
publish[CHANNEL_INTERFACE_GROUP].AddMembers(local_pending, '')
|
|
|
|
|
|
|
|
not_subscribed = list(set(publish_handles) - set(subscribe_handles))
|
|
|
|
self_handle = self._conn[CONN_INTERFACE].GetSelfHandle()
|
2007-03-01 04:13:27 +01:00
|
|
|
self._online_contacts[self_handle] = self._account['account']
|
2007-02-26 01:24:48 +01:00
|
|
|
|
|
|
|
for handle in not_subscribed:
|
|
|
|
# request subscriptions from people subscribed to us if we're not subscribed to them
|
|
|
|
subscribe[CHANNEL_INTERFACE_GROUP].AddMembers([self_handle], '')
|
|
|
|
|
|
|
|
# hack
|
2007-03-01 04:13:27 +01:00
|
|
|
self._conn._valid_interfaces.add(CONN_INTERFACE_BUDDY_INFO)
|
|
|
|
if CONN_INTERFACE_BUDDY_INFO not in self._conn.get_valid_interfaces():
|
|
|
|
print 'OLPC information not available'
|
2007-03-02 17:10:44 +01:00
|
|
|
self.cleanup()
|
2007-03-01 04:13:27 +01:00
|
|
|
return
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-03-01 04:13:27 +01:00
|
|
|
self._conn[CONN_INTERFACE_BUDDY_INFO].connect_to_signal('PropertiesChanged', self._properties_changed_cb)
|
|
|
|
self._conn[CONN_INTERFACE_BUDDY_INFO].connect_to_signal('ActivitiesChanged', self._activities_changed_cb)
|
2007-02-26 01:24:48 +01:00
|
|
|
|
|
|
|
# hack
|
|
|
|
self._conn._valid_interfaces.add(CONN_INTERFACE_AVATARS)
|
2007-02-26 17:18:52 +01:00
|
|
|
self._conn[CONN_INTERFACE_AVATARS].connect_to_signal('AvatarUpdated', self._avatar_updated_cb)
|
2007-02-27 23:51:53 +01:00
|
|
|
|
2007-02-28 00:05:00 +01:00
|
|
|
# hack
|
2007-03-01 04:13:27 +01:00
|
|
|
self._conn._valid_interfaces.add(CONN_INTERFACE_ALIASING)
|
2007-03-01 13:30:42 +01:00
|
|
|
# FIXME: we need to use PEP to store the nick. We aren't notified when
|
|
|
|
# vcards are changed
|
|
|
|
#self._conn[CONN_INTERFACE_ALIASING].connect_to_signal('AliasesChanged', self._alias_changed_cb)
|
2007-02-28 04:38:28 +01:00
|
|
|
|
2007-03-03 09:15:18 +01:00
|
|
|
try:
|
|
|
|
self._set_self_buddy_info()
|
|
|
|
except RuntimeError, e:
|
|
|
|
print e
|
|
|
|
self.cleanup()
|
|
|
|
return
|
2007-02-27 23:51:53 +01:00
|
|
|
|
2007-03-01 04:13:27 +01:00
|
|
|
# Request presence for everyone on the channel
|
|
|
|
self._conn[CONN_INTERFACE_PRESENCE].GetPresence(subscribe_handles)
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-03-05 12:52:29 +01:00
|
|
|
def _upload_avatar(self):
|
|
|
|
icon = os.path.join(env.get_profile_path(), "buddy-icon.jpg")
|
|
|
|
md5 = hashlib.md5()
|
|
|
|
md5.update(open(icon).read())
|
|
|
|
hash = md5.hexdigest()
|
|
|
|
|
|
|
|
self_handle = self._conn[CONN_INTERFACE].GetSelfHandle()
|
|
|
|
token = self._conn[CONN_INTERFACE_AVATARS].GetAvatarTokens([self_handle])[0]
|
|
|
|
|
|
|
|
if self._icon_cache.check_avatar(hash, token):
|
|
|
|
# avatar is up to date
|
|
|
|
return
|
|
|
|
|
|
|
|
types, minw, minh, maxw, maxh, maxsize = self._conn[CONN_INTERFACE_AVATARS].GetAvatarRequirements()
|
|
|
|
if not "image/jpeg" in types:
|
|
|
|
print "server does not accept JPEG format avatars."
|
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
|
|
|
img_data = _get_buddy_icon_at_size(min(maxw, 96), min(maxh, 96), maxsize)
|
|
|
|
token = self._conn[CONN_INTERFACE_AVATARS].SetAvatar(img_data, "image/jpeg")
|
|
|
|
self._icon_cache.set_avatar(hash, token)
|
|
|
|
except RuntimeError, e:
|
|
|
|
pass
|
|
|
|
|
2007-02-28 04:38:28 +01:00
|
|
|
def _set_self_buddy_info(self):
|
|
|
|
# Set our OLPC buddy properties
|
|
|
|
props = {}
|
|
|
|
props['color'] = profile.get_color().to_string()
|
|
|
|
props['key'] = profile.get_pubkey()
|
2007-03-03 09:15:18 +01:00
|
|
|
try:
|
|
|
|
self._conn[CONN_INTERFACE_BUDDY_INFO].SetProperties(props)
|
|
|
|
except dbus.DBusException, e:
|
|
|
|
if str(e).find("Server does not support PEP") >= 0:
|
|
|
|
raise RuntimeError("Server does not support PEP")
|
2007-02-28 04:38:28 +01:00
|
|
|
|
2007-02-28 17:02:43 +01:00
|
|
|
name = profile.get_nick_name()
|
|
|
|
self_handle = self._conn[CONN_INTERFACE].GetSelfHandle()
|
|
|
|
self._conn[CONN_INTERFACE_ALIASING].SetAliases( {self_handle : name} )
|
|
|
|
|
2007-03-05 18:56:17 +01:00
|
|
|
self._conn[CONN_INTERFACE_BUDDY_INFO].SetActivities([])
|
|
|
|
|
2007-03-05 12:52:29 +01:00
|
|
|
self._upload_avatar()
|
2007-02-28 04:38:28 +01:00
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
def _status_changed_cb(self, state, reason):
|
|
|
|
if state == CONNECTION_STATUS_CONNECTING:
|
|
|
|
print 'connecting: %r' % reason
|
|
|
|
elif state == CONNECTION_STATUS_CONNECTED:
|
|
|
|
print 'connected: %r' % reason
|
2007-02-26 04:45:16 +01:00
|
|
|
self.emit('status', state, int(reason))
|
2007-02-26 01:24:48 +01:00
|
|
|
self._connected_cb()
|
|
|
|
elif state == CONNECTION_STATUS_DISCONNECTED:
|
|
|
|
print 'disconnected: %r' % reason
|
|
|
|
self.emit('status', state, int(reason))
|
2007-03-03 09:51:27 +01:00
|
|
|
self._conn = None
|
2007-02-26 21:38:50 +01:00
|
|
|
if reason == CONNECTION_STATUS_REASON_AUTHENTICATION_FAILED:
|
|
|
|
# FIXME: handle connection failure; retry later?
|
|
|
|
pass
|
2007-02-26 04:45:16 +01:00
|
|
|
return False
|
2007-02-26 01:24:48 +01:00
|
|
|
|
|
|
|
def start(self):
|
2007-03-03 09:15:18 +01:00
|
|
|
print "Trying to connect..."
|
2007-02-26 01:24:48 +01:00
|
|
|
# If the connection is already connected query initial contacts
|
|
|
|
conn_status = self._conn[CONN_INTERFACE].GetStatus()
|
|
|
|
if conn_status == CONNECTION_STATUS_CONNECTED:
|
|
|
|
self._connected_cb()
|
|
|
|
subscribe = self._request_list_channel('subscribe')
|
|
|
|
subscribe_handles = subscribe[CHANNEL_INTERFACE_GROUP].GetMembers()
|
|
|
|
self._conn[CONN_INTERFACE_PRESENCE].RequestPresence(subscribe_handles)
|
|
|
|
elif conn_status == CONNECTION_STATUS_CONNECTING:
|
|
|
|
pass
|
|
|
|
else:
|
2007-03-03 09:15:18 +01:00
|
|
|
self._conn[CONN_INTERFACE].Connect(reply_handler=self._connect_reply_cb,
|
|
|
|
error_handler=self._connect_error_cb)
|
|
|
|
|
|
|
|
def _connect_reply_cb(self):
|
|
|
|
if self._reconnect_id > 0:
|
|
|
|
gobject.source_remove(self._reconnect_id)
|
|
|
|
|
|
|
|
def _reconnect(self):
|
|
|
|
self._reconnect_id = 0
|
|
|
|
self.start()
|
|
|
|
return False
|
|
|
|
|
|
|
|
def _connect_error_cb(self, exception):
|
|
|
|
print "Connect error: %s" % exception
|
|
|
|
if not self._reconnect_id:
|
|
|
|
self._reconnect_id = gobject.timeout_add(10000, self._reconnect)
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-03-02 17:10:44 +01:00
|
|
|
def cleanup(self):
|
2007-03-03 09:51:27 +01:00
|
|
|
if not self._conn:
|
|
|
|
return
|
2007-02-26 01:24:48 +01:00
|
|
|
self._conn[CONN_INTERFACE].Disconnect()
|
|
|
|
|
2007-03-01 04:13:27 +01:00
|
|
|
def _contact_offline(self, handle):
|
2007-02-26 01:24:48 +01:00
|
|
|
self.emit("contact-offline", handle)
|
2007-03-01 04:13:27 +01:00
|
|
|
del self._online_contacts[handle]
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-03-01 04:13:27 +01:00
|
|
|
def _contact_online(self, handle):
|
2007-02-28 04:38:28 +01:00
|
|
|
try:
|
|
|
|
props = self._conn[CONN_INTERFACE_BUDDY_INFO].GetProperties(handle)
|
|
|
|
except dbus.DBusException, e:
|
|
|
|
if str(e).startswith("org.freedesktop.DBus.Error.NoReply"):
|
|
|
|
raise InvalidBuddyError("couldn't get properties")
|
2007-03-03 09:15:18 +01:00
|
|
|
except KeyError, e:
|
|
|
|
if str(e) == "'%s'" % CONN_INTERFACE_BUDDY_INFO:
|
|
|
|
raise InvalidBuddyError("server doesn't support BuddyInfo interface")
|
|
|
|
|
2007-02-28 04:38:28 +01:00
|
|
|
if not props.has_key('color'):
|
|
|
|
raise InvalidBuddyError("no color")
|
|
|
|
if not props.has_key('key'):
|
|
|
|
raise InvalidBuddyError("no key")
|
2007-03-01 04:13:27 +01:00
|
|
|
|
|
|
|
jid = self._conn[CONN_INTERFACE].InspectHandles(CONNECTION_HANDLE_TYPE_CONTACT, [handle])[0]
|
|
|
|
nick = self._conn[CONN_INTERFACE_ALIASING].RequestAliases([handle])[0]
|
|
|
|
if not nick:
|
2007-02-28 17:02:43 +01:00
|
|
|
raise InvalidBuddyError("no name")
|
2007-03-01 04:13:27 +01:00
|
|
|
props['nick'] = nick
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-03-01 04:13:27 +01:00
|
|
|
self._online_contacts[handle] = jid
|
2007-02-28 17:02:43 +01:00
|
|
|
self.emit("contact-online", handle, props)
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-03-05 18:56:17 +01:00
|
|
|
activities = self._conn[CONN_INTERFACE_BUDDY_INFO].GetActivities(handle)
|
|
|
|
self._activities_changed_cb(handle, activities)
|
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
def _presence_update_cb(self, presence):
|
|
|
|
for handle in presence:
|
|
|
|
timestamp, statuses = presence[handle]
|
|
|
|
online = handle in self._online_contacts
|
|
|
|
for status, params in statuses.items():
|
2007-03-01 04:13:27 +01:00
|
|
|
print "Handle %s now online=%s with status %s" % (handle, online, status)
|
2007-02-26 01:24:48 +01:00
|
|
|
if not online and status in ["available", "away", "brb", "busy", "dnd", "xa"]:
|
2007-02-28 04:38:28 +01:00
|
|
|
try:
|
2007-03-01 04:13:27 +01:00
|
|
|
self._contact_online(handle)
|
2007-02-28 04:38:28 +01:00
|
|
|
except InvalidBuddyError, e:
|
|
|
|
print "Not adding %s because %s" % (handle, e)
|
2007-02-26 01:24:48 +01:00
|
|
|
elif online and status in ["offline", "invisible"]:
|
2007-03-01 04:13:27 +01:00
|
|
|
self._contact_offline(handle)
|
2007-02-26 01:24:48 +01:00
|
|
|
|
2007-02-26 17:18:52 +01:00
|
|
|
def _avatar_updated_cb(self, handle, new_avatar_token):
|
2007-03-01 04:13:27 +01:00
|
|
|
jid = self._online_contacts[handle]
|
2007-02-26 17:18:52 +01:00
|
|
|
icon = self._icon_cache.get_icon(jid, new_avatar_token)
|
|
|
|
if not icon:
|
|
|
|
# cache miss
|
|
|
|
avatar, mime_type = self._conn[CONN_INTERFACE_AVATARS].RequestAvatar(handle)
|
|
|
|
icon = ''.join(map(chr, avatar))
|
|
|
|
self._icon_cache.store_icon(jid, new_avatar_token, icon)
|
|
|
|
|
|
|
|
self.emit("avatar-updated", handle, icon)
|
2007-02-27 23:51:53 +01:00
|
|
|
|
2007-02-28 17:02:43 +01:00
|
|
|
def _alias_changed_cb(self, aliases):
|
|
|
|
for handle, alias in aliases:
|
2007-03-01 04:13:27 +01:00
|
|
|
nick = self._conn[CONN_INTERFACE_ALIASING].RequestAliases([handle])[0]
|
|
|
|
prop = {'nick': nick}
|
|
|
|
print "Buddy %s alias changed to %s" % (handle, nick)
|
2007-02-28 17:02:43 +01:00
|
|
|
self._properties_changed_cb(handle, prop)
|
|
|
|
|
2007-02-27 23:51:53 +01:00
|
|
|
def _properties_changed_cb(self, contact, properties):
|
|
|
|
self.emit("properties-changed", contact, properties)
|
|
|
|
|
|
|
|
def _activities_changed_cb(self, contact, activities):
|
2007-03-05 18:56:17 +01:00
|
|
|
for act_id, act_handle in activities:
|
|
|
|
self._activities[act_id] = act_handle
|
|
|
|
activities_id = map(lambda x: x[0], activities)
|
|
|
|
self.emit("contact-activities-changed", contact, activities_id)
|