Mercurial > libervia-backend
annotate src/bridge/bridge.py @ 602:6fd1095b2b7b
core: sendMessage refactoring:
- sendMessage now use JID instead of unicode, bridge method using unicode is now _sendMessage
- added no_trigger argument, so it's now possible to forbid trigger execution (to avoid any plugin when we send a message)
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 22 Feb 2013 00:15:50 +0100 |
parents | 1f160467f5de |
children | 84a6e83157c2 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 #-*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 SAT: a jabber client | |
572 | 6 Copyright (C) 2009, 2010, 2011, 2012, 2013 Jérôme Poisson (goffi@goffi.org) |
0 | 7 |
8 This program is free software: you can redistribute it and/or modify | |
480
2a072735e459
Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents:
459
diff
changeset
|
9 it under the terms of the GNU Affero General Public License as published by |
0 | 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 | |
480
2a072735e459
Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents:
459
diff
changeset
|
16 GNU Affero General Public License for more details. |
0 | 17 |
480
2a072735e459
Licence modification: the full project is now under AGPL v3+ instead of GPL v3+
Goffi <goffi@goffi.org>
parents:
459
diff
changeset
|
18 You should have received a copy of the GNU Affero General Public License |
0 | 19 along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 """ | |
21 | |
22 from logging import debug, info, error | |
23 | |
595
1f160467f5de
Fix pep8 support in src/bridge.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
587
diff
changeset
|
24 |
568
239abc5484c9
bridge: generic plugin methods handling for frontend side in D-Bus Bridge \o/
Goffi <goffi@goffi.org>
parents:
480
diff
changeset
|
25 class Bridge(object): |
0 | 26 def __init__(self): |
595
1f160467f5de
Fix pep8 support in src/bridge.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
587
diff
changeset
|
27 info("Bridge initialization") |
0 | 28 |
29 ##signals | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
30 def newContact(self, contact): |
0 | 31 raise NotImplementedError |
32 | |
33 def newMessage(self, from_jid, msg, type='chat'): | |
34 raise NotImplementedError | |
35 | |
36 def presenceUpdate(self, type, jid, show, status, priority): | |
37 raise NotImplementedError | |
38 | |
39 def paramUpdate(self, name, value): | |
40 raise NotImplementedError | |
41 | |
42 ##methods | |
43 def connect(self): | |
44 raise NotImplementedError | |
45 | |
46 def getContacts(self): | |
47 raise NotImplementedError | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
48 |
0 | 49 def getPresenceStatus(self): |
50 raise NotImplementedError | |
51 | |
52 def sendMessage(self): | |
53 raise NotImplementedError | |
54 | |
55 def setPresence(self, to="", type="", show="", status="", priority=0): | |
56 raise NotImplementedError | |
57 | |
58 def setParam(self, name, value, namespace): | |
59 raise NotImplementedError | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
60 |
0 | 61 def getParam(self, name, namespace): |
62 raise NotImplementedError | |
63 | |
64 def getParams(self, namespace): | |
65 raise NotImplementedError | |
587
952322b1d490
Remove trailing whitespaces.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents:
572
diff
changeset
|
66 |
0 | 67 def getHistory(self, from_jid, to_jid, size): |
68 raise NotImplementedError |