2007-02-21 12:41:26 +01:00
|
|
|
# Copyright (C) 2007, Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# 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-21 13:06:45 +01:00
|
|
|
import dbus, dbus.service, dbus.glib
|
2007-02-22 20:11:31 +01:00
|
|
|
from telepathy.client import ManagerRegistry, Connection
|
2007-02-23 18:04:16 +01:00
|
|
|
from telepathy.interfaces import (CONN_MGR_INTERFACE, CONN_INTERFACE)
|
|
|
|
from telepathy.constants import (CONNECTION_STATUS_CONNECTING, CONNECTION_STATUS_CONNECTED,
|
|
|
|
CONNECTION_STATUS_DISCONNECTED, CONNECTION_HANDLE_TYPE_CONTACT)
|
2007-02-22 20:11:31 +01:00
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
from server_plugin import ServerPlugin
|
|
|
|
from linklocal_plugin import LinkLocalPlugin
|
|
|
|
|
2007-02-23 17:30:25 +01:00
|
|
|
from buddy import Buddy, Owner
|
|
|
|
from activity import Activity
|
2007-02-21 13:06:45 +01:00
|
|
|
|
|
|
|
_PRESENCE_SERVICE = "org.laptop.Sugar.Presence"
|
|
|
|
_PRESENCE_INTERFACE = "org.laptop.Sugar.Presence"
|
|
|
|
_PRESENCE_PATH = "/org/laptop/Sugar/Presence"
|
|
|
|
|
|
|
|
|
|
|
|
class NotFoundError(dbus.DBusException):
|
|
|
|
def __init__(self):
|
|
|
|
dbus.DBusException.__init__(self)
|
|
|
|
self._dbus_error_name = _PRESENCE_INTERFACE + '.NotFound'
|
2007-02-21 12:41:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
class PresenceService(dbus.service.Object):
|
2007-02-21 13:06:45 +01:00
|
|
|
def __init__(self):
|
2007-02-21 13:58:16 +01:00
|
|
|
self._next_object_id = 0
|
|
|
|
|
2007-02-21 13:20:59 +01:00
|
|
|
self._buddies = {} # key -> Buddy
|
2007-03-05 18:56:17 +01:00
|
|
|
self._handles_buddies = {} # tp client -> (handle -> Buddy)
|
2007-02-21 13:20:59 +01:00
|
|
|
self._activities = {} # activity id -> Activity
|
|
|
|
|
2007-02-21 13:06:45 +01:00
|
|
|
bus = dbus.SessionBus()
|
|
|
|
self._bus_name = dbus.service.BusName(_PRESENCE_SERVICE, bus=bus)
|
2007-02-21 13:58:16 +01:00
|
|
|
|
2007-02-22 20:11:31 +01:00
|
|
|
# Create the Owner object
|
|
|
|
objid = self._get_next_object_id()
|
2007-03-02 17:10:44 +01:00
|
|
|
self._owner = Owner(self._bus_name, objid)
|
|
|
|
self._buddies[self._owner.props.key] = self._owner
|
2007-02-22 20:11:31 +01:00
|
|
|
|
|
|
|
self._registry = ManagerRegistry()
|
|
|
|
self._registry.LoadManagers()
|
2007-02-21 13:58:16 +01:00
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
# Set up the server connection
|
2007-03-09 22:29:49 +01:00
|
|
|
self._server_plugin = ServerPlugin(self._registry, self._owner)
|
2007-03-05 18:56:17 +01:00
|
|
|
self._handles_buddies[self._server_plugin] = {}
|
2007-02-23 17:30:25 +01:00
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
self._server_plugin.connect('status', self._server_status_cb)
|
|
|
|
self._server_plugin.connect('contact-online', self._contact_online)
|
|
|
|
self._server_plugin.connect('contact-offline', self._contact_offline)
|
2007-02-26 17:18:52 +01:00
|
|
|
self._server_plugin.connect('avatar-updated', self._avatar_updated)
|
2007-02-27 23:51:53 +01:00
|
|
|
self._server_plugin.connect('properties-changed', self._properties_changed)
|
2007-03-05 18:56:17 +01:00
|
|
|
self._server_plugin.connect('contact-activities-changed', self._contact_activities_changed)
|
2007-03-07 19:46:48 +01:00
|
|
|
self._server_plugin.connect('activity-invitation', self._activity_invitation)
|
|
|
|
self._server_plugin.connect('private-invitation', self._private_invitation)
|
2007-02-26 01:24:48 +01:00
|
|
|
self._server_plugin.start()
|
2007-02-23 14:15:51 +01:00
|
|
|
|
2007-02-26 01:24:48 +01:00
|
|
|
# Set up the link local connection
|
2007-03-09 22:29:49 +01:00
|
|
|
self._ll_plugin = LinkLocalPlugin(self._registry, self._owner)
|
2007-03-05 18:56:17 +01:00
|
|
|
self._handles_buddies[self._ll_plugin] = {}
|
2007-02-23 14:15:51 +01:00
|
|
|
|
|
|
|
dbus.service.Object.__init__(self, self._bus_name, _PRESENCE_PATH)
|
|
|
|
|
2007-02-26 04:45:16 +01:00
|
|
|
def _server_status_cb(self, plugin, status, reason):
|
2007-03-06 17:15:55 +01:00
|
|
|
if status == CONNECTION_STATUS_CONNECTED:
|
|
|
|
pass
|
2007-02-23 18:04:16 +01:00
|
|
|
|
2007-02-28 17:02:43 +01:00
|
|
|
def _contact_online(self, tp, handle, props):
|
2007-02-26 12:28:50 +01:00
|
|
|
new_buddy = False
|
2007-02-28 17:02:43 +01:00
|
|
|
key = props['key']
|
2007-02-23 17:30:25 +01:00
|
|
|
buddy = self._buddies.get(key)
|
|
|
|
if not buddy:
|
|
|
|
# we don't know yet this buddy
|
|
|
|
objid = self._get_next_object_id()
|
2007-03-01 04:13:27 +01:00
|
|
|
buddy = Buddy(self._bus_name, objid, key=key)
|
2007-03-02 17:10:44 +01:00
|
|
|
buddy.connect("validity-changed", self._buddy_validity_changed_cb)
|
2007-02-23 17:30:25 +01:00
|
|
|
self._buddies[key] = buddy
|
|
|
|
|
2007-03-05 18:56:17 +01:00
|
|
|
buddies = self._handles_buddies[tp]
|
2007-02-23 17:30:25 +01:00
|
|
|
buddies[handle] = buddy
|
2007-02-26 12:28:50 +01:00
|
|
|
# store the handle of the buddy for this CM
|
|
|
|
buddy.handles[tp] = handle
|
|
|
|
|
2007-02-28 17:02:43 +01:00
|
|
|
buddy.set_properties(props)
|
2007-03-02 17:10:44 +01:00
|
|
|
|
|
|
|
def _buddy_validity_changed_cb(self, buddy, valid):
|
|
|
|
if valid:
|
|
|
|
self.BuddyAppeared(buddy.object_path())
|
|
|
|
print "New Buddy: %s (%s)" % (buddy.props.nick, buddy.props.color)
|
|
|
|
else:
|
|
|
|
self.BuddyDisappeared(buddy.object_path())
|
|
|
|
print "Buddy left: %s (%s)" % (buddy.props.nick, buddy.props.color)
|
|
|
|
|
2007-02-23 17:30:25 +01:00
|
|
|
def _contact_offline(self, tp, handle):
|
2007-03-05 18:56:17 +01:00
|
|
|
buddy = self._handles_buddies[tp].pop(handle)
|
2007-03-02 17:10:44 +01:00
|
|
|
key = buddy.props.key
|
2007-02-23 17:30:25 +01:00
|
|
|
|
2007-02-26 12:28:50 +01:00
|
|
|
# the handle of the buddy for this CM is not valid anymore
|
|
|
|
buddy.handles.pop(tp)
|
|
|
|
if not buddy.handles:
|
2007-03-02 17:10:44 +01:00
|
|
|
if buddy.props.valid:
|
|
|
|
self.BuddyDisappeared(buddy.object_path())
|
|
|
|
print "Buddy left: %s (%s)" % (buddy.props.nick, buddy.props.color)
|
2007-03-01 04:13:27 +01:00
|
|
|
self._buddies.pop(key)
|
2007-02-23 14:15:51 +01:00
|
|
|
|
|
|
|
def _get_next_object_id(self):
|
|
|
|
"""Increment and return the object ID counter."""
|
|
|
|
self._next_object_id = self._next_object_id + 1
|
|
|
|
return self._next_object_id
|
|
|
|
|
2007-02-26 17:18:52 +01:00
|
|
|
def _avatar_updated(self, tp, handle, avatar):
|
2007-03-05 18:56:17 +01:00
|
|
|
buddy = self._handles_buddies[tp].get(handle)
|
2007-03-02 17:10:44 +01:00
|
|
|
if buddy and not buddy.props.owner:
|
|
|
|
print "Buddy %s icon updated" % buddy.props.key
|
|
|
|
buddy.props.icon = avatar
|
2007-02-26 17:18:52 +01:00
|
|
|
|
2007-02-27 23:51:53 +01:00
|
|
|
def _properties_changed(self, tp, handle, prop):
|
2007-03-05 18:56:17 +01:00
|
|
|
buddy = self._handles_buddies[tp].get(handle)
|
2007-02-27 23:51:53 +01:00
|
|
|
if buddy:
|
|
|
|
buddy.set_properties(prop)
|
2007-03-08 15:45:12 +01:00
|
|
|
#print "Buddy %s properties updated" % buddy.props.key
|
2007-02-27 23:51:53 +01:00
|
|
|
|
2007-03-06 17:15:55 +01:00
|
|
|
def _new_activity(self, activity_id, tp):
|
2007-03-08 18:51:10 +01:00
|
|
|
try:
|
|
|
|
objid = self._get_next_object_id()
|
|
|
|
activity = Activity(self._bus_name, objid, tp, id=activity_id)
|
|
|
|
except Exception, e:
|
|
|
|
print "Invalid activity: %s" % e
|
|
|
|
return None
|
|
|
|
|
|
|
|
activity.connect("validity-changed", self._activity_validity_changed_cb)
|
|
|
|
|
2007-03-05 18:56:17 +01:00
|
|
|
self._activities[activity_id] = activity
|
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
# FIXME
|
|
|
|
# Use values from the network
|
|
|
|
import random
|
|
|
|
names = ["Tommy", "Susie", "Jill", "Bryan", "Nathan", "Sophia", "Haley", "Jimmy"]
|
|
|
|
name = names[random.randint(0, len(names) - 1)]
|
|
|
|
activity.props.name = "Chat with %s" % name
|
|
|
|
activity.props.type = "org.laptop.Sugar.Chat"
|
|
|
|
from sugar.graphics import xocolor
|
|
|
|
color = xocolor.XoColor().to_string()
|
|
|
|
activity.props.color = color
|
2007-03-05 18:56:17 +01:00
|
|
|
|
|
|
|
return activity
|
|
|
|
|
|
|
|
def _remove_activity(self, activity):
|
2007-03-08 18:51:10 +01:00
|
|
|
print "remove activity", activity.props.id
|
2007-03-05 18:56:17 +01:00
|
|
|
|
|
|
|
self.ActivityDisappeared(activity.object_path())
|
2007-03-08 18:51:10 +01:00
|
|
|
del self._activities[activity.props.id]
|
2007-03-05 18:56:17 +01:00
|
|
|
|
|
|
|
def _contact_activities_changed(self, tp, contact_handle, activities):
|
|
|
|
print "------------activities changed-------------"
|
|
|
|
buddies = self._handles_buddies[tp]
|
|
|
|
buddy = buddies.get(contact_handle)
|
|
|
|
|
|
|
|
if not buddy:
|
|
|
|
# We don't know this buddy
|
|
|
|
# FIXME: What should we do here?
|
|
|
|
# FIXME: Do we need to check if the buddy is valid or something?
|
|
|
|
print "contact_activities_changed: buddy unknow"
|
|
|
|
return
|
|
|
|
|
|
|
|
old_activities = set()
|
|
|
|
for activity in buddy.get_joined_activities():
|
2007-03-08 18:51:10 +01:00
|
|
|
old_activities.add(activity.props.id)
|
2007-03-05 18:56:17 +01:00
|
|
|
|
|
|
|
new_activities = set(activities)
|
|
|
|
|
|
|
|
activities_joined = new_activities - old_activities
|
|
|
|
for act in activities_joined:
|
|
|
|
print "buddy", contact_handle, "joined", act
|
|
|
|
activity = self._activities.get(act)
|
|
|
|
if not activity:
|
2007-03-08 18:51:10 +01:00
|
|
|
# new activity, can fail
|
2007-03-06 17:15:55 +01:00
|
|
|
activity = self._new_activity(act, tp)
|
2007-03-05 18:56:17 +01:00
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
if activity:
|
|
|
|
activity.buddy_joined(buddy)
|
|
|
|
buddy.add_activity(activity)
|
2007-03-06 17:15:55 +01:00
|
|
|
|
2007-03-05 18:56:17 +01:00
|
|
|
activities_left = old_activities - new_activities
|
|
|
|
for act in activities_left:
|
|
|
|
print "buddy", contact_handle, "left", act
|
|
|
|
activity = self._activities.get(act)
|
|
|
|
if not activity:
|
|
|
|
continue
|
|
|
|
|
|
|
|
activity.buddy_left(buddy)
|
|
|
|
buddy.remove_activity(activity)
|
|
|
|
|
|
|
|
if not activity.get_joined_buddies():
|
|
|
|
self._remove_activity(activity)
|
|
|
|
|
|
|
|
# current activity
|
|
|
|
if len(activities) > 0:
|
|
|
|
buddy.set_properties({'current-activity':activities[0]})
|
2007-02-27 23:51:53 +01:00
|
|
|
|
2007-03-07 19:46:48 +01:00
|
|
|
def _activity_invitation(self, tp, act_id):
|
2007-03-07 15:27:47 +01:00
|
|
|
activity = self._activities.get(act_id)
|
|
|
|
if activity:
|
2007-03-07 19:46:48 +01:00
|
|
|
self.ActivityInvitation(activity.object_path())
|
|
|
|
|
|
|
|
def _private_invitation(self, tp, chan_path):
|
|
|
|
conn = tp.get_connection()
|
|
|
|
self.PrivateInvitation(str(conn.service_name), conn.object_path, chan_path)
|
2007-03-07 15:27:47 +01:00
|
|
|
|
2007-02-21 13:06:45 +01:00
|
|
|
@dbus.service.signal(_PRESENCE_INTERFACE, signature="o")
|
|
|
|
def ActivityAppeared(self, activity):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@dbus.service.signal(_PRESENCE_INTERFACE, signature="o")
|
|
|
|
def ActivityDisappeared(self, activity):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@dbus.service.signal(_PRESENCE_INTERFACE, signature="o")
|
|
|
|
def BuddyAppeared(self, buddy):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@dbus.service.signal(_PRESENCE_INTERFACE, signature="o")
|
|
|
|
def BuddyDisappeared(self, buddy):
|
|
|
|
pass
|
|
|
|
|
2007-03-07 19:46:48 +01:00
|
|
|
@dbus.service.signal(_PRESENCE_INTERFACE, signature="o")
|
|
|
|
def ActivityInvitation(self, activity):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@dbus.service.signal(_PRESENCE_INTERFACE, signature="soo")
|
|
|
|
def PrivateInvitation(self, bus_name, connection, channel):
|
|
|
|
pass
|
|
|
|
|
2007-02-21 13:06:45 +01:00
|
|
|
@dbus.service.method(_PRESENCE_INTERFACE, out_signature="ao")
|
|
|
|
def GetActivities(self):
|
2007-02-21 13:58:16 +01:00
|
|
|
ret = []
|
|
|
|
for act in self._activities.values():
|
|
|
|
ret.append(act.object_path())
|
|
|
|
return ret
|
2007-02-21 13:06:45 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_PRESENCE_INTERFACE, in_signature="s", out_signature="o")
|
|
|
|
def GetActivityById(self, actid):
|
2007-02-21 13:58:16 +01:00
|
|
|
if self._activities.has_key(actid):
|
|
|
|
return self._activities[actid].object_path()
|
2007-02-21 13:08:40 +01:00
|
|
|
raise NotFoundError("The activity was not found.")
|
2007-02-21 13:06:45 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_PRESENCE_INTERFACE, out_signature="ao")
|
|
|
|
def GetBuddies(self):
|
2007-02-21 13:58:16 +01:00
|
|
|
ret = []
|
|
|
|
for buddy in self._buddies.values():
|
|
|
|
ret.append(buddy.object_path())
|
|
|
|
return ret
|
2007-02-21 13:06:45 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_PRESENCE_INTERFACE, in_signature="ay", out_signature="o")
|
|
|
|
def GetBuddyByPublicKey(self, key):
|
2007-02-21 13:58:16 +01:00
|
|
|
if self._buddies.has_key(key):
|
|
|
|
return self._buddies[key].object_path()
|
2007-02-21 13:08:40 +01:00
|
|
|
raise NotFoundError("The buddy was not found.")
|
2007-02-21 13:06:45 +01:00
|
|
|
|
|
|
|
@dbus.service.method(_PRESENCE_INTERFACE, out_signature="o")
|
|
|
|
def GetOwner(self):
|
2007-02-21 13:58:16 +01:00
|
|
|
if not self._owner:
|
|
|
|
raise NotFoundError("The owner was not found.")
|
|
|
|
else:
|
|
|
|
return self._owner.get_object_path()
|
2007-02-21 12:41:26 +01:00
|
|
|
|
2007-02-21 13:06:45 +01:00
|
|
|
@dbus.service.method(_PRESENCE_INTERFACE, in_signature="sssa{sv}", out_signature="o")
|
|
|
|
def ShareActivity(self, actid, atype, name, properties):
|
2007-03-06 17:15:55 +01:00
|
|
|
activity = self._share_activity(actid, atype, name, properties)
|
|
|
|
return activity.object_path()
|
2007-02-21 12:41:26 +01:00
|
|
|
|
2007-03-02 17:10:44 +01:00
|
|
|
def cleanup(self):
|
2007-03-05 18:56:17 +01:00
|
|
|
for tp in self._handles_buddies:
|
2007-03-02 17:10:44 +01:00
|
|
|
tp.cleanup()
|
2007-02-21 12:41:26 +01:00
|
|
|
|
2007-03-06 17:15:55 +01:00
|
|
|
def _share_activity(self, actid, atype, name, properties):
|
|
|
|
objid = self._get_next_object_id()
|
|
|
|
# FIXME check which tp client we should use to share the activity
|
2007-03-08 18:51:10 +01:00
|
|
|
color = self._owner.props.color
|
|
|
|
activity = Activity(self._bus_name, objid, self._server_plugin,
|
|
|
|
id=actid, type=atype, name=name, color=color, local=True)
|
|
|
|
activity.connect("validity-changed", self._activity_validity_changed_cb)
|
2007-03-06 17:15:55 +01:00
|
|
|
self._activities[actid] = activity
|
|
|
|
|
|
|
|
activity.join()
|
|
|
|
|
|
|
|
return activity
|
|
|
|
|
2007-03-08 18:51:10 +01:00
|
|
|
def _activity_validity_changed_cb(self, activity, valid):
|
|
|
|
if valid:
|
|
|
|
self.ActivityAppeared(activity.object_path())
|
|
|
|
print "New Activity: %s (%s)" % (activity.props.name, activity.props.id)
|
|
|
|
else:
|
|
|
|
self.ActivityDisappeared(activity.object_path())
|
|
|
|
print "Activity disappeared: %s (%s)" % (activity.props.name, activity.props.id)
|
|
|
|
|
2007-03-06 17:15:55 +01:00
|
|
|
|
2007-02-21 12:41:26 +01:00
|
|
|
def main():
|
|
|
|
loop = gobject.MainLoop()
|
|
|
|
ps = PresenceService()
|
|
|
|
try:
|
|
|
|
loop.run()
|
|
|
|
except KeyboardInterrupt:
|
2007-03-02 17:10:44 +01:00
|
|
|
ps.cleanup()
|
2007-02-21 12:41:26 +01:00
|
|
|
print 'Ctrl+C pressed, exiting...'
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|