Mercurial > libervia-backend
annotate src/bridge/bridge_constructor/dbus_frontend_template.py @ 304:e04ccf122bb6
microblog sending
- Bridge: added sendPersonalEvent to DBus frontend
- plugin XEP_0277: * fixed unicode issue
* node options are now changed instead of node being deleted/recreated for setMicroblogAccess
- xml_tools: fixed unicode issue
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Mar 2011 17:51:19 +0100 |
parents | 2b52a5da0978 |
children | 1e4575e12581 |
rev | line source |
---|---|
267 | 1 #!/usr/bin/python |
2 #-*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 SAT communication bridge | |
6 Copyright (C) 2009, 2010, 2011 Jérôme Poisson (goffi@goffi.org) | |
7 | |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU General Public License as published by | |
10 the Free Software Foundation, either version 3 of the License, or | |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 """ | |
21 | |
22 from bridge_frontend import BridgeFrontend | |
23 import dbus, dbus.glib | |
272
1d2e0dfe7114
bridge: core & frontend sides of bridge are now generated
Goffi <goffi@goffi.org>
parents:
267
diff
changeset
|
24 from logging import debug |
267 | 25 |
26 class BridgeExceptionNoService(Exception): | |
27 pass | |
28 | |
29 class DBusBridgeFrontend(BridgeFrontend): | |
30 def __init__(self): | |
31 try: | |
32 self.sessions_bus = dbus.SessionBus() | |
33 self.db_object = self.sessions_bus.get_object('org.goffi.SAT', | |
34 '/org/goffi/SAT/bridge') | |
35 self.db_comm_iface = dbus.Interface(self.db_object, | |
36 dbus_interface='org.goffi.SAT.communication') | |
37 self.db_req_iface = dbus.Interface(self.db_object, | |
38 dbus_interface='org.goffi.SAT.request') | |
39 except dbus.exceptions.DBusException,e: | |
40 if e._dbus_error_name=='org.freedesktop.DBus.Error.ServiceUnknown': | |
41 raise BridgeExceptionNoService | |
42 else: | |
43 raise e | |
44 #props = self.db_comm_iface.getProperties() | |
45 | |
46 def register(self, functionName, handler, iface="communication"): | |
47 if iface == "communication": | |
48 self.db_comm_iface.connect_to_signal(functionName, handler) | |
49 elif iface == "request": | |
50 self.db_req_iface.connect_to_signal(functionName, handler) | |
51 | |
52 ##METHODS_PART## | |
53 | |
54 #methods from plugins | |
55 def getRoomJoined(self, profile_key='@DEFAULT@'): | |
56 return self.db_comm_iface.getRoomJoined(profile_key) | |
57 | |
58 def getRoomSubjects(self, profile_key='@DEFAULT@'): | |
59 return self.db_comm_iface.getRoomSubjects(profile_key) | |
60 | |
61 def joinMUC(self, service, roomId, nick, profile_key='@DEFAULT@'): | |
62 return self.db_comm_iface.joinMUC(service, roomId, nick, profile_key) | |
63 | |
64 def tarotGameCreate(self, room_jid, players, profile_key='@DEFAULT@'): | |
65 return self.db_comm_iface.tarotGameCreate(room_jid, players, profile_key) | |
66 | |
67 def tarotGameReady(self, player, referee, profile_key='@DEFAULT@'): | |
68 return self.db_comm_iface.tarotGameReady(player, referee, profile_key) | |
69 | |
70 def tarotGameContratChoosed(self, player, referee, contrat, profile_key='@DEFAULT@'): | |
71 return self.db_comm_iface.tarotGameContratChoosed(player, referee, contrat, profile_key) | |
72 | |
73 def tarotGamePlayCards(self, player, referee, cards, profile_key='@DEFAULT@'): | |
74 return self.db_comm_iface.tarotGamePlayCards(player, referee, cards, profile_key) | |
75 | |
76 def sendFile(self, to, path, profile_key='@DEFAULT@'): | |
77 return self.db_comm_iface.sendFile(to, path, profile_key) | |
78 | |
79 def findGateways(self, target, profile_key='@DEFAULT@'): | |
80 return self.db_comm_iface.findGateways(target, profile_key) | |
81 | |
82 def getCard(self, target, profile_key='@DEFAULT@'): | |
83 return self.db_comm_iface.getCard(target, profile_key) | |
84 | |
85 def getCardCache(self, target): | |
86 return self.db_comm_iface.getCardCache(target) | |
87 | |
88 def getAvatarFile(self, hash): | |
89 return self.db_comm_iface.getAvatarFile(hash) | |
90 | |
91 def in_band_register(self, target, profile_key='@DEFAULT@'): | |
92 return self.db_comm_iface.in_band_register(target, profile_key) | |
93 | |
94 def gatewayRegister(self, action, target, data, profile_key='@DEFAULT@'): | |
95 if data == None: | |
96 data = [('', '')] #XXX: we have to do this awful hack because python dbus need to guess the signature | |
97 return self.db_req_iface.gatewayRegister(action, target, data, profile_key) | |
98 | |
303
2b52a5da0978
plugin XEP_0277: microblog access model can now be changed
Goffi <goffi@goffi.org>
parents:
272
diff
changeset
|
99 def getLastMicroblogs(self, jid, max_items, profile_key='@DEFAULT@', callback=None, errback=None): |
2b52a5da0978
plugin XEP_0277: microblog access model can now be changed
Goffi <goffi@goffi.org>
parents:
272
diff
changeset
|
100 return self.db_comm_iface.getLastMicroblogs(jid, max_items, profile_key, reply_handler=callback, error_handler=errback) |
267 | 101 |
304 | 102 def sendPersonalEvent(self, event_type, data, profile_key='@DEFAULT@'): |
103 return self.db_comm_iface.sendPersonalEvent(event_type, data, profile_key) | |
104 |