2007-02-22 20:11:31 +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
|
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
import gobject
|
2007-02-22 20:11:31 +01:00
|
|
|
import dbus, dbus.service
|
2007-03-08 18:51:10 +01:00
|
|
|
from sugar import util
|
2007-04-13 21:59:36 +02:00
|
|
|
import logging
|
2007-02-22 20:11:31 +01:00
|
|
|
|
2007-03-06 18:22:43 +01:00
|
|
|
from telepathy.interfaces import (CHANNEL_INTERFACE)
|
|
|
|
|
2007-02-22 20:11:31 +01:00
|
|
|
_ACTIVITY_PATH = "/org/laptop/Sugar/Presence/Activities/"
|
|
|
|
_ACTIVITY_INTERFACE = "org.laptop.Sugar.Presence.Activity"
|
|
|
|
|
2007-04-10 21:12:33 +02:00
|
|
|
class DBusGObjectMetaclass(dbus.service.InterfaceType, gobject.GObjectMeta): pass
|
2007-03-08 18:51:10 +01:00
|
|
|
class DBusGObject(dbus.service.Object, gobject.GObject): __metaclass__ = DBusGObjectMetaclass
|
|
|
|
|
|
|
|
|
2007-04-30 03:44:57 +02:00
|
|
|
_PROP_ID = "id"
|
|
|
|
_PROP_NAME = "name"
|
|
|
|
_PROP_COLOR = "color"
|
|
|
|
_PROP_TYPE = "type"
|
|
|
|
_PROP_VALID = "valid"
|
|
|
|
_PROP_LOCAL = "local"
|
|
|
|
_PROP_JOINED = "joined"
|
|
|
|
_PROP_CUSTOM_PROPS = "custom-props"
|
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
class Activity(DBusGObject):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Represents a potentially shareable activity on the network.
|
|
|
|
"""
|
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
__gtype_name__ = "Activity"
|
|
|
|
|
|
|
|
__gsignals__ = {
|
|
|
|
'validity-changed': (gobject.SIGNAL_RUN_FIRST, gobject.TYPE_NONE,
|
|
|
|
([gobject.TYPE_BOOLEAN]))
|
|
|
|
}
|
|
|
|
|
|
|
|
__gproperties__ = {
|
2007-04-30 03:44:57 +02:00
|
|
|
_PROP_ID : (str, None, None, None,
|
|
|
|
gobject.PARAM_READWRITE | gobject.PARAM_CONSTRUCT_ONLY),
|
|
|
|
_PROP_NAME : (str, None, None, None, gobject.PARAM_READWRITE),
|
|
|
|
_PROP_COLOR : (str, None, None, None, gobject.PARAM_READWRITE),
|
|
|
|
_PROP_TYPE : (str, None, None, None, gobject.PARAM_READWRITE),
|
|
|
|
_PROP_VALID : (bool, None, None, False, gobject.PARAM_READABLE),
|
|
|
|
_PROP_LOCAL : (bool, None, None, False,
|
|
|
|
gobject.PARAM_READWRITE | gobject.PARAM_CONSTRUCT_ONLY),
|
|
|
|
_PROP_JOINED : (bool, None, None, False, gobject.PARAM_READABLE),
|
|
|
|
_PROP_CUSTOM_PROPS : (object, None, None,
|
|
|
|
gobject.PARAM_READWRITE | gobject.PARAM_CONSTRUCT_ONLY)
|
2007-03-08 18:51:10 +01:00
|
|
|
}
|
|
|
|
|
2007-04-30 15:51:35 +02:00
|
|
|
_RESERVED_PROPNAMES = __gproperties__.keys()
|
2007-04-30 03:44:57 +02:00
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
def __init__(self, bus_name, object_id, tp, **kwargs):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Initializes the activity and sets its properties to default values.
|
|
|
|
|
|
|
|
bus_name -- DBUS name for lookup on local host
|
|
|
|
object_id -- The unique worldwide ID for this activity
|
|
|
|
tp -- The server plugin object (stands for "telepathy plugin")
|
|
|
|
kwargs -- Keyword arguments for the GObject properties
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
if not bus_name:
|
|
|
|
raise ValueError("DBus bus name must be valid")
|
|
|
|
if not object_id or not isinstance(object_id, int):
|
|
|
|
raise ValueError("object id must be a valid number")
|
|
|
|
if not tp:
|
|
|
|
raise ValueError("telepathy CM must be valid")
|
2007-02-22 20:11:31 +01:00
|
|
|
|
|
|
|
self._object_id = object_id
|
2007-03-08 18:51:10 +01:00
|
|
|
self._object_path = _ACTIVITY_PATH + str(self._object_id)
|
|
|
|
dbus.service.Object.__init__(self, bus_name, self._object_path)
|
|
|
|
|
|
|
|
self._buddies = []
|
|
|
|
self._joined = False
|
|
|
|
|
2007-03-06 17:15:55 +01:00
|
|
|
# the telepathy client
|
|
|
|
self._tp = tp
|
2007-04-13 19:11:59 +02:00
|
|
|
self._text_channel = None
|
2007-03-06 17:15:55 +01:00
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
self._valid = False
|
|
|
|
self._id = None
|
2007-03-14 15:59:30 +01:00
|
|
|
self._color = None
|
2007-03-08 18:51:10 +01:00
|
|
|
self._local = False
|
|
|
|
self._type = None
|
2007-04-30 03:44:57 +02:00
|
|
|
self._custom_props = {}
|
2007-03-08 18:51:10 +01:00
|
|
|
|
2007-04-30 03:44:57 +02:00
|
|
|
# ensure no reserved property names are in custom properties
|
|
|
|
if kwargs.get(_PROP_CUSTOM_PROPS):
|
|
|
|
(rprops, cprops) = self._split_properties(kwargs.get(_PROP_CUSTOM_PROPS))
|
|
|
|
if len(rprops.keys()) > 0:
|
|
|
|
raise ValueError("Cannot use reserved property names '%s'" % ", ".join(rprops.keys()))
|
|
|
|
|
|
|
|
if not kwargs.get(_PROP_ID):
|
2007-03-08 18:51:10 +01:00
|
|
|
raise ValueError("activity id is required")
|
2007-04-30 03:44:57 +02:00
|
|
|
if not util.validate_activity_id(kwargs[_PROP_ID]):
|
|
|
|
raise ValueError("Invalid activity id '%s'" % kwargs[_PROP_ID])
|
2007-03-08 18:51:10 +01:00
|
|
|
|
|
|
|
gobject.GObject.__init__(self, **kwargs)
|
|
|
|
if self.props.local and not self.props.valid:
|
|
|
|
raise RuntimeError("local activities require color, type, and name")
|
|
|
|
|
2007-04-13 21:42:54 +02:00
|
|
|
# If not yet valid, query activity properties
|
|
|
|
if not self.props.valid:
|
|
|
|
tp.update_activity_properties(self._id)
|
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
def do_get_property(self, pspec):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Gets the value of a property associated with this activity.
|
|
|
|
|
|
|
|
pspec -- Property specifier
|
|
|
|
|
|
|
|
returns The value of the given property.
|
|
|
|
"""
|
|
|
|
|
2007-04-30 03:44:57 +02:00
|
|
|
if pspec.name == _PROP_ID:
|
2007-03-08 18:51:10 +01:00
|
|
|
return self._id
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_NAME:
|
2007-03-08 18:51:10 +01:00
|
|
|
return self._name
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_COLOR:
|
2007-03-08 18:51:10 +01:00
|
|
|
return self._color
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_TYPE:
|
2007-03-08 18:51:10 +01:00
|
|
|
return self._type
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_VALID:
|
2007-03-08 18:51:10 +01:00
|
|
|
return self._valid
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_JOINED:
|
2007-03-08 18:51:10 +01:00
|
|
|
return self._joined
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_LOCAL:
|
2007-03-08 18:51:10 +01:00
|
|
|
return self._local
|
|
|
|
|
|
|
|
def do_set_property(self, pspec, value):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Sets the value of a property associated with this activity.
|
|
|
|
|
|
|
|
pspec -- Property specifier
|
|
|
|
value -- Desired value
|
|
|
|
|
|
|
|
Note that the "type" property can be set only once; attempting to set it
|
|
|
|
to something different later will raise a RuntimeError.
|
|
|
|
|
|
|
|
"""
|
2007-04-30 03:44:57 +02:00
|
|
|
if pspec.name == _PROP_ID:
|
|
|
|
if self._id:
|
|
|
|
raise RuntimeError("activity ID is already set")
|
2007-03-08 18:51:10 +01:00
|
|
|
self._id = value
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_NAME:
|
2007-03-08 18:51:10 +01:00
|
|
|
self._name = value
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_COLOR:
|
2007-03-08 18:51:10 +01:00
|
|
|
self._color = value
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_TYPE:
|
2007-03-08 18:51:10 +01:00
|
|
|
if self._type:
|
|
|
|
raise RuntimeError("activity type is already set")
|
|
|
|
self._type = value
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_JOINED:
|
2007-03-08 18:51:10 +01:00
|
|
|
self._joined = value
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_LOCAL:
|
2007-03-08 18:51:10 +01:00
|
|
|
self._local = value
|
2007-04-30 03:44:57 +02:00
|
|
|
elif pspec.name == _PROP_CUSTOM_PROPS:
|
2007-04-30 15:51:35 +02:00
|
|
|
if not value:
|
|
|
|
value = {}
|
2007-04-30 03:44:57 +02:00
|
|
|
(rprops, cprops) = self._split_properties(value)
|
|
|
|
self._custom_props = {}
|
2007-04-30 15:51:35 +02:00
|
|
|
for (key, dvalue) in cprops.items():
|
2007-04-30 03:44:57 +02:00
|
|
|
self._custom_props[str(key)] = str(dvalue)
|
2007-03-08 18:51:10 +01:00
|
|
|
|
|
|
|
self._update_validity()
|
|
|
|
|
|
|
|
def _update_validity(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Sends a "validity-changed" signal if this activity's validity has changed.
|
|
|
|
|
|
|
|
Determines whether this activity's status has changed from valid to
|
|
|
|
invalid, or invalid to valid, and emits a "validity-changed" signal
|
|
|
|
if either is true. "Valid" means that the object's type, ID, name,
|
|
|
|
colour and type properties have all been set to something valid
|
|
|
|
(i.e., not "None").
|
|
|
|
|
|
|
|
"""
|
2007-03-08 18:51:10 +01:00
|
|
|
try:
|
|
|
|
old_valid = self._valid
|
|
|
|
if self._color and self._name and self._id and self._type:
|
|
|
|
self._valid = True
|
|
|
|
else:
|
|
|
|
self._valid = False
|
|
|
|
|
|
|
|
if old_valid != self._valid:
|
|
|
|
self.emit("validity-changed", self._valid)
|
|
|
|
except AttributeError:
|
|
|
|
self._valid = False
|
2007-02-22 20:11:31 +01:00
|
|
|
|
|
|
|
# dbus signals
|
|
|
|
@dbus.service.signal(_ACTIVITY_INTERFACE,
|
|
|
|
signature="o")
|
|
|
|
def BuddyJoined(self, buddy_path):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Generates DBUS signal when a buddy joins this activity.
|
|
|
|
|
|
|
|
buddy_path -- DBUS path to buddy object
|
|
|
|
"""
|
2007-02-22 20:11:31 +01:00
|
|
|
pass
|
|
|
|
|
|
|
|
@dbus.service.signal(_ACTIVITY_INTERFACE,
|
|
|
|
signature="o")
|
|
|
|
def BuddyLeft(self, buddy_path):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Generates DBUS signal when a buddy leaves this activity.
|
|
|
|
|
|
|
|
buddy_path -- DBUS path to buddy object
|
|
|
|
"""
|
2007-02-22 20:11:31 +01:00
|
|
|
pass
|
|
|
|
|
|
|
|
@dbus.service.signal(_ACTIVITY_INTERFACE,
|
|
|
|
signature="o")
|
|
|
|
def NewChannel(self, channel_path):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Generates DBUS signal when a new channel is created for this activity.
|
|
|
|
|
|
|
|
channel_path -- DBUS path to new channel
|
|
|
|
|
|
|
|
XXX - what is this supposed to do? Who is supposed to call it?
|
|
|
|
What is the channel path? Right now this is never called.
|
|
|
|
|
|
|
|
"""
|
2007-02-22 20:11:31 +01:00
|
|
|
pass
|
|
|
|
|
|
|
|
# dbus methods
|
|
|
|
@dbus.service.method(_ACTIVITY_INTERFACE,
|
|
|
|
in_signature="", out_signature="s")
|
|
|
|
def GetId(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""DBUS method to get this activity's ID
|
|
|
|
|
|
|
|
returns Activity ID
|
|
|
|
"""
|
2007-03-08 18:51:10 +01:00
|
|
|
return self.props.id
|
2007-02-22 20:11:31 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_ACTIVITY_INTERFACE,
|
|
|
|
in_signature="", out_signature="s")
|
|
|
|
def GetColor(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""DBUS method to get this activity's colour
|
|
|
|
|
|
|
|
returns Activity colour
|
|
|
|
"""
|
2007-03-08 18:51:10 +01:00
|
|
|
return self.props.color
|
2007-02-22 20:11:31 +01:00
|
|
|
|
2007-03-08 16:16:06 +01:00
|
|
|
@dbus.service.method(_ACTIVITY_INTERFACE,
|
|
|
|
in_signature="", out_signature="s")
|
|
|
|
def GetType(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""DBUS method to get this activity's type
|
|
|
|
|
|
|
|
returns Activity type
|
|
|
|
"""
|
2007-03-08 18:51:10 +01:00
|
|
|
return self.props.type
|
2007-03-08 16:16:06 +01:00
|
|
|
|
2007-04-13 19:11:59 +02:00
|
|
|
@dbus.service.method(_ACTIVITY_INTERFACE, in_signature="", out_signature="",
|
|
|
|
async_callbacks=('async_cb', 'async_err_cb'))
|
|
|
|
def Join(self, async_cb, async_err_cb):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""DBUS method to for the local user to attempt to join the activity
|
|
|
|
|
|
|
|
async_cb -- Callback method to be called if join attempt is successful
|
|
|
|
async_err_cb -- Callback method to be called if join attempt is unsuccessful
|
|
|
|
|
|
|
|
"""
|
2007-04-13 19:11:59 +02:00
|
|
|
self.join(async_cb, async_err_cb)
|
2007-02-22 20:11:31 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_ACTIVITY_INTERFACE,
|
|
|
|
in_signature="", out_signature="ao")
|
|
|
|
def GetJoinedBuddies(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""DBUS method to return a list of valid buddies who are joined in this activity
|
|
|
|
|
|
|
|
returns A list of buddy object paths
|
|
|
|
"""
|
2007-03-08 18:51:10 +01:00
|
|
|
ret = []
|
2007-02-22 20:11:31 +01:00
|
|
|
for buddy in self._buddies:
|
2007-03-08 18:51:10 +01:00
|
|
|
if buddy.props.valid:
|
|
|
|
ret.append(buddy.object_path())
|
2007-02-22 20:11:31 +01:00
|
|
|
return ret
|
|
|
|
|
|
|
|
@dbus.service.method(_ACTIVITY_INTERFACE,
|
|
|
|
in_signature="", out_signature="soao")
|
|
|
|
def GetChannels(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""DBUS method to get the list of channels associated with this activity
|
|
|
|
|
|
|
|
returns XXX - Not sure what this returns as get_channels doesn't actually return
|
|
|
|
a list of channels!
|
|
|
|
"""
|
2007-03-06 17:50:49 +01:00
|
|
|
return self.get_channels()
|
2007-02-22 20:11:31 +01:00
|
|
|
|
2007-03-07 20:09:40 +01:00
|
|
|
@dbus.service.method(_ACTIVITY_INTERFACE,
|
|
|
|
in_signature="", out_signature="s")
|
|
|
|
def GetName(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""DBUS method to get this activity's name
|
|
|
|
|
|
|
|
returns Activity name
|
|
|
|
"""
|
2007-03-08 18:51:10 +01:00
|
|
|
return self.props.name
|
2007-03-07 20:09:40 +01:00
|
|
|
|
2007-02-22 20:11:31 +01:00
|
|
|
# methods
|
|
|
|
def object_path(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Retrieves our dbus.ObjectPath object
|
|
|
|
|
|
|
|
returns DBUS ObjectPath object
|
|
|
|
"""
|
2007-02-22 20:11:31 +01:00
|
|
|
return dbus.ObjectPath(self._object_path)
|
|
|
|
|
2007-03-05 18:56:17 +01:00
|
|
|
def get_joined_buddies(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Local method to return a list of valid buddies who are joined in this activity
|
|
|
|
|
|
|
|
This method is called by the PresenceService on the local machine.
|
|
|
|
|
|
|
|
returns A list of buddy objects
|
|
|
|
"""
|
2007-03-08 18:51:10 +01:00
|
|
|
ret = []
|
|
|
|
for buddy in self._buddies:
|
|
|
|
if buddy.props.valid:
|
|
|
|
ret.append(buddy)
|
|
|
|
return ret
|
2007-03-08 16:16:06 +01:00
|
|
|
|
2007-03-05 18:56:17 +01:00
|
|
|
def buddy_joined(self, buddy):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Adds a buddy to this activity and sends a BuddyJoined signal
|
|
|
|
|
|
|
|
buddy -- Buddy object representing the buddy being added
|
|
|
|
|
|
|
|
Adds a buddy to this activity if the buddy is not already in the buddy list.
|
|
|
|
If this activity is "valid", a BuddyJoined signal is also sent.
|
|
|
|
This method is called by the PresenceService on the local machine.
|
|
|
|
|
|
|
|
"""
|
2007-03-05 18:56:17 +01:00
|
|
|
if buddy not in self._buddies:
|
|
|
|
self._buddies.append(buddy)
|
2007-03-08 18:51:10 +01:00
|
|
|
if self.props.valid:
|
|
|
|
self.BuddyJoined(buddy.object_path())
|
2007-03-05 18:56:17 +01:00
|
|
|
|
|
|
|
def buddy_left(self, buddy):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Removes a buddy from this activity and sends a BuddyLeft signal.
|
|
|
|
|
|
|
|
buddy -- Buddy object representing the buddy being removed
|
|
|
|
|
|
|
|
Removes a buddy from this activity if the buddy is in the buddy list.
|
|
|
|
If this activity is "valid", a BuddyLeft signal is also sent.
|
|
|
|
This method is called by the PresenceService on the local machine.
|
|
|
|
|
|
|
|
"""
|
2007-03-05 18:56:17 +01:00
|
|
|
if buddy in self._buddies:
|
|
|
|
self._buddies.remove(buddy)
|
2007-03-08 18:51:10 +01:00
|
|
|
if self.props.valid:
|
|
|
|
self.BuddyLeft(buddy.object_path())
|
2007-03-06 17:15:55 +01:00
|
|
|
|
2007-04-13 19:11:59 +02:00
|
|
|
def _handle_share_join(self, tp, text_channel):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Called when a join to a network activity was successful.
|
|
|
|
|
|
|
|
Called by the _shared_cb and _joined_cb methods.
|
|
|
|
"""
|
2007-04-13 19:11:59 +02:00
|
|
|
if not text_channel:
|
|
|
|
logging.debug("Error sharing: text channel was None, shouldn't happen")
|
|
|
|
raise RuntimeError("Plugin returned invalid text channel")
|
|
|
|
|
|
|
|
self._text_channel = text_channel
|
|
|
|
self._text_channel[CHANNEL_INTERFACE].connect_to_signal('Closed',
|
|
|
|
self._text_channel_closed_cb)
|
|
|
|
self._joined = True
|
|
|
|
return True
|
|
|
|
|
|
|
|
def _shared_cb(self, tp, activity_id, text_channel, exc, userdata):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""XXX - not documented yet
|
|
|
|
"""
|
2007-04-13 19:11:59 +02:00
|
|
|
if activity_id != self.props.id:
|
|
|
|
# Not for us
|
|
|
|
return
|
|
|
|
|
2007-04-13 22:59:16 +02:00
|
|
|
(sigid, owner, async_cb, async_err_cb) = userdata
|
2007-04-13 19:11:59 +02:00
|
|
|
self._tp.disconnect(sigid)
|
|
|
|
|
|
|
|
if exc:
|
2007-04-13 22:00:22 +02:00
|
|
|
logging.debug("Share of activity %s failed: %s" % (self._id, exc))
|
2007-04-13 19:11:59 +02:00
|
|
|
async_err_cb(exc)
|
|
|
|
else:
|
|
|
|
self._handle_share_join(tp, text_channel)
|
|
|
|
self.send_properties()
|
2007-04-13 22:59:16 +02:00
|
|
|
owner.add_activity(self)
|
2007-04-13 19:11:59 +02:00
|
|
|
async_cb(dbus.ObjectPath(self._object_path))
|
2007-04-13 22:00:22 +02:00
|
|
|
logging.debug("Share of activity %s succeeded." % self._id)
|
2007-04-13 19:11:59 +02:00
|
|
|
|
2007-04-13 22:59:16 +02:00
|
|
|
def _share(self, (async_cb, async_err_cb), owner):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""XXX - not documented yet
|
|
|
|
|
|
|
|
XXX - This method is called externally by the PresenceService despite the fact
|
|
|
|
that this is supposed to be an internal method!
|
|
|
|
"""
|
2007-04-13 22:00:22 +02:00
|
|
|
logging.debug("Starting share of activity %s" % self._id)
|
2007-04-13 19:11:59 +02:00
|
|
|
if self._joined:
|
|
|
|
async_err_cb(RuntimeError("Already shared activity %s" % self.props.id))
|
|
|
|
return
|
|
|
|
sigid = self._tp.connect('activity-shared', self._shared_cb)
|
2007-04-13 22:59:16 +02:00
|
|
|
self._tp.share_activity(self.props.id, (sigid, owner, async_cb, async_err_cb))
|
2007-04-13 22:00:22 +02:00
|
|
|
logging.debug("done with share attempt %s" % self._id)
|
2007-04-13 19:11:59 +02:00
|
|
|
|
|
|
|
def _joined_cb(self, tp, activity_id, text_channel, exc, userdata):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""XXX - not documented yet
|
|
|
|
"""
|
2007-04-13 19:11:59 +02:00
|
|
|
if activity_id != self.props.id:
|
|
|
|
# Not for us
|
|
|
|
return
|
|
|
|
|
|
|
|
(sigid, async_cb, async_err_cb) = userdata
|
|
|
|
self._tp.disconnect(sigid)
|
|
|
|
|
|
|
|
if exc:
|
|
|
|
async_err_cb(exc)
|
|
|
|
else:
|
|
|
|
self._handle_share_join(tp, text_channel)
|
|
|
|
async_cb()
|
|
|
|
|
|
|
|
def join(self, async_cb, async_err_cb):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Local method for the local user to attempt to join the activity.
|
|
|
|
|
|
|
|
async_cb -- Callback method to be called if join attempt is successful
|
|
|
|
async_err_cb -- Callback method to be called if join attempt is unsuccessful
|
|
|
|
|
|
|
|
The two callbacks are passed to the server_plugin ("tp") object, which in turn
|
|
|
|
passes them back as parameters in a callback to the _joined_cb method; this
|
|
|
|
callback is set up within this method.
|
|
|
|
|
|
|
|
"""
|
2007-04-13 19:11:59 +02:00
|
|
|
if self._joined:
|
|
|
|
async_err_cb(RuntimeError("Already joined activity %s" % self.props.id))
|
|
|
|
return
|
|
|
|
sigid = self._tp.connect('activity-joined', self._joined_cb)
|
|
|
|
self._tp.join_activity(self.props.id, (sigid, async_cb, async_err_cb))
|
2007-03-06 17:50:49 +01:00
|
|
|
|
|
|
|
def get_channels(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Local method to get the list of channels associated with this activity
|
|
|
|
|
|
|
|
returns XXX - expected a list of channels, instead returning a tuple? ???
|
|
|
|
"""
|
2007-03-06 17:50:49 +01:00
|
|
|
conn = self._tp.get_connection()
|
|
|
|
# FIXME add tubes and others channels
|
2007-04-13 19:11:59 +02:00
|
|
|
return str(conn.service_name), conn.object_path, [self._text_channel.object_path]
|
2007-03-06 18:22:43 +01:00
|
|
|
|
|
|
|
def leave(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Local method called when the user wants to leave the activity.
|
|
|
|
|
|
|
|
(XXX - doesn't appear to be called anywhere!)
|
|
|
|
|
|
|
|
"""
|
2007-03-06 18:22:43 +01:00
|
|
|
if self._joined:
|
2007-04-13 19:11:59 +02:00
|
|
|
self._text_channel[CHANNEL_INTERFACE].Close()
|
2007-03-07 13:15:38 +01:00
|
|
|
|
2007-04-13 19:11:59 +02:00
|
|
|
def _text_channel_closed_cb(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Callback method called when the text channel is closed.
|
|
|
|
|
|
|
|
This callback is set up in the _handle_share_join method.
|
|
|
|
"""
|
2007-03-07 13:15:38 +01:00
|
|
|
self._joined = False
|
2007-04-13 19:11:59 +02:00
|
|
|
self._text_channel = None
|
2007-03-14 15:59:30 +01:00
|
|
|
|
|
|
|
def send_properties(self):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Tells the Telepathy server what the properties of this activity are.
|
|
|
|
|
|
|
|
"""
|
2007-03-14 15:59:30 +01:00
|
|
|
props = {}
|
|
|
|
props['name'] = self._name
|
|
|
|
props['color'] = self._color
|
|
|
|
props['type'] = self._type
|
2007-04-30 03:44:57 +02:00
|
|
|
|
|
|
|
# Add custom properties
|
|
|
|
for (key, value) in self._custom_props.items():
|
|
|
|
props[key] = value
|
|
|
|
|
2007-03-14 15:59:30 +01:00
|
|
|
self._tp.set_activity_properties(self.props.id, props)
|
|
|
|
|
|
|
|
def set_properties(self, properties):
|
2007-04-21 01:07:41 +02:00
|
|
|
"""Sets name, colour and/or type properties for this activity all at once.
|
|
|
|
|
|
|
|
properties - Dictionary object containing properties keyed by property names
|
|
|
|
|
|
|
|
Note that if any of the name, colour and/or type property values is changed from
|
|
|
|
what it originally was, the update_validity method will be called, resulting in
|
2007-04-30 03:44:57 +02:00
|
|
|
a "validity-changed" signal being generated. Called by the PresenceService
|
|
|
|
on the local machine.
|
2007-04-21 01:07:41 +02:00
|
|
|
"""
|
2007-03-14 15:59:30 +01:00
|
|
|
changed = False
|
2007-04-30 03:44:57 +02:00
|
|
|
# split reserved properties from activity-custom properties
|
2007-04-30 15:51:35 +02:00
|
|
|
(rprops, cprops) = self._split_properties(properties)
|
2007-04-30 03:44:57 +02:00
|
|
|
if _PROP_NAME in rprops.keys():
|
|
|
|
name = rprops[_PROP_NAME]
|
2007-03-14 15:59:30 +01:00
|
|
|
if name != self._name:
|
|
|
|
self._name = name
|
|
|
|
changed = True
|
|
|
|
|
2007-04-30 03:44:57 +02:00
|
|
|
if _PROP_COLOR in rprops.keys():
|
|
|
|
color = rprops[_PROP_COLOR]
|
2007-03-14 15:59:30 +01:00
|
|
|
if color != self._color:
|
|
|
|
self._color = color
|
|
|
|
changed = True
|
|
|
|
|
2007-04-30 03:44:57 +02:00
|
|
|
if _PROP_TYPE in rprops.keys():
|
|
|
|
type = rprops[_PROP_TYPE]
|
|
|
|
# Type can never be changed after first set
|
|
|
|
if self._type:
|
|
|
|
logging.debug("Activity type changed by network; this is illegal")
|
|
|
|
else:
|
|
|
|
if type != self._type:
|
|
|
|
self._type = type
|
|
|
|
changed = True
|
|
|
|
|
|
|
|
# Set custom properties
|
|
|
|
if len(cprops.keys()) > 0:
|
|
|
|
self.props.custom_props = cprops
|
2007-03-14 15:59:30 +01:00
|
|
|
|
|
|
|
if changed:
|
|
|
|
self._update_validity()
|
2007-04-30 03:44:57 +02:00
|
|
|
|
|
|
|
def _split_properties(self, properties):
|
|
|
|
"""Extracts reserved properties.
|
|
|
|
|
|
|
|
properties - Dictionary object containing properties keyed by property names
|
|
|
|
|
|
|
|
returns a tuple of 2 dictionaries, reserved properties and custom properties
|
|
|
|
"""
|
|
|
|
rprops = {}
|
|
|
|
cprops = {}
|
2007-04-30 15:51:35 +02:00
|
|
|
for (key, value) in properties.items():
|
2007-04-30 03:44:57 +02:00
|
|
|
if key in self._RESERVED_PROPNAMES:
|
|
|
|
rprops[key] = value
|
|
|
|
else:
|
|
|
|
cprops[key] = value
|
|
|
|
return (rprops, cprops)
|