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
|
|
|
|
from telepathy.interfaces import CONN_MGR_INTERFACE
|
|
|
|
|
|
|
|
import telepathyclient
|
|
|
|
import buddy
|
|
|
|
import activity
|
2007-02-21 13:20:59 +01:00
|
|
|
import buddyiconcache
|
2007-02-22 20:11:31 +01:00
|
|
|
from sugar import profile
|
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
|
|
|
|
self._activities = {} # activity id -> Activity
|
|
|
|
|
|
|
|
self._icon_cache = buddyiconcache.BuddyIconCache()
|
|
|
|
|
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()
|
|
|
|
self._owner = buddy.Owner(self, self._bus_name, objid, self._icon_cache)
|
|
|
|
self._buddies[self._owner.get_key()] = self._owner
|
|
|
|
|
|
|
|
self._registry = ManagerRegistry()
|
|
|
|
self._registry.LoadManagers()
|
|
|
|
# Telepathy connection to the server
|
|
|
|
self._server_client = None
|
|
|
|
# Telepathy link local connection
|
|
|
|
self._ll_client = None
|
|
|
|
|
|
|
|
self._connect_server ()
|
2007-02-21 13:58:16 +01:00
|
|
|
|
2007-02-21 13:06:45 +01:00
|
|
|
dbus.service.Object.__init__(self, self._bus_name, _PRESENCE_PATH)
|
|
|
|
|
2007-02-21 13:58:16 +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-22 20:11:31 +01:00
|
|
|
def _connect_server (self):
|
|
|
|
mgr = self._registry.GetManager('gabble')
|
|
|
|
protocol = 'jabber'
|
|
|
|
account = {
|
|
|
|
'account': 'olpc@collabora.co.uk',
|
|
|
|
'password': 'learn',
|
|
|
|
'server': 'light.bluelinux.co.uk'
|
|
|
|
}
|
|
|
|
conn_bus_name, conn_object_path = \
|
|
|
|
mgr[CONN_MGR_INTERFACE].RequestConnection(protocol, account)
|
|
|
|
conn = Connection(conn_bus_name, conn_object_path)
|
|
|
|
self._server_client = telepathyclient.TelepathyClient(conn)
|
|
|
|
|
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
|
|
|
|
|
|
|
|
@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-02-21 13:08:40 +01:00
|
|
|
raise NotImplementedError("not implemented yet")
|
2007-02-21 12:41:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
loop = gobject.MainLoop()
|
|
|
|
ps = PresenceService()
|
|
|
|
try:
|
|
|
|
loop.run()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
print 'Ctrl+C pressed, exiting...'
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|