2007-04-09 20:40:56 +02:00
|
|
|
# Copyright (C) 2007, Red Hat, Inc.
|
2010-08-16 14:39:05 +02:00
|
|
|
# Copyright (C) 2010 Collabora Ltd. <http://www.collabora.co.uk/>
|
2006-10-15 01:08:44 +02:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library 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
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
|
2008-10-28 14:19:01 +01:00
|
|
|
"""UI interface to a buddy in the presence service
|
|
|
|
|
|
|
|
STABLE.
|
|
|
|
"""
|
|
|
|
|
2010-06-22 16:31:21 +02:00
|
|
|
import logging
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
from gi.repository import GObject
|
2006-07-25 22:52:45 +02:00
|
|
|
import dbus
|
2010-08-12 15:53:28 +02:00
|
|
|
from telepathy.interfaces import CONNECTION, \
|
2013-05-18 04:31:39 +02:00
|
|
|
CONNECTION_INTERFACE_ALIASING, \
|
|
|
|
CONNECTION_INTERFACE_CONTACTS
|
2010-07-08 17:20:51 +02:00
|
|
|
from telepathy.constants import HANDLE_TYPE_CONTACT
|
2010-06-22 16:31:21 +02:00
|
|
|
|
2011-10-29 10:44:18 +02:00
|
|
|
from sugar3.presence.connectionmanager import get_connection_manager
|
2016-04-17 07:57:07 +02:00
|
|
|
from sugar3.profile import get_color, get_nick_name
|
2010-07-12 20:33:19 +02:00
|
|
|
|
2010-07-08 17:20:51 +02:00
|
|
|
ACCOUNT_MANAGER_SERVICE = 'org.freedesktop.Telepathy.AccountManager'
|
2010-06-22 16:31:21 +02:00
|
|
|
CONN_INTERFACE_BUDDY_INFO = 'org.laptop.Telepathy.BuddyInfo'
|
|
|
|
|
2011-10-29 10:44:18 +02:00
|
|
|
_logger = logging.getLogger('sugar3.presence.buddy')
|
2006-06-09 23:23:42 +02:00
|
|
|
|
2009-08-25 21:12:40 +02:00
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
class BaseBuddy(GObject.GObject):
|
2007-04-15 06:27:48 +02:00
|
|
|
"""UI interface for a Buddy in the presence service
|
2009-08-25 19:55:48 +02:00
|
|
|
|
2007-04-15 06:27:48 +02:00
|
|
|
Each buddy interface tracks a set of activities and properties
|
2009-08-25 19:55:48 +02:00
|
|
|
that can be queried to provide UI controls for manipulating
|
2007-04-15 06:27:48 +02:00
|
|
|
the presence interface.
|
2009-08-25 19:55:48 +02:00
|
|
|
|
2007-04-15 06:27:48 +02:00
|
|
|
Properties Dictionary:
|
2009-08-25 19:55:48 +02:00
|
|
|
'key': public key,
|
|
|
|
'nick': nickname ,
|
|
|
|
'color': color (XXX what format),
|
|
|
|
'current-activity': (XXX dbus path?),
|
|
|
|
'owner': (XXX dbus path?),
|
2007-04-15 06:27:48 +02:00
|
|
|
"""
|
2009-08-25 21:12:40 +02:00
|
|
|
|
2010-06-22 16:31:21 +02:00
|
|
|
__gtype_name__ = 'PresenceBaseBuddy'
|
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
__gsignals__ = {
|
2011-11-15 19:29:07 +01:00
|
|
|
'joined-activity': (GObject.SignalFlags.RUN_FIRST, None,
|
2013-05-18 04:31:39 +02:00
|
|
|
([GObject.TYPE_PYOBJECT])),
|
2011-11-15 19:29:07 +01:00
|
|
|
'left-activity': (GObject.SignalFlags.RUN_FIRST, None,
|
2013-05-18 04:31:39 +02:00
|
|
|
([GObject.TYPE_PYOBJECT])),
|
2011-11-15 19:29:07 +01:00
|
|
|
'property-changed': (GObject.SignalFlags.RUN_FIRST, None,
|
2013-05-18 04:31:39 +02:00
|
|
|
([GObject.TYPE_PYOBJECT])),
|
2006-12-04 20:12:24 +01:00
|
|
|
}
|
|
|
|
|
2010-06-22 16:31:21 +02:00
|
|
|
def __init__(self):
|
2011-11-15 19:29:07 +01:00
|
|
|
GObject.GObject.__init__(self)
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2010-06-22 16:31:21 +02:00
|
|
|
self._key = None
|
|
|
|
self._nick = None
|
|
|
|
self._color = None
|
|
|
|
self._current_activity = None
|
|
|
|
self._owner = False
|
|
|
|
self._ip4_address = None
|
|
|
|
self._tags = None
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2010-06-22 16:31:21 +02:00
|
|
|
def get_key(self):
|
|
|
|
return self._key
|
2009-08-25 19:55:48 +02:00
|
|
|
|
2010-06-22 16:31:21 +02:00
|
|
|
def set_key(self, key):
|
|
|
|
self._key = key
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
key = GObject.property(type=str, getter=get_key, setter=set_key)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def get_nick(self):
|
|
|
|
return self._nick
|
|
|
|
|
|
|
|
def set_nick(self, nick):
|
|
|
|
self._nick = nick
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
nick = GObject.property(type=str, getter=get_nick, setter=set_nick)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def get_color(self):
|
|
|
|
return self._color
|
|
|
|
|
|
|
|
def set_color(self, color):
|
|
|
|
self._color = color
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
color = GObject.property(type=str, getter=get_color, setter=set_color)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def get_current_activity(self):
|
|
|
|
if self._current_activity is None:
|
2007-04-26 22:51:37 +02:00
|
|
|
return None
|
2010-06-22 16:31:21 +02:00
|
|
|
for activity in self._activities.values():
|
|
|
|
if activity.props.id == self._current_activity:
|
|
|
|
return activity
|
|
|
|
return None
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
current_activity = GObject.property(type=object,
|
2010-08-12 16:03:40 +02:00
|
|
|
getter=get_current_activity)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def get_owner(self):
|
|
|
|
return self._owner
|
|
|
|
|
|
|
|
def set_owner(self, owner):
|
|
|
|
self._owner = owner
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
owner = GObject.property(type=bool, getter=get_owner, setter=set_owner,
|
2010-08-12 16:03:40 +02:00
|
|
|
default=False)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def get_ip4_address(self):
|
|
|
|
return self._ip4_address
|
|
|
|
|
|
|
|
def set_ip4_address(self, ip4_address):
|
|
|
|
self._ip4_address = ip4_address
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
ip4_address = GObject.property(type=str, getter=get_ip4_address,
|
2010-08-12 16:03:40 +02:00
|
|
|
setter=set_ip4_address)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def get_tags(self):
|
|
|
|
return self._tags
|
|
|
|
|
|
|
|
def set_tags(self, tags):
|
|
|
|
self._tags = tags
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
tags = GObject.property(type=str, getter=get_tags, setter=set_tags)
|
2007-04-09 20:40:56 +02:00
|
|
|
|
2006-12-04 20:12:24 +01:00
|
|
|
def object_path(self):
|
2007-04-15 06:27:48 +02:00
|
|
|
"""Retrieve our dbus object path"""
|
2010-07-02 15:14:08 +02:00
|
|
|
return None
|
2006-12-04 20:12:24 +01:00
|
|
|
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
class Buddy(BaseBuddy):
|
|
|
|
__gtype_name__ = 'PresenceBuddy'
|
2010-10-15 19:53:25 +02:00
|
|
|
|
2010-07-08 17:20:51 +02:00
|
|
|
def __init__(self, account_path, contact_id):
|
|
|
|
_logger.debug('Buddy.__init__')
|
2010-06-22 16:31:21 +02:00
|
|
|
BaseBuddy.__init__(self)
|
|
|
|
|
2010-07-08 17:20:51 +02:00
|
|
|
self._account_path = account_path
|
|
|
|
self.contact_id = contact_id
|
|
|
|
self.contact_handle = None
|
|
|
|
|
2010-07-12 20:33:19 +02:00
|
|
|
connection_manager = get_connection_manager()
|
|
|
|
connection = connection_manager.get_connection(account_path)
|
2010-07-08 17:20:51 +02:00
|
|
|
|
2010-07-12 20:33:19 +02:00
|
|
|
connection_name = connection.object_path.replace('/', '.')[1:]
|
2010-07-08 17:20:51 +02:00
|
|
|
|
2010-07-12 20:33:19 +02:00
|
|
|
bus = dbus.SessionBus()
|
|
|
|
obj = bus.get_object(connection_name, connection.object_path)
|
2010-07-08 17:20:51 +02:00
|
|
|
handles = obj.RequestHandles(HANDLE_TYPE_CONTACT, [self.contact_id],
|
|
|
|
dbus_interface=CONNECTION)
|
|
|
|
self.contact_handle = handles[0]
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
self._get_properties_call = bus.call_async(
|
2013-05-18 04:31:39 +02:00
|
|
|
connection_name,
|
|
|
|
connection.object_path,
|
|
|
|
CONN_INTERFACE_BUDDY_INFO,
|
|
|
|
'GetProperties',
|
|
|
|
'u',
|
|
|
|
(self.contact_handle,),
|
|
|
|
reply_handler=self.__got_properties_cb,
|
|
|
|
error_handler=self.__error_handler_cb,
|
|
|
|
utf8_strings=True,
|
|
|
|
byte_arrays=True)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
self._get_attributes_call = bus.call_async(
|
2013-05-18 04:31:39 +02:00
|
|
|
connection_name,
|
|
|
|
connection.object_path,
|
|
|
|
CONNECTION_INTERFACE_CONTACTS,
|
|
|
|
'GetContactAttributes',
|
|
|
|
'auasb',
|
|
|
|
([self.contact_handle], [CONNECTION_INTERFACE_ALIASING],
|
|
|
|
False),
|
|
|
|
reply_handler=self.__got_attributes_cb,
|
|
|
|
error_handler=self.__error_handler_cb)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def __got_properties_cb(self, properties):
|
2010-06-30 18:01:58 +02:00
|
|
|
_logger.debug('__got_properties_cb %r', properties)
|
2010-06-22 16:31:21 +02:00
|
|
|
self._get_properties_call = None
|
|
|
|
self._update_properties(properties)
|
|
|
|
|
|
|
|
def __got_attributes_cb(self, attributes):
|
2010-06-30 18:01:58 +02:00
|
|
|
_logger.debug('__got_attributes_cb %r', attributes)
|
2010-06-22 16:31:21 +02:00
|
|
|
self._get_attributes_call = None
|
2010-07-08 17:20:51 +02:00
|
|
|
self._update_attributes(attributes[self.contact_handle])
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def __error_handler_cb(self, error):
|
2010-06-30 18:01:58 +02:00
|
|
|
_logger.debug('__error_handler_cb %r', error)
|
2010-06-22 16:31:21 +02:00
|
|
|
|
|
|
|
def __properties_changed_cb(self, new_props):
|
|
|
|
_logger.debug('%r: Buddy properties changed to %r', self, new_props)
|
|
|
|
self._update_properties(new_props)
|
|
|
|
|
|
|
|
def _update_properties(self, properties):
|
|
|
|
if 'key' in properties:
|
|
|
|
self.props.key = properties['key']
|
|
|
|
if 'color' in properties:
|
|
|
|
self.props.color = properties['color']
|
|
|
|
if 'current-activity' in properties:
|
|
|
|
self.props.current_activity = properties['current-activity']
|
|
|
|
if 'owner' in properties:
|
|
|
|
self.props.owner = properties['owner']
|
|
|
|
if 'ip4-address' in properties:
|
|
|
|
self.props.ip4_address = properties['ip4-address']
|
|
|
|
if 'tags' in properties:
|
|
|
|
self.props.tags = properties['tags']
|
|
|
|
|
|
|
|
def _update_attributes(self, attributes):
|
|
|
|
nick_key = CONNECTION_INTERFACE_ALIASING + '/alias'
|
|
|
|
if nick_key in attributes:
|
|
|
|
self.props.nick = attributes[nick_key]
|
|
|
|
|
|
|
|
def do_get_property(self, pspec):
|
2010-06-30 18:01:58 +02:00
|
|
|
if pspec.name == 'nick' and self._get_attributes_call is not None:
|
2010-08-12 16:03:40 +02:00
|
|
|
_logger.debug('%r: Blocking on GetContactAttributes() because '
|
|
|
|
'someone wants property nick', self)
|
2010-06-30 18:01:58 +02:00
|
|
|
self._get_attributes_call.block()
|
|
|
|
elif pspec.name != 'nick' and self._get_properties_call is not None:
|
2010-06-22 16:31:21 +02:00
|
|
|
_logger.debug('%r: Blocking on GetProperties() because someone '
|
|
|
|
'wants property %s', self, pspec.name)
|
|
|
|
self._get_properties_call.block()
|
|
|
|
|
|
|
|
return BaseBuddy.do_get_property(self, pspec)
|
|
|
|
|
|
|
|
|
|
|
|
class Owner(BaseBuddy):
|
|
|
|
|
|
|
|
__gtype_name__ = 'PresenceOwner'
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
BaseBuddy.__init__(self)
|
|
|
|
|
2016-04-17 07:57:07 +02:00
|
|
|
self.props.nick = get_nick_name()
|
|
|
|
self.props.color = get_color().to_string()
|
|
|
|
|