Handle invitations inside Activity.

This commit is contained in:
Marco Pesenti Gritti
2007-09-11 17:53:27 +02:00
parent 6ff3486f42
commit fdb9c57e65
3 changed files with 26 additions and 10 deletions
+14
View File
@@ -543,6 +543,20 @@ class Activity(Window, gtk.Container):
# FIXME: some way to distinguish between share scopes
self._jobject.metadata['share-scope'] = SCOPE_NEIGHBORHOOD
def _invite_response_cb(self, error):
if error:
logging.error('Invite failed: %s' % error)
def invite(self, buddy_key):
if self._shared_activity is None:
return
buddy = self._pservice.get_buddy(buddy_key)
if buddy:
self._shared_activity.invite(buddy, '', self._invite_response_cb)
else:
logging.error('Cannot invite %s, no such buddy.' % buddy_key)
def share(self, private=False):
"""Request that the activity be shared on the network.
+5
View File
@@ -59,3 +59,8 @@ class ActivityService(dbus.service.Object):
def SetActive(self, active):
logging.debug('ActivityService.set_active: %s.' % active)
self._activity.props.active = active
@dbus.service.method(_ACTIVITY_INTERFACE)
def Invite(self, buddy_key):
self._activity.invite(buddy_key)