annotate src/browser/libervia_main.py @ 586:3eb3a2c0c011

browser and server side: uses RSM (XEP-0059)
author souliane <souliane@mailoo.org>
date Fri, 28 Nov 2014 00:31:27 +0100
parents 0a06cf833f5a
children a90cc8fc9605
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
1 #!/usr/bin/python
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
2 # -*- coding: utf-8 -*-
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
3
339
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
4 # Libervia: a Salut à Toi frontend
340
ce5b33f499c5 dates update
Goffi <goffi@goffi.org>
parents: 339
diff changeset
5 # Copyright (C) 2011, 2012, 2013, 2014 Jérôme Poisson <goffi@goffi.org>
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
6
339
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
7 # This program is free software: you can redistribute it and/or modify
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
8 # it under the terms of the GNU Affero General Public License as published by
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
9 # the Free Software Foundation, either version 3 of the License, or
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
10 # (at your option) any later version.
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
11
339
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
12 # This program is distributed in the hope that it will be useful,
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
15 # GNU Affero General Public License for more details.
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
16
339
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
17 # You should have received a copy of the GNU Affero General Public License
2067d6241927 fixed docstrings wrong usage for licence informations
Goffi <goffi@goffi.org>
parents: 336
diff changeset
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
19
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
20 import pyjd # this is dummy in pyjs
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
21
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
22 ### logging configuration ###
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
23 from sat_browser import logging
440
88461e9c3e47 browser_side (log): move logging configuration in a "logging" module + use custom backend with console.debug/info/etc output.
Goffi <goffi@goffi.org>
parents: 439
diff changeset
24 logging.configure()
88461e9c3e47 browser_side (log): move logging configuration in a "logging" module + use custom backend with console.debug/info/etc output.
Goffi <goffi@goffi.org>
parents: 439
diff changeset
25 from sat.core.log import getLogger
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
26 log = getLogger(__name__)
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
27 ###
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
28
449
981ed669d3b3 /!\ reorganize all the file hierarchy, move the code and launching script to src:
souliane <souliane@mailoo.org>
parents: 442
diff changeset
29 from sat_frontends.tools.misc import InputHistory
503
88ece2a00c63 browser_side: display new lines and clickable URLs for headline message
souliane <souliane@mailoo.org>
parents: 500
diff changeset
30 from sat_frontends.tools import strings
449
981ed669d3b3 /!\ reorganize all the file hierarchy, move the code and launching script to src:
souliane <souliane@mailoo.org>
parents: 442
diff changeset
31 from sat.core.i18n import _
981ed669d3b3 /!\ reorganize all the file hierarchy, move the code and launching script to src:
souliane <souliane@mailoo.org>
parents: 442
diff changeset
32
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
33 from pyjamas.ui.RootPanel import RootPanel
21
77c2e48efa29 browser side: a warning message now show who will receive the message entered in UniBox, with a color depending on how many people will be able to see it
Goffi <goffi@goffi.org>
parents: 20
diff changeset
34 from pyjamas.ui.HTML import HTML
43
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
35 from pyjamas.ui.KeyboardListener import KEY_ESCAPE
108
fad0e51cf565 on failure, Libervia now wait 5 s before trying again to call the serveur + only room name is now shown in tabs
Goffi <goffi@goffi.org>
parents: 107
diff changeset
36 from pyjamas.Timer import Timer
43
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
37 from pyjamas import Window, DOM
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
38 from pyjamas.JSONService import JSONProxy
323
0b7934e75e76 misc: reorganization of the file panels.py + clean the modules import:
souliane <souliane@mailoo.org>
parents: 321
diff changeset
39
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
40 from sat_browser import register
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
41 from sat_browser import contact
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
42 from sat_browser import base_widget
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
43 from sat_browser import panels
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
44 from sat_browser import dialog
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
45 from sat_browser import jid
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
46 from sat_browser import xmlui
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
47 from sat_browser import html_tools
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
48 from sat_browser import notification
323
0b7934e75e76 misc: reorganization of the file panels.py + clean the modules import:
souliane <souliane@mailoo.org>
parents: 321
diff changeset
49
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
50 from sat_browser.constants import Const as C
317
bbadd490e63c misc: gather the constants in a single file, as it is done for other frontends
souliane <souliane@mailoo.org>
parents: 316
diff changeset
51
549
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
52 try:
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
53 # FIXME: import plugin dynamically
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
54 from sat_browser import plugin_sec_otr
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
55 except ImportError:
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
56 pass
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
57
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
58 MAX_MBLOG_CACHE = 500 # Max microblog entries kept in memories
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
59
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
60 # Set to true to not create a new LiberviaWidget when a similar one
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
61 # already exist (i.e. a chat panel with the same target). Instead
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
62 # the existing widget will be eventually removed from its parent
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
63 # and added to new base_widget.WidgetsPanel, or replaced to the expected
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
64 # position if the previous and the new parent are the same.
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
65 REUSE_EXISTING_LIBERVIA_WIDGETS = True
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
66
58
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
67
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
68 class LiberviaJsonProxy(JSONProxy):
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
69 def __init__(self, *args, **kwargs):
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
70 JSONProxy.__init__(self, *args, **kwargs)
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
71 self.handler = self
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
72 self.cb = {}
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
73 self.eb = {}
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
74
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
75 def call(self, method, cb, *args):
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
76 _id = self.callMethod(method, args)
11
331c093e4eb3 magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents: 9
diff changeset
77 if cb:
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
78 if isinstance(cb, tuple):
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
79 if len(cb) != 2:
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
80 log.error("tuple syntax for bridge.call is (callback, errback), aborting")
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
81 return
296
92d76ab67156 server+browser side: fixed bridge errback handling
Goffi <goffi@goffi.org>
parents: 285
diff changeset
82 if cb[0] is not None:
92d76ab67156 server+browser side: fixed bridge errback handling
Goffi <goffi@goffi.org>
parents: 285
diff changeset
83 self.cb[_id] = cb[0]
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
84 self.eb[_id] = cb[1]
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
85 else:
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
86 self.cb[_id] = cb
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
87
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
88 def onRemoteResponse(self, response, request_info):
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
89 if request_info.id in self.cb:
132
30d8e328559b server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents: 131
diff changeset
90 _cb = self.cb[request_info.id]
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
91 # if isinstance(_cb, tuple):
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
92 # #we have arguments attached to the callback
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
93 # #we send them after the answer
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
94 # callback, args = _cb
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
95 # callback(response, *args)
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
96 # else:
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
97 # #No additional argument, we call directly the callback
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
98 _cb(response)
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
99 del self.cb[request_info.id]
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
100 if request_info.id in self.eb:
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
101 del self.eb[request_info.id]
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
102
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
103 def onRemoteError(self, code, errobj, request_info):
62
12e889a683ce server side: misc stuff:
Goffi <goffi@goffi.org>
parents: 58
diff changeset
104 """def dump(obj):
12e889a683ce server side: misc stuff:
Goffi <goffi@goffi.org>
parents: 58
diff changeset
105 print "\n\nDUMPING %s\n\n" % obj
12e889a683ce server side: misc stuff:
Goffi <goffi@goffi.org>
parents: 58
diff changeset
106 for i in dir(obj):
12e889a683ce server side: misc stuff:
Goffi <goffi@goffi.org>
parents: 58
diff changeset
107 print "%s: %s" % (i, getattr(obj,i))"""
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
108 if request_info.id in self.eb:
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
109 _eb = self.eb[request_info.id]
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
110 _eb((code, errobj))
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
111 del self.cb[request_info.id]
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
112 del self.eb[request_info.id]
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
113 else:
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
114 if code != 0:
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
115 log.error("Internal server error")
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
116 """for o in code, error, request_info:
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
117 dump(o)"""
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
118 else:
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
119 if isinstance(errobj['message'], dict):
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
120 log.error("Error %s: %s" % (errobj['message']['faultCode'], errobj['message']['faultString']))
203
5fdea93b2541 browser side: errback management in bridge calls
Goffi <goffi@goffi.org>
parents: 202
diff changeset
121 else:
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
122 log.error("%s" % errobj['message'])
239
b911f2b43fd4 browser_side: added input history in the unibox:
souliane <souliane@mailoo.org>
parents: 235
diff changeset
123
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
124
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
125 class RegisterCall(LiberviaJsonProxy):
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
126 def __init__(self):
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
127 LiberviaJsonProxy.__init__(self, "/register_api",
456
da2a7f2b34c9 browser and server sides: use asyncConnect instead of connect
souliane <souliane@mailoo.org>
parents: 455
diff changeset
128 ["isRegistered", "isConnected", "asyncConnect", "registerParams", "getMenus"])
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
129
239
b911f2b43fd4 browser_side: added input history in the unibox:
souliane <souliane@mailoo.org>
parents: 235
diff changeset
130
2
669c531a857e signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents: 1
diff changeset
131 class BridgeCall(LiberviaJsonProxy):
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
132 def __init__(self):
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
133 LiberviaJsonProxy.__init__(self, "/json_api",
215
e830a0c60d32 server side: added the security_limit to setParam
souliane <souliane@mailoo.org>
parents: 213
diff changeset
134 ["getContacts", "addContact", "sendMessage", "sendMblog", "sendMblogComment",
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
135 "getMblogs", "getMassiveMblogs", "getMblogComments", "getProfileJid",
427
b5b440e6ea16 server + browser side, getPresenceStatuses has been renamed
Goffi <goffi@goffi.org>
parents: 426
diff changeset
136 "getHistory", "getPresenceStatuses", "joinMUC", "mucLeave", "getRoomsJoined",
266
cc778206b7ae bridge: added inviteMUC + modify joinMUC to make it accept room_jid = ""
souliane <souliane@mailoo.org>
parents: 251
diff changeset
137 "inviteMUC", "launchTarotGame", "getTarotCardsPaths", "tarotGameReady",
389
2d782349b88a server_side: display blog comments when you click on a main item header or title
souliane <souliane@mailoo.org>
parents: 381
diff changeset
138 "tarotGamePlayCards", "launchRadioCollective", "getMblogs", "getMblogsWithComments",
215
e830a0c60d32 server side: added the security_limit to setParam
souliane <souliane@mailoo.org>
parents: 213
diff changeset
139 "getWaitingSub", "subscription", "delContact", "updateContact", "getCard",
229
e632f77c4219 bridge: asyncGetParamA takes a security_limit argument
souliane <souliane@mailoo.org>
parents: 227
diff changeset
140 "getEntityData", "getParamsUI", "asyncGetParamA", "setParam", "launchAction",
282
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
141 "disconnect", "chatStateComposing", "getNewAccountDomain", "confirmationAnswer",
520
d58d4dd0cefe browser and server sides: add bridge method getLastResource
souliane <souliane@mailoo.org>
parents: 505
diff changeset
142 "syntaxConvert", "getAccountDialogUI", "getLastResource"
148
8635bc9db9bf added parameter management to test XMLUI, but it's currently deactivated for security reasons (need some configuration options) + separated mainTabPanel CSS from LiberviaTabPanel
Goffi <goffi@goffi.org>
parents: 146
diff changeset
143 ])
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
144
242
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
145
2
669c531a857e signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents: 1
diff changeset
146 class BridgeSignals(LiberviaJsonProxy):
157
b17ec3a6a112 browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents: 148
diff changeset
147 RETRY_BASE_DELAY = 1000
b17ec3a6a112 browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents: 148
diff changeset
148
99
ca4fc2b2471b browser side: signal management
Goffi <goffi@goffi.org>
parents: 85
diff changeset
149 def __init__(self, host):
ca4fc2b2471b browser side: signal management
Goffi <goffi@goffi.org>
parents: 85
diff changeset
150 self.host = host
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
151 self.retry_delay = self.RETRY_BASE_DELAY
2
669c531a857e signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents: 1
diff changeset
152 LiberviaJsonProxy.__init__(self, "/json_signal_api",
669c531a857e signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents: 1
diff changeset
153 ["getSignals"])
210
3092f6b1710c browser side: make the OK button title for group selector configureable + few "cosmetic" changes (PEP 8...)
souliane <souliane@mailoo.org>
parents: 205
diff changeset
154
157
b17ec3a6a112 browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents: 148
diff changeset
155 def onRemoteResponse(self, response, request_info):
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
156 self.retry_delay = self.RETRY_BASE_DELAY
157
b17ec3a6a112 browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents: 148
diff changeset
157 LiberviaJsonProxy.onRemoteResponse(self, response, request_info)
210
3092f6b1710c browser side: make the OK button title for group selector configureable + few "cosmetic" changes (PEP 8...)
souliane <souliane@mailoo.org>
parents: 205
diff changeset
158
99
ca4fc2b2471b browser side: signal management
Goffi <goffi@goffi.org>
parents: 85
diff changeset
159 def onRemoteError(self, code, errobj, request_info):
158
58442ed28f2b browser side: basic disconnection management: hard reload is done on empty signal response
Goffi <goffi@goffi.org>
parents: 157
diff changeset
160 if errobj['message'] == 'Empty Response':
274
886b47896f3c browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 269
diff changeset
161 Window.getLocation().reload() # XXX: reset page in case of session ended.
886b47896f3c browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 269
diff changeset
162 # FIXME: Should be done more properly without hard reload
158
58442ed28f2b browser side: basic disconnection management: hard reload is done on empty signal response
Goffi <goffi@goffi.org>
parents: 157
diff changeset
163 LiberviaJsonProxy.onRemoteError(self, code, errobj, request_info)
99
ca4fc2b2471b browser side: signal management
Goffi <goffi@goffi.org>
parents: 85
diff changeset
164 #we now try to reconnect
274
886b47896f3c browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 269
diff changeset
165 if isinstance(errobj['message'], dict) and errobj['message']['faultCode'] == 0:
886b47896f3c browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 269
diff changeset
166 Window.alert('You are not allowed to connect to server')
108
fad0e51cf565 on failure, Libervia now wait 5 s before trying again to call the serveur + only room name is now shown in tabs
Goffi <goffi@goffi.org>
parents: 107
diff changeset
167 else:
422
20c508f9b32a browser side: fixed bad use of Timer
Goffi <goffi@goffi.org>
parents: 415
diff changeset
168 def _timerCb(timer):
108
fad0e51cf565 on failure, Libervia now wait 5 s before trying again to call the serveur + only room name is now shown in tabs
Goffi <goffi@goffi.org>
parents: 107
diff changeset
169 self.host.bridge_signals.call('getSignals', self.host._getSignalsCB)
157
b17ec3a6a112 browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents: 148
diff changeset
170 Timer(notify=_timerCb).schedule(self.retry_delay)
b17ec3a6a112 browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents: 148
diff changeset
171 self.retry_delay *= 2
2
669c531a857e signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents: 1
diff changeset
172
239
b911f2b43fd4 browser_side: added input history in the unibox:
souliane <souliane@mailoo.org>
parents: 235
diff changeset
173
b911f2b43fd4 browser_side: added input history in the unibox:
souliane <souliane@mailoo.org>
parents: 235
diff changeset
174 class SatWebFrontend(InputHistory):
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
175 def onModuleLoad(self):
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
176 log.info("============ onModuleLoad ==============")
195
dd27072d8ae0 browser side: widgets refactoring:
Goffi <goffi@goffi.org>
parents: 194
diff changeset
177 panels.ChatPanel.registerClass()
dd27072d8ae0 browser side: widgets refactoring:
Goffi <goffi@goffi.org>
parents: 194
diff changeset
178 panels.MicroblogPanel.registerClass()
19
e8e3704eb97f Added basic chat panel
Goffi <goffi@goffi.org>
parents: 18
diff changeset
179 self.whoami = None
193
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
180 self._selected_listeners = set()
11
331c093e4eb3 magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents: 9
diff changeset
181 self.bridge = BridgeCall()
99
ca4fc2b2471b browser side: signal management
Goffi <goffi@goffi.org>
parents: 85
diff changeset
182 self.bridge_signals = BridgeSignals(self)
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
183 self.uni_box = None
426
77d8f55fc5f0 browser_side: hide the presence/status panel until the connection is made
souliane <souliane@mailoo.org>
parents: 422
diff changeset
184 self.status_panel = HTML('<br />')
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
185 self.contact_panel = contact.ContactPanel(self)
43
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
186 self.panel = panels.MainPanel(self)
23
0ce2a57b34ca added tab panel
Goffi <goffi@goffi.org>
parents: 22
diff changeset
187 self.discuss_panel = self.panel.discuss_panel
84
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
188 self.tab_panel = self.panel.tab_panel
193
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
189 self.tab_panel.addTabListener(self)
274
886b47896f3c browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 269
diff changeset
190 self.libervia_widgets = set() # keep track of all actives LiberviaWidgets
275
a763b2ac5d41 bridge + browser_side: bridge signals for games and their callbacks:
souliane <souliane@mailoo.org>
parents: 274
diff changeset
191 self.room_list = [] # list of rooms
274
886b47896f3c browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 269
diff changeset
192 self.mblog_cache = [] # used to keep our own blog entries in memory, to show them in new mblog panel
886b47896f3c browser_side: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 269
diff changeset
193 self.avatars_cache = {} # keep track of jid's avatar hash (key=jid, value=file)
66
9d8e79ac4c9c Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents: 64
diff changeset
194 self._register_box = None
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
195 RootPanel().add(self.panel)
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
196 self.notification = notification.Notification()
43
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
197 DOM.addEventPreview(self)
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
198 self.importPlugins()
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
199 self._register = RegisterCall()
494
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
200 self._register.call('getMenus', self.gotMenus)
318
c12c9a1acf2f server_side: added support for paramsRegisterApp to define frontend's specific parameters like "Enable unibox"
souliane <souliane@mailoo.org>
parents: 317
diff changeset
201 self._register.call('registerParams', None)
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
202 self._register.call('isRegistered', self._isRegisteredCB)
205
ee744ffed7fc browser side: events data are cached until initialisation is finished (we get all microblogs)
Goffi <goffi@goffi.org>
parents: 204
diff changeset
203 self.initialised = False
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
204 self.init_cache = [] # used to cache events until initialisation is done
478
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
205 self.cached_params = {}
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
206 self.next_rsm_index = 0
193
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
207
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
208 def importPlugins(self):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
209 self.plugins = {}
549
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
210 inhibited_menus = []
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
211 # FIXME: plugins import should be dynamic and generic like in sat
549
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
212 try:
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
213 self.plugins['otr'] = plugin_sec_otr.OTR(self)
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
214 except TypeError: # plugin_sec_otr has not been imported
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
215 inhibited_menus.append('OTR')
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
216
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
217 class DummyPlugin(object):
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
218 def inhibitMenus(self):
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
219 return inhibited_menus
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
220
cd56f2b0e85b browser_side: disable OTR if the browser is too old to offer crypto.getRandomValues (CSPRNG)
souliane <souliane@mailoo.org>
parents: 548
diff changeset
221 self.plugins['dummy_plugin'] = DummyPlugin()
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
222
193
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
223 def addSelectedListener(self, callback):
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
224 self._selected_listeners.add(callback)
192
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
225
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
226 def getSelected(self):
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
227 wid = self.tab_panel.getCurrentPanel()
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
228 if not isinstance(wid, base_widget.WidgetsPanel):
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
229 log.error("Tab widget is not a base_widget.WidgetsPanel, can't get selected widget")
192
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
230 return None
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
231 return wid.selected
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
232
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
233 def setSelected(self, widget):
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
234 """Define the selected widget"""
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
235 widgets_panel = self.tab_panel.getCurrentPanel()
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
236 if not isinstance(widgets_panel, base_widget.WidgetsPanel):
192
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
237 return
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
238
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
239 selected = widgets_panel.selected
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
240
193
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
241 if selected == widget:
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
242 return
210
3092f6b1710c browser side: make the OK button title for group selector configureable + few "cosmetic" changes (PEP 8...)
souliane <souliane@mailoo.org>
parents: 205
diff changeset
243
192
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
244 if selected:
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
245 selected.removeStyleName('selected_widget')
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
246
192
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
247 widgets_panel.selected = widget
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
248
192
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
249 if widget:
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
250 widgets_panel.selected.addStyleName('selected_widget')
cf5c83e7d515 browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents: 179
diff changeset
251
193
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
252 for callback in self._selected_listeners:
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
253 callback(widget)
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
254
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
255 def resize(self):
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
256 """Resize elements"""
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
257 Window.onResize()
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
258
193
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
259 def onBeforeTabSelected(self, sender, tab_index):
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
260 return True
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
261
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
262 def onTabSelected(self, sender, tab_index):
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
263 selected = self.getSelected()
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
264 for callback in self._selected_listeners:
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
265 callback(selected)
f2ae8e170c49 browser side: selected widget caching in UniBox, to avoid to ask the getter at each key pressed, which make the box very slow.
Goffi <goffi@goffi.org>
parents: 192
diff changeset
266
43
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
267 def onEventPreview(self, event):
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
268 if event.type in ["keydown", "keypress", "keyup"] and event.keyCode == KEY_ESCAPE:
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
269 #needed to prevent request cancellation in Firefox
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
270 event.preventDefault()
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
271 return True
a7ff1e6f1229 browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents: 41
diff changeset
272
119
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
273 def getAvatar(self, jid_str):
479
c21ea1fe3593 browser side: small refactoring to prepare displaying avatars in the contact panel
souliane <souliane@mailoo.org>
parents: 478
diff changeset
274 """Return avatar of a jid if in cache, else ask for it.
c21ea1fe3593 browser side: small refactoring to prepare displaying avatars in the contact panel
souliane <souliane@mailoo.org>
parents: 478
diff changeset
275
c21ea1fe3593 browser side: small refactoring to prepare displaying avatars in the contact panel
souliane <souliane@mailoo.org>
parents: 478
diff changeset
276 @param jid_str (str): JID of the contact
c21ea1fe3593 browser side: small refactoring to prepare displaying avatars in the contact panel
souliane <souliane@mailoo.org>
parents: 478
diff changeset
277 @return: the URL to the avatar (str)
c21ea1fe3593 browser side: small refactoring to prepare displaying avatars in the contact panel
souliane <souliane@mailoo.org>
parents: 478
diff changeset
278 """
137
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
279 def dataReceived(result):
202
2bc6cf004e61 browser, server: comments handling:
Goffi <goffi@goffi.org>
parents: 200
diff changeset
280 if 'avatar' in result:
137
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
281 self._entityDataUpdatedCb(jid_str, 'avatar', result['avatar'])
204
890776a6fdb7 browser + server: vcard is requested when no avatar data is found in cache
Goffi <goffi@goffi.org>
parents: 203
diff changeset
282 else:
890776a6fdb7 browser + server: vcard is requested when no avatar data is found in cache
Goffi <goffi@goffi.org>
parents: 203
diff changeset
283 self.bridge.call("getCard", None, jid_str)
250
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
284
204
890776a6fdb7 browser + server: vcard is requested when no avatar data is found in cache
Goffi <goffi@goffi.org>
parents: 203
diff changeset
285 def avatarError(error_data):
890776a6fdb7 browser + server: vcard is requested when no avatar data is found in cache
Goffi <goffi@goffi.org>
parents: 203
diff changeset
286 # The jid is maybe not in our roster, we ask for the VCard
890776a6fdb7 browser + server: vcard is requested when no avatar data is found in cache
Goffi <goffi@goffi.org>
parents: 203
diff changeset
287 self.bridge.call("getCard", None, jid_str)
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
288
119
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
289 if jid_str not in self.avatars_cache:
204
890776a6fdb7 browser + server: vcard is requested when no avatar data is found in cache
Goffi <goffi@goffi.org>
parents: 203
diff changeset
290 self.bridge.call('getEntityData', (dataReceived, avatarError), jid_str, ['avatar'])
477
fac8e8bc9a1a browser side: changed default avatar
souliane <souliane@mailoo.org>
parents: 468
diff changeset
291 self.avatars_cache[jid_str] = C.DEFAULT_AVATAR
119
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
292 return self.avatars_cache[jid_str]
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
293
84
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
294 def registerWidget(self, wid):
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
295 log.debug("Registering %s" % wid.getDebugName())
84
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
296 self.libervia_widgets.add(wid)
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
297
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
298 def unregisterWidget(self, wid):
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
299 try:
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
300 self.libervia_widgets.remove(wid)
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
301 except KeyError:
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
302 log.warning('trying to remove a non registered Widget: %s' % wid.getDebugName())
210
3092f6b1710c browser side: make the OK button title for group selector configureable + few "cosmetic" changes (PEP 8...)
souliane <souliane@mailoo.org>
parents: 205
diff changeset
303
326
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
304 def refresh(self):
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
305 """Refresh the general display."""
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
306 self.panel.refresh()
478
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
307 if self.getCachedParam(C.COMPOSITION_KEY, C.ENABLE_UNIBOX_PARAM) == 'true':
326
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
308 self.uni_box = self.panel.unibox_panel.unibox
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
309 else:
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
310 self.uni_box = None
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
311 for lib_wid in self.libervia_widgets:
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
312 lib_wid.refresh()
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
313 self.resize()
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
314
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
315 def addTab(self, label, wid, select=True):
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
316 """Create a new tab and eventually add a widget in
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
317 @param label: label of the tab
116
aff34642616b browser side: widgets are now added in a widgetsPanel when a tab is created
Goffi <goffi@goffi.org>
parents: 110
diff changeset
318 @param wid: LiberviaWidget to add
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
319 @param select: True to select the added tab
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
320 """
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
321 widgets_panel = base_widget.WidgetsPanel(self)
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
322 self.tab_panel.add(widgets_panel, label)
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
323 widgets_panel.addWidget(wid)
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
324 if select:
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
325 self.tab_panel.selectTab(self.tab_panel.getWidgetCount() - 1)
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
326 return widgets_panel
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
327
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
328 def addWidget(self, wid, tab_index=None):
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
329 """ Add a widget at the bottom of the current or specified tab
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
330 @param wid: LiberviaWidget to add
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
331 @param tab_index: index of the tab to add the widget to"""
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
332 if tab_index is None or tab_index < 0 or tab_index >= self.tab_panel.getWidgetCount():
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
333 panel = self.tab_panel.getCurrentPanel()
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
334 else:
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
335 panel = self.tab_panel.tabBar.getTabWidget(tab_index)
200
0f5c2f799913 browser side: clicking on the contacts list (contact item, group or the "contacts" main title) open a discussion or microblog
Goffi <goffi@goffi.org>
parents: 195
diff changeset
336 panel.addWidget(wid)
0f5c2f799913 browser side: clicking on the contacts list (contact item, group or the "contacts" main title) open a discussion or microblog
Goffi <goffi@goffi.org>
parents: 195
diff changeset
337
328
835a8ae799e7 Add notifications support, fixes bug 7.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 326
diff changeset
338 def displayNotification(self, title, body):
835a8ae799e7 Add notifications support, fixes bug 7.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 326
diff changeset
339 self.notification.notify(title, body)
835a8ae799e7 Add notifications support, fixes bug 7.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 326
diff changeset
340
494
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
341 def gotMenus(self, menus):
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
342 """Put the menus data in cache and build the main menu bar
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
343
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
344 @param menus (list[tuple]): menu data
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
345 """
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
346 def process(menus, inhibited=None):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
347 for raw_menu in menus:
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
348 id_, type_, path, path_i18n = raw_menu
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
349 if inhibited and path[0] in inhibited:
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
350 continue
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
351 menus_data = self.menus.setdefault(type_, [])
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
352 menus_data.append((id_, path, path_i18n))
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
353
494
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
354 self.menus = {}
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
355 inhibited = set()
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
356 extras = []
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
357 for plugin in self.plugins.values():
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
358 if hasattr(plugin, "inhibitMenus"):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
359 inhibited.update(plugin.inhibitMenus())
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
360 if hasattr(plugin, "extraMenus"):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
361 extras.extend(plugin.extraMenus())
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
362 process(menus, inhibited)
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
363 process(extras)
494
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
364 self.panel.menu.createMenus()
5d8632a7bfde browser_side: refactorisation of menus and LiberviaWidget's header
souliane <souliane@mailoo.org>
parents: 483
diff changeset
365
415
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
366 def _isRegisteredCB(self, result):
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
367 registered, warning = result
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
368 if not registered:
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
369 self._register_box = register.RegisterBox(self.logged)
66
9d8e79ac4c9c Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents: 64
diff changeset
370 self._register_box.centerBox()
9d8e79ac4c9c Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents: 64
diff changeset
371 self._register_box.show()
415
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
372 if warning:
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
373 dialog.InfoDialog(_('Security warning'), warning).show()
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
374 self._tryAutoConnect(skip_validation=not not warning)
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
375 else:
1
0a7c685faa53 ContactPanel: first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
376 self._register.call('isConnected', self._isConnectedCB)
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
377
1
0a7c685faa53 ContactPanel: first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
378 def _isConnectedCB(self, connected):
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
379 if not connected:
456
da2a7f2b34c9 browser and server sides: use asyncConnect instead of connect
souliane <souliane@mailoo.org>
parents: 455
diff changeset
380 self._register.call('asyncConnect', lambda x: self.logged())
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
381 else:
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
382 self.logged()
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
383
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
384 def logged(self):
66
9d8e79ac4c9c Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents: 64
diff changeset
385 if self._register_box:
9d8e79ac4c9c Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents: 64
diff changeset
386 self._register_box.hide()
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
387 del self._register_box # don't work if self._register_box is None
210
3092f6b1710c browser side: make the OK button title for group selector configureable + few "cosmetic" changes (PEP 8...)
souliane <souliane@mailoo.org>
parents: 205
diff changeset
388
426
77d8f55fc5f0 browser_side: hide the presence/status panel until the connection is made
souliane <souliane@mailoo.org>
parents: 422
diff changeset
389 # display the real presence status panel
77d8f55fc5f0 browser_side: hide the presence/status panel until the connection is made
souliane <souliane@mailoo.org>
parents: 422
diff changeset
390 self.panel.header.remove(self.status_panel)
77d8f55fc5f0 browser_side: hide the presence/status panel until the connection is made
souliane <souliane@mailoo.org>
parents: 422
diff changeset
391 self.status_panel = panels.PresenceStatusPanel(self)
77d8f55fc5f0 browser_side: hide the presence/status panel until the connection is made
souliane <souliane@mailoo.org>
parents: 422
diff changeset
392 self.panel.header.add(self.status_panel)
77d8f55fc5f0 browser_side: hide the presence/status panel until the connection is made
souliane <souliane@mailoo.org>
parents: 422
diff changeset
393
1
0a7c685faa53 ContactPanel: first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
394 #it's time to fill the page
11
331c093e4eb3 magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents: 9
diff changeset
395 self.bridge.call('getContacts', self._getContactsCB)
218
4e6467efd6bf browser_side: small improvements for parameters panel
souliane <souliane@mailoo.org>
parents: 215
diff changeset
396 self.bridge.call('getParamsUI', self._getParamsUICB)
11
331c093e4eb3 magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents: 9
diff changeset
397 self.bridge_signals.call('getSignals', self._getSignalsCB)
19
e8e3704eb97f Added basic chat panel
Goffi <goffi@goffi.org>
parents: 18
diff changeset
398 #We want to know our own jid
e8e3704eb97f Added basic chat panel
Goffi <goffi@goffi.org>
parents: 18
diff changeset
399 self.bridge.call('getProfileJid', self._getProfileJidCB)
2
669c531a857e signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents: 1
diff changeset
400
242
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
401 def domain_cb(value):
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
402 self._defaultDomain = value
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
403 log.info("new account domain: %s" % value)
242
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
404
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
405 def domain_eb(value):
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
406 self._defaultDomain = "libervia.org"
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
407
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
408 self.bridge.call("getNewAccountDomain", (domain_cb, domain_eb))
326
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
409 self.discuss_panel.addWidget(panels.MicroblogPanel(self, []))
312
b4781a350483 browser_side: display a "New message" button and add a "comment" icon for main entries in MicroblogPanel when the unibox is disabled
souliane <souliane@mailoo.org>
parents: 309
diff changeset
410
478
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
411 # get cached params and refresh the display
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
412 def param_cb(cat, name, count):
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
413 count[0] += 1
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
414 refresh = count[0] == len(C.CACHED_PARAMS)
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
415 return lambda value: self._paramUpdate(name, value, cat, refresh)
312
b4781a350483 browser_side: display a "New message" button and add a "comment" icon for main entries in MicroblogPanel when the unibox is disabled
souliane <souliane@mailoo.org>
parents: 309
diff changeset
416
478
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
417 count = [0] # used to do something similar to DeferredList
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
418 for cat, name in C.CACHED_PARAMS:
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
419 self.bridge.call('asyncGetParamA', param_cb(cat, name, count), name, cat)
242
a25aa882e09a browser_side: add context menu for contact:
souliane <souliane@mailoo.org>
parents: 239
diff changeset
420
415
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
421 def _tryAutoConnect(self, skip_validation=False):
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
422 """This method retrieve the eventual URL parameters to auto-connect the user.
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
423 @param skip_validation: if True, set the form values but do not validate it
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
424 """
503
88ece2a00c63 browser_side: display new lines and clickable URLs for headline message
souliane <souliane@mailoo.org>
parents: 500
diff changeset
425 params = strings.getURLParams(Window.getLocation().getSearch())
250
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
426 if "login" in params:
457
b55bc50756fa browser side: select the "Login" tab when using auto-connect feature
souliane <souliane@mailoo.org>
parents: 456
diff changeset
427 self._register_box._form.right_side.selectTab(0)
250
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
428 self._register_box._form.login_box.setText(params["login"])
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
429 self._register_box._form.login_pass_box.setFocus(True)
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
430 if "passwd" in params:
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
431 # try to connect
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
432 self._register_box._form.login_pass_box.setText(params["passwd"])
415
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
433 if not skip_validation:
fadbba1d793f server_side: added support for SSL and related parameters:
souliane <souliane@mailoo.org>
parents: 408
diff changeset
434 self._register_box._form.onLogin(None)
250
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
435 return True
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
436 else:
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
437 # this would eventually set the browser saved password
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
438 Timer(5, lambda: self._register_box._form.login_pass_box.setFocus(True))
38e6211d36ca browser_side: added auto-connection with URL parameters:
souliane <souliane@mailoo.org>
parents: 244
diff changeset
439
316
4148f8f4caa0 browser_side: fix import and method signatures relative to changeset e4f586fc6101
souliane <souliane@mailoo.org>
parents: 313
diff changeset
440 def _actionCb(self, data):
299
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
441 if not data:
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
442 # action was a one shot, nothing to do
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
443 pass
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
444 elif "xmlui" in data:
500
67a4e8383b70 browser side (XMLUI): XMLUI update to follow core changes:
Goffi <goffi@goffi.org>
parents: 495
diff changeset
445 ui = xmlui.create(self, xml_data=data['xmlui'])
67a4e8383b70 browser side (XMLUI): XMLUI update to follow core changes:
Goffi <goffi@goffi.org>
parents: 495
diff changeset
446 ui.show()
495
587fe75d1b16 browser_side: handle menus of type ROOM, SINGLE and ROSTER_JID
souliane <souliane@mailoo.org>
parents: 494
diff changeset
447 elif "public_blog" in data:
587fe75d1b16 browser_side: handle menus of type ROOM, SINGLE and ROSTER_JID
souliane <souliane@mailoo.org>
parents: 494
diff changeset
448 # TODO: use the bare instead of node when all blogs can be retrieved
587fe75d1b16 browser_side: handle menus of type ROOM, SINGLE and ROSTER_JID
souliane <souliane@mailoo.org>
parents: 494
diff changeset
449 node = jid.JID(data['public_blog']).node
587fe75d1b16 browser_side: handle menus of type ROOM, SINGLE and ROSTER_JID
souliane <souliane@mailoo.org>
parents: 494
diff changeset
450 self.addTab("%s's blog" % node, panels.WebPanel(self, "/blog/%s" % node))
299
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
451 else:
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
452 dialog.InfoDialog("Error",
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
453 "Unmanaged action result", Width="400px").center()
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
454
316
4148f8f4caa0 browser_side: fix import and method signatures relative to changeset e4f586fc6101
souliane <souliane@mailoo.org>
parents: 313
diff changeset
455 def _actionEb(self, err_data):
299
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
456 err_code, err_obj = err_data
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
457 dialog.InfoDialog("Error",
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
458 str(err_obj), Width="400px").center()
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
459
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
460 def launchAction(self, callback_id, data):
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
461 """ Launch a dynamic action
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
462 @param callback_id: id of the action to launch
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
463 @param data: data needed only for certain actions
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
464
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
465 """
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
466 if data is None:
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
467 data = {}
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
468 self.bridge.call('launchAction', (self._actionCb, self._actionEb), callback_id, data)
e4f586fc6101 server and browser side: updated callback system to follow core changes
Goffi <goffi@goffi.org>
parents: 298
diff changeset
469
1
0a7c685faa53 ContactPanel: first draft
Goffi <goffi@goffi.org>
parents: 0
diff changeset
470 def _getContactsCB(self, contacts_data):
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
471 for contact_ in contacts_data:
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
472 jid, attributes, groups = contact_
55
d5266c41ca24 Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents: 54
diff changeset
473 self._newContactCb(jid, attributes, groups)
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
474
2
669c531a857e signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents: 1
diff changeset
475 def _getSignalsCB(self, signal_data):
99
ca4fc2b2471b browser side: signal management
Goffi <goffi@goffi.org>
parents: 85
diff changeset
476 self.bridge_signals.call('getSignals', self._getSignalsCB)
548
530f3fc3e3d7 browser_side: fixes signal callback with no argument (e.g disconnected)
souliane <souliane@mailoo.org>
parents: 536
diff changeset
477 if len(signal_data) == 1:
530f3fc3e3d7 browser_side: fixes signal callback with no argument (e.g disconnected)
souliane <souliane@mailoo.org>
parents: 536
diff changeset
478 signal_data.append([])
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
479 log.debug("Got signal ==> name: %s, params: %s" % (signal_data[0], signal_data[1]))
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
480 name, args = signal_data
4
7325e787c22b personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents: 2
diff changeset
481 if name == 'personalEvent':
7325e787c22b personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents: 2
diff changeset
482 self._personalEventCb(*args)
19
e8e3704eb97f Added basic chat panel
Goffi <goffi@goffi.org>
parents: 18
diff changeset
483 elif name == 'newMessage':
e8e3704eb97f Added basic chat panel
Goffi <goffi@goffi.org>
parents: 18
diff changeset
484 self._newMessageCb(*args)
20
8f4b1a8914c3 - User status is now updated
Goffi <goffi@goffi.org>
parents: 19
diff changeset
485 elif name == 'presenceUpdate':
8f4b1a8914c3 - User status is now updated
Goffi <goffi@goffi.org>
parents: 19
diff changeset
486 self._presenceUpdateCb(*args)
326
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
487 elif name == 'paramUpdate':
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
488 self._paramUpdate(*args)
28
258dfaa1035f browser side:
Goffi <goffi@goffi.org>
parents: 23
diff changeset
489 elif name == 'roomJoined':
258dfaa1035f browser side:
Goffi <goffi@goffi.org>
parents: 23
diff changeset
490 self._roomJoinedCb(*args)
275
a763b2ac5d41 bridge + browser_side: bridge signals for games and their callbacks:
souliane <souliane@mailoo.org>
parents: 274
diff changeset
491 elif name == 'roomLeft':
a763b2ac5d41 bridge + browser_side: bridge signals for games and their callbacks:
souliane <souliane@mailoo.org>
parents: 274
diff changeset
492 self._roomLeftCb(*args)
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
493 elif name == 'roomUserJoined':
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
494 self._roomUserJoinedCb(*args)
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
495 elif name == 'roomUserLeft':
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
496 self._roomUserLeftCb(*args)
408
ee8ebfe23e16 browser_side: handle the signal "roomUserChangedNick"
souliane <souliane@mailoo.org>
parents: 407
diff changeset
497 elif name == 'roomUserChangedNick':
ee8ebfe23e16 browser_side: handle the signal "roomUserChangedNick"
souliane <souliane@mailoo.org>
parents: 407
diff changeset
498 self._roomUserChangedNickCb(*args)
251
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
499 elif name == 'askConfirmation':
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
500 self._askConfirmation(*args)
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
501 elif name == 'newAlert':
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
502 self._newAlert(*args)
275
a763b2ac5d41 bridge + browser_side: bridge signals for games and their callbacks:
souliane <souliane@mailoo.org>
parents: 274
diff changeset
503 elif name == 'tarotGamePlayers':
285
4f0c2fea358a browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents: 282
diff changeset
504 self._tarotGameStartedCb(True, *args)
36
1d406077b49b Tarot Game: first draft
Goffi <goffi@goffi.org>
parents: 35
diff changeset
505 elif name == 'tarotGameStarted':
285
4f0c2fea358a browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents: 282
diff changeset
506 self._tarotGameStartedCb(False, *args)
37
b306aa090438 Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents: 36
diff changeset
507 elif name == 'tarotGameNew' or \
38
7bea2ae0c4fb Tarot game: center_panel layout + chien can now be showed + fixed click event inheritance + card selection first draft
Goffi <goffi@goffi.org>
parents: 37
diff changeset
508 name == 'tarotGameChooseContrat' or \
39
305e81c7a32c Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents: 38
diff changeset
509 name == 'tarotGameShowCards' or \
305e81c7a32c Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents: 38
diff changeset
510 name == 'tarotGameInvalidCards' or \
305e81c7a32c Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents: 38
diff changeset
511 name == 'tarotGameCardsPlayed' or \
41
7782a786b2f0 Tarot game: score is now shown (need to use XMLUI later)
Goffi <goffi@goffi.org>
parents: 39
diff changeset
512 name == 'tarotGameYourTurn' or \
7782a786b2f0 Tarot game: score is now shown (need to use XMLUI later)
Goffi <goffi@goffi.org>
parents: 39
diff changeset
513 name == 'tarotGameScore':
37
b306aa090438 Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents: 36
diff changeset
514 self._tarotGameGenericCb(name, args[0], args[1:])
275
a763b2ac5d41 bridge + browser_side: bridge signals for games and their callbacks:
souliane <souliane@mailoo.org>
parents: 274
diff changeset
515 elif name == 'radiocolPlayers':
285
4f0c2fea358a browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents: 282
diff changeset
516 self._radioColStartedCb(True, *args)
127
e19a8de8b3de radio collective first draft
Goffi <goffi@goffi.org>
parents: 126
diff changeset
517 elif name == 'radiocolStarted':
285
4f0c2fea358a browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents: 282
diff changeset
518 self._radioColStartedCb(False, *args)
128
2849ec993d89 basic radio collective
Goffi <goffi@goffi.org>
parents: 127
diff changeset
519 elif name == 'radiocolPreload':
2849ec993d89 basic radio collective
Goffi <goffi@goffi.org>
parents: 127
diff changeset
520 self._radioColGenericCb(name, args[0], args[1:])
130
6576c5a90060 Working Radio Collective \o/
Goffi <goffi@goffi.org>
parents: 128
diff changeset
521 elif name == 'radiocolPlay':
6576c5a90060 Working Radio Collective \o/
Goffi <goffi@goffi.org>
parents: 128
diff changeset
522 self._radioColGenericCb(name, args[0], args[1:])
6576c5a90060 Working Radio Collective \o/
Goffi <goffi@goffi.org>
parents: 128
diff changeset
523 elif name == 'radiocolNoUpload':
6576c5a90060 Working Radio Collective \o/
Goffi <goffi@goffi.org>
parents: 128
diff changeset
524 self._radioColGenericCb(name, args[0], args[1:])
6576c5a90060 Working Radio Collective \o/
Goffi <goffi@goffi.org>
parents: 128
diff changeset
525 elif name == 'radiocolUploadOk':
6576c5a90060 Working Radio Collective \o/
Goffi <goffi@goffi.org>
parents: 128
diff changeset
526 self._radioColGenericCb(name, args[0], args[1:])
6576c5a90060 Working Radio Collective \o/
Goffi <goffi@goffi.org>
parents: 128
diff changeset
527 elif name == 'radiocolSongRejected':
6576c5a90060 Working Radio Collective \o/
Goffi <goffi@goffi.org>
parents: 128
diff changeset
528 self._radioColGenericCb(name, args[0], args[1:])
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
529 elif name == 'subscribe':
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
530 self._subscribeCb(*args)
55
d5266c41ca24 Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents: 54
diff changeset
531 elif name == 'contactDeleted':
d5266c41ca24 Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents: 54
diff changeset
532 self._contactDeletedCb(*args)
d5266c41ca24 Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents: 54
diff changeset
533 elif name == 'newContact':
d5266c41ca24 Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents: 54
diff changeset
534 self._newContactCb(*args)
137
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
535 elif name == 'entityDataUpdated':
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
536 self._entityDataUpdatedCb(*args)
213
8bbac49765d6 browser side: display the day change in chat window
souliane <souliane@mailoo.org>
parents: 210
diff changeset
537 elif name == 'chatStateReceived':
8bbac49765d6 browser side: display the day change in chat window
souliane <souliane@mailoo.org>
parents: 210
diff changeset
538 self._chatStateReceivedCb(*args)
19
e8e3704eb97f Added basic chat panel
Goffi <goffi@goffi.org>
parents: 18
diff changeset
539
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
540 def _getParamsUICB(self, xml_ui):
218
4e6467efd6bf browser_side: small improvements for parameters panel
souliane <souliane@mailoo.org>
parents: 215
diff changeset
541 """Hide the parameters item if there's nothing to display"""
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
542 if not xml_ui:
218
4e6467efd6bf browser_side: small improvements for parameters panel
souliane <souliane@mailoo.org>
parents: 215
diff changeset
543 self.panel.menu.removeItemParams()
4e6467efd6bf browser_side: small improvements for parameters panel
souliane <souliane@mailoo.org>
parents: 215
diff changeset
544
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
545 def _ownBlogsFills(self, mblogs, mblog_panel=None):
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
546 """Put our own microblogs in cache, then fill the panels with them.
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
547
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
548 @param mblogs (dict): dictionary mapping a publisher JID to blogs data.
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
549 @param mblog_panel (MicroblogPanel): the panel to fill, or all if None.
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
550 """
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
551 cache = []
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
552 for publisher in mblogs:
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
553 for mblog in mblogs[publisher][0]:
451
1a0cec9b0f1e better PEP-8 compliance
souliane <souliane@mailoo.org>
parents: 449
diff changeset
554 if 'content' not in mblog:
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
555 log.warning("No content found in microblog [%s]" % mblog)
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
556 continue
452
7b6506372466 browser_side: fixes bug introduced with previous changeset (1a0cec9b0f1e)
souliane <souliane@mailoo.org>
parents: 451
diff changeset
557 if 'groups' in mblog:
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
558 _groups = set(mblog['groups'].split() if mblog['groups'] else [])
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
559 else:
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
560 _groups = None
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
561 mblog_entry = panels.MicroblogItem(mblog)
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
562 cache.append((_groups, mblog_entry))
215
e830a0c60d32 server side: added the security_limit to setParam
souliane <souliane@mailoo.org>
parents: 213
diff changeset
563
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
564 self.mblog_cache.extend(cache)
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
565 if len(self.mblog_cache) > MAX_MBLOG_CACHE:
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
566 del self.mblog_cache[0:len(self.mblog_cache - MAX_MBLOG_CACHE)]
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
567
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
568 widget_list = [mblog_panel] if mblog_panel else self.libervia_widgets
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
569 for lib_wid in widget_list:
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
570 if isinstance(lib_wid, panels.MicroblogPanel):
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
571 self.fillMicroblogPanel(lib_wid, cache)
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
572
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
573 if self.initialised:
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
574 return
451
1a0cec9b0f1e better PEP-8 compliance
souliane <souliane@mailoo.org>
parents: 449
diff changeset
575 self.initialised = True # initialisation phase is finished here
1a0cec9b0f1e better PEP-8 compliance
souliane <souliane@mailoo.org>
parents: 449
diff changeset
576 for event_data in self.init_cache: # so we have to send all the cached events
205
ee744ffed7fc browser side: events data are cached until initialisation is finished (we get all microblogs)
Goffi <goffi@goffi.org>
parents: 204
diff changeset
577 self._personalEventCb(*event_data)
ee744ffed7fc browser side: events data are cached until initialisation is finished (we get all microblogs)
Goffi <goffi@goffi.org>
parents: 204
diff changeset
578 del self.init_cache
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
579
468
830b50593597 browser_side: fixes issues from the refactoring
souliane <souliane@mailoo.org>
parents: 467
diff changeset
580 def _getProfileJidCB(self, jid_s):
830b50593597 browser_side: fixes issues from the refactoring
souliane <souliane@mailoo.org>
parents: 467
diff changeset
581 self.whoami = jid.JID(jid_s)
20
8f4b1a8914c3 - User status is now updated
Goffi <goffi@goffi.org>
parents: 19
diff changeset
582 #we can now ask our status
427
b5b440e6ea16 server + browser side, getPresenceStatuses has been renamed
Goffi <goffi@goffi.org>
parents: 426
diff changeset
583 self.bridge.call('getPresenceStatuses', self._getPresenceStatusesCb)
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
584 #the rooms where we are
122
397a88b340f3 browser: fixed call to getRoomsJoined
Goffi <goffi@goffi.org>
parents: 119
diff changeset
585 self.bridge.call('getRoomsJoined', self._getRoomsJoinedCb)
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
586 #and if there is any subscription request waiting for us
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
587 self.bridge.call('getWaitingSub', self._getWaitingSubCb)
138
008fa8d36602 browser side: our own microblogs are now requested once logged
Goffi <goffi@goffi.org>
parents: 137
diff changeset
588 #we fill the panels already here
008fa8d36602 browser side: our own microblogs are now requested once logged
Goffi <goffi@goffi.org>
parents: 137
diff changeset
589 for lib_wid in self.libervia_widgets:
008fa8d36602 browser side: our own microblogs are now requested once logged
Goffi <goffi@goffi.org>
parents: 137
diff changeset
590 if isinstance(lib_wid, panels.MicroblogPanel):
008fa8d36602 browser side: our own microblogs are now requested once logged
Goffi <goffi@goffi.org>
parents: 137
diff changeset
591 if lib_wid.accept_all():
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
592 self.bridge.call('getMassiveMblogs', lib_wid.massiveInsert, 'ALL', [])
138
008fa8d36602 browser side: our own microblogs are now requested once logged
Goffi <goffi@goffi.org>
parents: 137
diff changeset
593 else:
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
594 self.bridge.call('getMassiveMblogs', lib_wid.massiveInsert, 'GROUP', lib_wid.accepted_groups)
229
e632f77c4219 bridge: asyncGetParamA takes a security_limit argument
souliane <souliane@mailoo.org>
parents: 227
diff changeset
595
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
596 #we ask for our own microblogs:
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
597 self.loadOurMainEntries()
20
8f4b1a8914c3 - User status is now updated
Goffi <goffi@goffi.org>
parents: 19
diff changeset
598
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
599 # initialize plugins which waited for the connection to be done
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
600 for plugin in self.plugins.values():
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
601 if hasattr(plugin, 'profileConnected'):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
602 plugin.profileConnected()
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
603
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
604 def loadOurMainEntries(self, index=0, mblog_panel=None):
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
605 """Load a page of our own blogs from the cache or ask them to the
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
606 backend. Then fill the panels with them.
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
607
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
608 @param index (int): starting index of the blog page to retrieve.
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
609 @param mblog_panel (MicroblogPanel): the panel to fill, or all if None.
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
610 """
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
611 delta = index - self.next_rsm_index
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
612 if delta < 0:
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
613 assert(mblog_panel is not None)
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
614 self.fillMicroblogPanel(mblog_panel, self.mblog_cache[index:index + C.RSM_MAX_ITEMS])
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
615 return
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
616
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
617 def cb(result):
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
618 self._ownBlogsFills(result, mblog_panel)
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
619
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
620 rsm = {'max': str(delta + C.RSM_MAX_ITEMS), 'index': str(self.next_rsm_index)}
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
621 self.bridge.call('getMassiveMblogs', cb, 'JID', [self.whoami.bare], rsm)
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
622 self.next_rsm_index = index + C.RSM_MAX_ITEMS
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
623
4
7325e787c22b personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents: 2
diff changeset
624 ## Signals callbacks ##
7325e787c22b personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents: 2
diff changeset
625
58
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
626 def _personalEventCb(self, sender, event_type, data):
205
ee744ffed7fc browser side: events data are cached until initialisation is finished (we get all microblogs)
Goffi <goffi@goffi.org>
parents: 204
diff changeset
627 if not self.initialised:
ee744ffed7fc browser side: events data are cached until initialisation is finished (we get all microblogs)
Goffi <goffi@goffi.org>
parents: 204
diff changeset
628 self.init_cache.append((sender, event_type, data))
ee744ffed7fc browser side: events data are cached until initialisation is finished (we get all microblogs)
Goffi <goffi@goffi.org>
parents: 204
diff changeset
629 return
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
630 sender = jid.JID(sender).bare
4
7325e787c22b personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents: 2
diff changeset
631 if event_type == "MICROBLOG":
202
2bc6cf004e61 browser, server: comments handling:
Goffi <goffi@goffi.org>
parents: 200
diff changeset
632 if not 'content' in data:
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
633 log.warning("No content found in microblog data")
4
7325e787c22b personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents: 2
diff changeset
634 return
202
2bc6cf004e61 browser, server: comments handling:
Goffi <goffi@goffi.org>
parents: 200
diff changeset
635 if 'groups' in data:
16
099c05a0dcab browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents: 14
diff changeset
636 _groups = set(data['groups'].split() if data['groups'] else [])
099c05a0dcab browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents: 14
diff changeset
637 else:
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
638 _groups = None
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
639 mblog_entry = panels.MicroblogItem(data)
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
640
84
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
641 for lib_wid in self.libervia_widgets:
8f35e9970e7f browser side: new widget handling:
Goffi <goffi@goffi.org>
parents: 83
diff changeset
642 if isinstance(lib_wid, panels.MicroblogPanel):
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
643 self.addBlogEntry(lib_wid, sender, _groups, mblog_entry)
58
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
644
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
645 if sender == self.whoami.bare:
282
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
646 found = False
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
647 for index in xrange(0, len(self.mblog_cache)):
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
648 entry = self.mblog_cache[index]
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
649 if entry[1].id == mblog_entry.id:
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
650 # replace existing entry
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
651 self.mblog_cache.remove(entry)
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
652 self.mblog_cache.insert(index, (_groups, mblog_entry))
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
653 found = True
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
654 break
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
655 if not found:
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
656 self.mblog_cache.append((_groups, mblog_entry))
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
657 if len(self.mblog_cache) > MAX_MBLOG_CACHE:
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
658 del self.mblog_cache[0:len(self.mblog_cache - MAX_MBLOG_CACHE)]
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
659 elif event_type == 'MICROBLOG_DELETE':
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
660 for lib_wid in self.libervia_widgets:
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
661 if isinstance(lib_wid, panels.MicroblogPanel):
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
662 lib_wid.removeEntry(data['type'], data['id'])
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
663 log.debug("%s %s %s" % (self.whoami.bare, sender, data['type']))
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
664
282
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
665 if sender == self.whoami.bare and data['type'] == 'main_item':
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
666 for index in xrange(0, len(self.mblog_cache)):
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
667 entry = self.mblog_cache[index]
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
668 if entry[1].id == data['id']:
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
669 self.mblog_cache.remove(entry)
ae3ec654836d browser_side: added blog item modification/deletion
souliane <souliane@mailoo.org>
parents: 280
diff changeset
670 break
58
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
671
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
672 def addBlogEntry(self, mblog_panel, sender, _groups, mblog_entry):
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
673 """Check if an entry can go in MicroblogPanel and add to it
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
674 @param mblog_panel: MicroblogPanel instance
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
675 @param sender: jid of the entry sender
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
676 @param _groups: groups which can receive this entry
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
677 @param mblog_entry: panels.MicroblogItem instance"""
202
2bc6cf004e61 browser, server: comments handling:
Goffi <goffi@goffi.org>
parents: 200
diff changeset
678 if mblog_entry.type == "comment" or mblog_panel.isJidAccepted(sender) or (_groups == None and self.whoami and sender == self.whoami.bare) \
64
104e71ce2293 browser side: fixed microblog filtering
Goffi <goffi@goffi.org>
parents: 62
diff changeset
679 or (_groups and _groups.intersection(mblog_panel.accepted_groups)):
58
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
680 mblog_panel.addEntry(mblog_entry)
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
681
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
682 def fillMicroblogPanel(self, mblog_panel, mblogs):
58
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
683 """Fill a microblog panel with entries in cache
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
684 @param mblog_panel: MicroblogPanel instance
4fa3d57f72f8 browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents: 57
diff changeset
685 """
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
686 #XXX: only our own entries are cached
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
687 for cache_entry in mblogs:
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
688 _groups, mblog_entry = cache_entry
139
b6658f3ac8a0 browser side: own microblogs print
Goffi <goffi@goffi.org>
parents: 138
diff changeset
689 self.addBlogEntry(mblog_panel, self.whoami.bare, *cache_entry)
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
690
163
b887186e8fc8 browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents: 158
diff changeset
691 def getEntityMBlog(self, entity):
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
692 log.info("geting mblog for entity [%s]" % (entity,))
163
b887186e8fc8 browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents: 158
diff changeset
693 for lib_wid in self.libervia_widgets:
b887186e8fc8 browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents: 158
diff changeset
694 if isinstance(lib_wid, panels.MicroblogPanel):
b887186e8fc8 browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents: 158
diff changeset
695 if lib_wid.isJidAccepted(entity):
586
3eb3a2c0c011 browser and server side: uses RSM (XEP-0059)
souliane <souliane@mailoo.org>
parents: 584
diff changeset
696 self.bridge.call('getMassiveMblogs', lib_wid.massiveInsert, 'JID', [entity])
163
b887186e8fc8 browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents: 158
diff changeset
697
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
698 def getLiberviaWidget(self, class_, entity, ignoreOtherTabs=True):
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
699 """Get the corresponding panel if it exists.
574
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
700 @param class_ (class): class of the panel (ChatPanel, MicroblogPanel...)
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
701 @param entity (dict): dictionnary to define the entity.
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
702 @param ignoreOtherTabs (bool): if True, the widgets that are not
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
703 contained by the currently selected tab will be ignored
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
704 @return: the existing widget that has been found or None."""
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
705 selected_tab = self.tab_panel.getCurrentPanel()
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
706 for lib_wid in self.libervia_widgets:
458
1eeed8028199 browser side: rename parameter of getParent / getWidgetPanel from 'verbose' to 'expect'
souliane <souliane@mailoo.org>
parents: 457
diff changeset
707 parent = lib_wid.getWidgetsPanel(expect=False)
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
708 if parent is None or (ignoreOtherTabs and parent != selected_tab):
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
709 # do not return a widget that is not in the currently selected tab
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
710 continue
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
711 if isinstance(lib_wid, class_):
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
712 try:
574
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
713 if lib_wid.matchEntity(*(entity.values())): # XXX: passing **entity bugs!
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
714 log.debug("existing widget found: %s" % lib_wid.getDebugName())
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
715 return lib_wid
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
716 except AttributeError as e:
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
717 e.stack_list()
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
718 return None
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
719 return None
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
720
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
721 def getOrCreateLiberviaWidget(self, class_, entity, select=True, new_tab=None):
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
722 """Get the matching LiberviaWidget if it exists, or create a new one.
574
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
723 @param class_ (class): class of the panel (ChatPanel, MicroblogPanel...)
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
724 @param entity (dict): dictionnary to define the entity.
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
725 @param select (bool): if True, select the widget that has been found or created
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
726 @param new_tab (str): if not None, a widget which is created is created in
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
727 a new tab. In that case new_tab is a unicode to label that new tab.
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
728 If new_tab is not None and a widget is found, no tab is created.
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
729 @return: the newly created wigdet if REUSE_EXISTING_LIBERVIA_WIDGETS
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
730 is set to False or if the widget has not been found, the existing
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
731 widget that has been found otherwise."""
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
732 lib_wid = None
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
733 tab = None
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
734 if REUSE_EXISTING_LIBERVIA_WIDGETS:
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
735 lib_wid = self.getLiberviaWidget(class_, entity, new_tab is None)
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
736 if lib_wid is None: # create a new widget
574
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
737 lib_wid = class_.createPanel(self, *(entity.values())) # XXX: passing **entity bugs!
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
738 if new_tab is None:
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
739 self.addWidget(lib_wid)
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
740 else:
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
741 tab = self.addTab(new_tab, lib_wid, False)
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
742 else: # reuse existing widget
458
1eeed8028199 browser side: rename parameter of getParent / getWidgetPanel from 'verbose' to 'expect'
souliane <souliane@mailoo.org>
parents: 457
diff changeset
743 tab = lib_wid.getWidgetsPanel(expect=False)
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
744 if new_tab is None:
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
745 if tab is not None:
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
746 tab.removeWidget(lib_wid)
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
747 self.addWidget(lib_wid)
251
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
748 if select:
267
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
749 if new_tab is not None:
a76243c02074 browser_side: changes regarding widgets and tabs:
souliane <souliane@mailoo.org>
parents: 266
diff changeset
750 self.tab_panel.selectTab(tab)
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
751 # must be done after the widget is added,
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
752 # for example to scroll to the bottom
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
753 self.setSelected(lib_wid)
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
754 lib_wid.refresh()
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
755 return lib_wid
163
b887186e8fc8 browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents: 158
diff changeset
756
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
757 def getRoomWidget(self, target):
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
758 """Get the MUC widget for the given target.
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
759
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
760 @param target (jid.JID): BARE jid of the MUC
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
761 @return: panels.ChatPanel instance or None
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
762 """
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
763 entity = {'item': target, 'type_': 'group'}
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
764 if target.full() in self.room_list or target in self.room_list: # as JID is a string-based class, we don't know what will please Pyjamas...
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
765 return self.getLiberviaWidget(panels.ChatPanel, entity, ignoreOtherTabs=False)
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
766 return None
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
767
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
768 def getOrCreateRoomWidget(self, target):
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
769 """Get the MUC widget for the given target, create it if necessary.
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
770
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
771 @param target (jid.JID): BARE jid of the MUC
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
772 @return: panels.ChatPanel instance
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
773 """
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
774 lib_wid = self.getRoomWidget(target)
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
775 if lib_wid:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
776 return lib_wid
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
777
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
778 # XXX: target.node.startwith(...) raises an error "startswith is not a function"
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
779 # This happens when node a is property defined in the JID class
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
780 # FIXME: pyjamas doesn't handle the properties well
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
781 node = target.node
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
782
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
783 # XXX: it's not really beautiful, but it works :)
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
784 if node.startswith('sat_tarot_'):
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
785 tab_name = "Tarot"
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
786 elif node.startswith('sat_radiocol_'):
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
787 tab_name = "Radio collective"
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
788 else:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
789 tab_name = target.node
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
790
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
791 self.room_list.append(target)
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
792 entity = {'item': target, 'type_': 'group'}
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
793 return self.getOrCreateLiberviaWidget(panels.ChatPanel, entity, new_tab=tab_name)
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
794
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
795 def _newMessageCb(self, from_jid_s, msg, msg_type, to_jid_s, extra):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
796 from_jid = jid.JID(from_jid_s)
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
797 to_jid = jid.JID(to_jid_s)
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
798 for plugin in self.plugins.values():
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
799 if hasattr(plugin, 'messageReceivedTrigger'):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
800 if not plugin.messageReceivedTrigger(from_jid, msg, msg_type, to_jid, extra):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
801 return # plugin returned False to interrupt the process
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
802 self.newMessageCb(from_jid, msg, msg_type, to_jid, extra)
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
803
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
804 def newMessageCb(self, from_jid, msg, msg_type, to_jid, extra):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
805 other = to_jid if from_jid.bare == self.whoami.bare else from_jid
574
b07f0fe2763a browser_side: safer attributes handling in getOrCreateLiberviaWidget + use it to create MUC panels
souliane <souliane@mailoo.org>
parents: 573
diff changeset
806 lib_wid = self.getLiberviaWidget(panels.ChatPanel, {'item': other}, ignoreOtherTabs=False)
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
807 self.displayNotification(from_jid, msg)
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
808 if msg_type == 'headline' and from_jid.full() == self._defaultDomain:
460
d0cd8ae579f7 browser side: message of type "headline" sent from the host are displayed in a InfoDialog
souliane <souliane@mailoo.org>
parents: 458
diff changeset
809 try:
533
19fc2ebc02dd browser_side: management of new "info" newMessage type
Goffi <goffi@goffi.org>
parents: 530
diff changeset
810 assert extra['subject'] # subject is defined and not empty
460
d0cd8ae579f7 browser side: message of type "headline" sent from the host are displayed in a InfoDialog
souliane <souliane@mailoo.org>
parents: 458
diff changeset
811 title = extra['subject']
d0cd8ae579f7 browser side: message of type "headline" sent from the host are displayed in a InfoDialog
souliane <souliane@mailoo.org>
parents: 458
diff changeset
812 except (KeyError, AssertionError):
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
813 title = _('Announcement from %s') % from_jid.full()
505
f0b56c022c01 browser_side: use of new XHTML2Text method
Goffi <goffi@goffi.org>
parents: 503
diff changeset
814 msg = strings.addURLToText(html_tools.XHTML2Text(msg))
460
d0cd8ae579f7 browser side: message of type "headline" sent from the host are displayed in a InfoDialog
souliane <souliane@mailoo.org>
parents: 458
diff changeset
815 dialog.InfoDialog(title, msg).show()
d0cd8ae579f7 browser side: message of type "headline" sent from the host are displayed in a InfoDialog
souliane <souliane@mailoo.org>
parents: 458
diff changeset
816 return
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
817 if lib_wid is not None:
533
19fc2ebc02dd browser_side: management of new "info" newMessage type
Goffi <goffi@goffi.org>
parents: 530
diff changeset
818 if msg_type == C.MESS_TYPE_INFO:
19fc2ebc02dd browser_side: management of new "info" newMessage type
Goffi <goffi@goffi.org>
parents: 530
diff changeset
819 lib_wid.printInfo(msg)
19fc2ebc02dd browser_side: management of new "info" newMessage type
Goffi <goffi@goffi.org>
parents: 530
diff changeset
820 else:
19fc2ebc02dd browser_side: management of new "info" newMessage type
Goffi <goffi@goffi.org>
parents: 530
diff changeset
821 lib_wid.printMessage(from_jid, msg, extra)
536
048ae7314156 browser_side: temporary way to display the OTR state in the LiberviaWidget header
souliane <souliane@mailoo.org>
parents: 533
diff changeset
822 if 'header_info' in extra:
048ae7314156 browser_side: temporary way to display the OTR state in the LiberviaWidget header
souliane <souliane@mailoo.org>
parents: 533
diff changeset
823 lib_wid.setHeaderInfo(extra['header_info'])
230
266e9678eec0 browser_side: added the flag REUSE_EXISTING_LIBERVIA_WIDGETS
souliane <souliane@mailoo.org>
parents: 229
diff changeset
824 else:
536
048ae7314156 browser_side: temporary way to display the OTR state in the LiberviaWidget header
souliane <souliane@mailoo.org>
parents: 533
diff changeset
825 # FIXME: "info" message and header info will be lost here
455
05e98b8d9f02 browser side: display messages from contacts not in roster
souliane <souliane@mailoo.org>
parents: 452
diff changeset
826 if not self.contact_panel.isContactInRoster(other.bare):
05e98b8d9f02 browser side: display messages from contacts not in roster
souliane <souliane@mailoo.org>
parents: 452
diff changeset
827 self.contact_panel.updateContact(other.bare, {}, [C.GROUP_NOT_IN_ROSTER])
328
835a8ae799e7 Add notifications support, fixes bug 7.
Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
parents: 326
diff changeset
828 # The message has not been shown, we must indicate it
62
12e889a683ce server side: misc stuff:
Goffi <goffi@goffi.org>
parents: 58
diff changeset
829 self.contact_panel.setContactMessageWaiting(other.bare, True)
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
830
20
8f4b1a8914c3 - User status is now updated
Goffi <goffi@goffi.org>
parents: 19
diff changeset
831 def _presenceUpdateCb(self, entity, show, priority, statuses):
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
832 entity_jid = jid.JID(entity)
304
2ab513a47e3b browser_side: fix presence/status update (do not share between different resources)
souliane <souliane@mailoo.org>
parents: 299
diff changeset
833 if self.whoami and self.whoami == entity_jid: # XXX: QnD way to get our presence/status
482
437eefa53a01 misc: remove some pylint errors and warnings
souliane <souliane@mailoo.org>
parents: 480
diff changeset
834 assert(isinstance(self.status_panel, panels.PresenceStatusPanel))
437eefa53a01 misc: remove some pylint errors and warnings
souliane <souliane@mailoo.org>
parents: 480
diff changeset
835 self.status_panel.setPresence(show) # pylint: disable=E1103
304
2ab513a47e3b browser_side: fix presence/status update (do not share between different resources)
souliane <souliane@mailoo.org>
parents: 299
diff changeset
836 if statuses:
482
437eefa53a01 misc: remove some pylint errors and warnings
souliane <souliane@mailoo.org>
parents: 480
diff changeset
837 self.status_panel.setStatus(statuses.values()[0]) # pylint: disable=E1103
304
2ab513a47e3b browser_side: fix presence/status update (do not share between different resources)
souliane <souliane@mailoo.org>
parents: 299
diff changeset
838 else:
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
839 bare_jid = entity_jid.bareJID()
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
840 if bare_jid.full() in self.room_list or bare_jid in self.room_list: # as JID is a string-based class, we don't know what will please Pyjamas...
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
841 wid = self.getRoomWidget(bare_jid)
573
12823bcbd05b browser_side: display MUC occupants presences
souliane <souliane@mailoo.org>
parents: 572
diff changeset
842 else:
12823bcbd05b browser_side: display MUC occupants presences
souliane <souliane@mailoo.org>
parents: 572
diff changeset
843 wid = self.contact_panel
12823bcbd05b browser_side: display MUC occupants presences
souliane <souliane@mailoo.org>
parents: 572
diff changeset
844 if show == 'unavailable': # XXX: save some resources as for now we only need 'unavailable'
12823bcbd05b browser_side: display MUC occupants presences
souliane <souliane@mailoo.org>
parents: 572
diff changeset
845 for plugin in self.plugins.values():
12823bcbd05b browser_side: display MUC occupants presences
souliane <souliane@mailoo.org>
parents: 572
diff changeset
846 if hasattr(plugin, 'presenceReceivedTrigger'):
12823bcbd05b browser_side: display MUC occupants presences
souliane <souliane@mailoo.org>
parents: 572
diff changeset
847 plugin.presenceReceivedTrigger(entity_jid, show, priority, statuses)
577
e1a773a64fb6 browser_side: fixes the display of MUC occupants presences
souliane <souliane@mailoo.org>
parents: 576
diff changeset
848 if wid:
e1a773a64fb6 browser_side: fixes the display of MUC occupants presences
souliane <souliane@mailoo.org>
parents: 576
diff changeset
849 wid.setConnected(entity_jid.bare, entity_jid.resource, show, priority, statuses)
28
258dfaa1035f browser side:
Goffi <goffi@goffi.org>
parents: 23
diff changeset
850
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
851 def _roomJoinedCb(self, room_jid_s, room_nicks, user_nick):
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
852 chat_panel = self.getOrCreateRoomWidget(jid.JID(room_jid_s))
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
853 chat_panel.setUserNick(user_nick)
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
854 chat_panel.setPresents(room_nicks)
343
b66028d21a1c browser_side: message box was not displayed on muc opening (when unibox is disabled)
souliane <souliane@mailoo.org>
parents: 340
diff changeset
855 chat_panel.refresh()
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
856
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
857 def _roomLeftCb(self, room_jid_s, room_nicks, user_nick):
275
a763b2ac5d41 bridge + browser_side: bridge signals for games and their callbacks:
souliane <souliane@mailoo.org>
parents: 274
diff changeset
858 try:
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
859 del self.room_list[room_jid_s]
275
a763b2ac5d41 bridge + browser_side: bridge signals for games and their callbacks:
souliane <souliane@mailoo.org>
parents: 274
diff changeset
860 except KeyError:
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
861 try: # as JID is a string-based class, we don't know what will please Pyjamas...
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
862 del self.room_list[jid.JID(room_jid_s)]
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
863 except KeyError:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
864 pass
275
a763b2ac5d41 bridge + browser_side: bridge signals for games and their callbacks:
souliane <souliane@mailoo.org>
parents: 274
diff changeset
865
146
d15fbb208ba0 browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents: 141
diff changeset
866 def _roomUserJoinedCb(self, room_jid_s, user_nick, user_data):
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
867 lib_wid = self.getOrCreateRoomWidget(jid.JID(room_jid_s))
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
868 if lib_wid:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
869 lib_wid.userJoined(user_nick, user_data)
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
870
146
d15fbb208ba0 browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents: 141
diff changeset
871 def _roomUserLeftCb(self, room_jid_s, user_nick, user_data):
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
872 lib_wid = self.getRoomWidget(jid.JID(room_jid_s))
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
873 if lib_wid:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
874 lib_wid.userLeft(user_nick, user_data)
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
875
408
ee8ebfe23e16 browser_side: handle the signal "roomUserChangedNick"
souliane <souliane@mailoo.org>
parents: 407
diff changeset
876 def _roomUserChangedNickCb(self, room_jid_s, old_nick, new_nick):
ee8ebfe23e16 browser_side: handle the signal "roomUserChangedNick"
souliane <souliane@mailoo.org>
parents: 407
diff changeset
877 """Called when an user joined a MUC room"""
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
878 lib_wid = self.getRoomWidget(jid.JID(room_jid_s))
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
879 if lib_wid:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
880 lib_wid.changeUserNick(old_nick, new_nick)
408
ee8ebfe23e16 browser_side: handle the signal "roomUserChangedNick"
souliane <souliane@mailoo.org>
parents: 407
diff changeset
881
285
4f0c2fea358a browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents: 282
diff changeset
882 def _tarotGameStartedCb(self, waiting, room_jid_s, referee, players):
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
883 lib_wid = self.getRoomWidget(jid.JID(room_jid_s))
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
884 if lib_wid:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
885 lib_wid.startGame("Tarot", waiting, referee, players)
36
1d406077b49b Tarot Game: first draft
Goffi <goffi@goffi.org>
parents: 35
diff changeset
886
146
d15fbb208ba0 browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents: 141
diff changeset
887 def _tarotGameGenericCb(self, event_name, room_jid_s, args):
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
888 lib_wid = self.getRoomWidget(jid.JID(room_jid_s))
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
889 if lib_wid:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
890 getattr(lib_wid.getGame("Tarot"), event_name)(*args)
37
b306aa090438 Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents: 36
diff changeset
891
285
4f0c2fea358a browser_side (plugin radiocol): use the status label to give more information
souliane <souliane@mailoo.org>
parents: 282
diff changeset
892 def _radioColStartedCb(self, waiting, room_jid_s, referee, players, queue_data):
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
893 lib_wid = self.getRoomWidget(jid.JID(room_jid_s))
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
894 if lib_wid:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
895 lib_wid.startGame("RadioCol", waiting, referee, players, queue_data)
210
3092f6b1710c browser side: make the OK button title for group selector configureable + few "cosmetic" changes (PEP 8...)
souliane <souliane@mailoo.org>
parents: 205
diff changeset
896
146
d15fbb208ba0 browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents: 141
diff changeset
897 def _radioColGenericCb(self, event_name, room_jid_s, args):
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
898 lib_wid = self.getRoomWidget(jid.JID(room_jid_s))
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
899 if lib_wid:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
900 getattr(lib_wid.getGame("RadioCol"), event_name)(*args)
128
2849ec993d89 basic radio collective
Goffi <goffi@goffi.org>
parents: 127
diff changeset
901
427
b5b440e6ea16 server + browser side, getPresenceStatuses has been renamed
Goffi <goffi@goffi.org>
parents: 426
diff changeset
902 def _getPresenceStatusesCb(self, presence_data):
28
258dfaa1035f browser side:
Goffi <goffi@goffi.org>
parents: 23
diff changeset
903 for entity in presence_data:
258dfaa1035f browser side:
Goffi <goffi@goffi.org>
parents: 23
diff changeset
904 for resource in presence_data[entity]:
258dfaa1035f browser side:
Goffi <goffi@goffi.org>
parents: 23
diff changeset
905 args = presence_data[entity][resource]
576
daa9be94e88f browser_side: fixes wrong JID construction when processing getPresenceStatuses result
souliane <souliane@mailoo.org>
parents: 574
diff changeset
906 full = ('%s/%s' % (jid.JID(entity).bare, resource)) if resource else entity
daa9be94e88f browser_side: fixes wrong JID construction when processing getPresenceStatuses result
souliane <souliane@mailoo.org>
parents: 574
diff changeset
907 self._presenceUpdateCb(full, *args)
20
8f4b1a8914c3 - User status is now updated
Goffi <goffi@goffi.org>
parents: 19
diff changeset
908
122
397a88b340f3 browser: fixed call to getRoomsJoined
Goffi <goffi@goffi.org>
parents: 119
diff changeset
909 def _getRoomsJoinedCb(self, room_data):
33
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
910 for room in room_data:
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
911 self._roomJoinedCb(*room)
e70521e6d803 browser side, misc stuffs
Goffi <goffi@goffi.org>
parents: 28
diff changeset
912
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
913 def _getWaitingSubCb(self, waiting_sub):
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
914 for sub in waiting_sub:
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
915 self._subscribeCb(waiting_sub[sub], sub)
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
916
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
917 def _subscribeCb(self, sub_type, entity):
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
918 if sub_type == 'subscribed':
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
919 dialog.InfoDialog('Subscription confirmation', 'The contact <b>%s</b> has added you to his/her contact list' % html_tools.html_sanitize(entity)).show()
163
b887186e8fc8 browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents: 158
diff changeset
920 self.getEntityMBlog(entity)
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
921
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
922 elif sub_type == 'unsubscribed':
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
923 dialog.InfoDialog('Subscription refusal', 'The contact <b>%s</b> has refused to add you in his/her contact list' % html_tools.html_sanitize(entity)).show()
163
b887186e8fc8 browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents: 158
diff changeset
924 #TODO: remove microblogs from panels
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
925
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
926 elif sub_type == 'subscribe':
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
927 #The user want to subscribe to our presence
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
928 _dialog = None
467
97c72fe4a5f2 browser_side: import fixes:
Goffi <goffi@goffi.org>
parents: 462
diff changeset
929 msg = HTML('The contact <b>%s</b> want to add you in his/her contact list, do you accept ?' % html_tools.html_sanitize(entity))
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
930
62
12e889a683ce server side: misc stuff:
Goffi <goffi@goffi.org>
parents: 58
diff changeset
931 def ok_cb(ignore):
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
932 self.bridge.call('subscription', None, "subscribed", entity, '', _dialog.getSelectedGroups())
451
1a0cec9b0f1e better PEP-8 compliance
souliane <souliane@mailoo.org>
parents: 449
diff changeset
933
62
12e889a683ce server side: misc stuff:
Goffi <goffi@goffi.org>
parents: 58
diff changeset
934 def cancel_cb(ignore):
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
935 self.bridge.call('subscription', None, "unsubscribed", entity, '', '')
226
744426c2b699 browser_side, misc: better PEP8 compliance
souliane <souliane@mailoo.org>
parents: 223
diff changeset
936
227
67e24c342e7f browser_side: bug fix for changeset 3092f6b1710c
souliane <souliane@mailoo.org>
parents: 226
diff changeset
937 _dialog = dialog.GroupSelector([msg], self.contact_panel.getGroups(), [], "Add", ok_cb, cancel_cb)
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
938 _dialog.setHTML('<b>Add contact request</b>')
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
939 _dialog.show()
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
940
55
d5266c41ca24 Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents: 54
diff changeset
941 def _contactDeletedCb(self, entity):
d5266c41ca24 Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents: 54
diff changeset
942 self.contact_panel.removeContact(entity)
d5266c41ca24 Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents: 54
diff changeset
943
482
437eefa53a01 misc: remove some pylint errors and warnings
souliane <souliane@mailoo.org>
parents: 480
diff changeset
944 def _newContactCb(self, contact_jid, attributes, groups):
437eefa53a01 misc: remove some pylint errors and warnings
souliane <souliane@mailoo.org>
parents: 480
diff changeset
945 self.contact_panel.updateContact(contact_jid, attributes, groups)
54
f25c4077f6b9 addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents: 50
diff changeset
946
137
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
947 def _entityDataUpdatedCb(self, entity_jid_s, key, value):
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
948 if key == "avatar":
483
0bbbef1d53a8 server side (blog): use user's avatar a the blog's favicon + small refactorization
souliane <souliane@mailoo.org>
parents: 482
diff changeset
949 avatar = '/' + C.AVATARS_DIR + value
137
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
950 self.avatars_cache[entity_jid_s] = avatar
480
50b286866739 browser side: display avatars in the contact panel
souliane <souliane@mailoo.org>
parents: 479
diff changeset
951 self.contact_panel.updateAvatar(entity_jid_s, avatar)
119
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
952
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
953 for lib_wid in self.libervia_widgets:
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
954 if isinstance(lib_wid, panels.MicroblogPanel):
137
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
955 if lib_wid.isJidAccepted(entity_jid_s) or (self.whoami and entity_jid_s == self.whoami.bare):
b145da69a218 server + browser side: new api fix
Goffi <goffi@goffi.org>
parents: 135
diff changeset
956 lib_wid.updateValue('avatar', entity_jid_s, avatar)
119
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
957
251
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
958 def _chatStateReceivedCb(self, from_jid_s, state):
213
8bbac49765d6 browser side: display the day change in chat window
souliane <souliane@mailoo.org>
parents: 210
diff changeset
959 """Callback when a new chat state is received.
407
6a6551de4414 browser_side: display chat states (with symbols) for MUC participants
souliane <souliane@mailoo.org>
parents: 392
diff changeset
960 @param from_jid_s: JID of the contact who sent his state, or '@ALL@'
6a6551de4414 browser_side: display chat states (with symbols) for MUC participants
souliane <souliane@mailoo.org>
parents: 392
diff changeset
961 @param state: new state (string)
213
8bbac49765d6 browser side: display the day change in chat window
souliane <souliane@mailoo.org>
parents: 210
diff changeset
962 """
407
6a6551de4414 browser_side: display chat states (with symbols) for MUC participants
souliane <souliane@mailoo.org>
parents: 392
diff changeset
963 if from_jid_s == '@ALL@':
584
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
964 for lib_wid in self.libervia_widgets:
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
965 if isinstance(lib_wid, panels.ChatPanel):
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
966 lib_wid.setState(state, nick=C.ALL_OCCUPANTS)
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
967 return
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
968 from_jid = jid.JID(from_jid_s)
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
969 lib_wid = self.getLiberviaWidget(panels.ChatPanel, {'item': from_jid}, ignoreOtherTabs=False)
0a06cf833f5a browser_side: various improvements, especially for MUC
souliane <souliane@mailoo.org>
parents: 581
diff changeset
970 lib_wid.setState(state, nick=from_jid.resource)
119
a8d11fdea090 microblog avatar update
Goffi <goffi@goffi.org>
parents: 116
diff changeset
971
251
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
972 def _askConfirmation(self, confirmation_id, confirmation_type, data):
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
973 answer_data = {}
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
974
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
975 def confirm_cb(result):
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
976 self.bridge.call('confirmationAnswer', None, confirmation_id, result, answer_data)
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
977
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
978 if confirmation_type == "YES/NO":
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
979 dialog.ConfirmDialog(confirm_cb, text=data["message"], title=data["title"]).show()
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
980
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
981 def _newAlert(self, message, title, alert_type):
24335e82fef0 plugin XEP-249: added parameter Misc / Auto-join MUC on invitation:
souliane <souliane@mailoo.org>
parents: 250
diff changeset
982 dialog.InfoDialog(title, message).show()
239
b911f2b43fd4 browser_side: added input history in the unibox:
souliane <souliane@mailoo.org>
parents: 235
diff changeset
983
326
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
984 def _paramUpdate(self, name, value, category, refresh=True):
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
985 """This is called when the paramUpdate signal is received, but also
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
986 during initialization when the UI parameters values are retrieved.
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
987 @param refresh: set to True to refresh the general UI
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
988 """
478
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
989 for param_cat, param_name in C.CACHED_PARAMS:
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
990 if name == param_name and category == param_cat:
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
991 self.cached_params[(category, name)] = value
326
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
992 if refresh:
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
993 self.refresh()
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
994 break
36927be51481 browser_side: fixed the behavior regarding "Enable unibox" parameter:
souliane <souliane@mailoo.org>
parents: 325
diff changeset
995
478
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
996 def getCachedParam(self, category, name):
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
997 """Return a parameter cached value (e.g for refreshing the UI)
462
07433bd892ee server and browser sides: fixes UI parameters initialisation with user values + small refactoring
souliane <souliane@mailoo.org>
parents: 460
diff changeset
998
478
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
999 @param category (str): the parameter category
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
1000 @pram name (str): the parameter name
462
07433bd892ee server and browser sides: fixes UI parameters initialisation with user values + small refactoring
souliane <souliane@mailoo.org>
parents: 460
diff changeset
1001 """
478
992b900ab876 browser side: rename and refactor constant UI_PARAMS to CACHED_PARAMS, from a dict of dict to a list of 2-tuple
souliane <souliane@mailoo.org>
parents: 477
diff changeset
1002 return self.cached_params[(category, name)] if (category, name) in self.cached_params else None
462
07433bd892ee server and browser sides: fixes UI parameters initialisation with user values + small refactoring
souliane <souliane@mailoo.org>
parents: 460
diff changeset
1003
298
e99f578c7179 browser side: sendMessage alert on error
Goffi <goffi@goffi.org>
parents: 296
diff changeset
1004 def sendError(self, errorData):
e99f578c7179 browser side: sendMessage alert on error
Goffi <goffi@goffi.org>
parents: 296
diff changeset
1005 dialog.InfoDialog("Error while sending message",
e99f578c7179 browser side: sendMessage alert on error
Goffi <goffi@goffi.org>
parents: 296
diff changeset
1006 "Your message can't be sent", Width="400px").center()
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
1007 log.error("sendError: %s" % str(errorData))
298
e99f578c7179 browser side: sendMessage alert on error
Goffi <goffi@goffi.org>
parents: 296
diff changeset
1008
280
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1009 def send(self, targets, text, extra={}):
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1010 """Send a message to any target type.
280
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1011 @param targets: list of tuples (type, entities, addr) with:
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1012 - type in ("PUBLIC", "GROUP", "COMMENT", "STATUS" , "groupchat" , "chat")
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1013 - entities could be a JID, a list groups, a node hash... depending the target
280
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1014 - addr in ("To", "Cc", "Bcc") - ignore case
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1015 @param text: the message content
280
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1016 @param extra: options
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1017 """
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1018 # FIXME: too many magic strings, we should use constants instead
280
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1019 addresses = []
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1020 for target in targets:
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1021 type_, entities, addr = target[0], target[1], 'to' if len(target) < 3 else target[2].lower()
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1022 if type_ in ("PUBLIC", "GROUP"):
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1023 self.bridge.call("sendMblog", None, type_, entities if type_ == "GROUP" else None, text, extra)
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1024 elif type_ == "COMMENT":
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1025 self.bridge.call("sendMblogComment", None, entities, text, extra)
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1026 elif type_ == "STATUS":
482
437eefa53a01 misc: remove some pylint errors and warnings
souliane <souliane@mailoo.org>
parents: 480
diff changeset
1027 assert(isinstance(self.status_panel, panels.PresenceStatusPanel))
437eefa53a01 misc: remove some pylint errors and warnings
souliane <souliane@mailoo.org>
parents: 480
diff changeset
1028 self.bridge.call('setStatus', None, self.status_panel.presence, text) # pylint: disable=E1103
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1029 elif type_ in ("groupchat", "chat"):
280
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1030 addresses.append((addr, entities))
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1031 else:
439
d52f529a6d42 browser side: use of new log system (first draft):
Goffi <goffi@goffi.org>
parents: 433
diff changeset
1032 log.error("Unknown target type")
280
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1033 if addresses:
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1034 if len(addresses) == 1 and addresses[0][0] == 'to':
521
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
1035 to_jid_s = addresses[0][1]
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
1036 for plugin in self.plugins.values():
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
1037 if hasattr(plugin, 'sendMessageTrigger'):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
1038 if not plugin.sendMessageTrigger(jid.JID(to_jid_s), text, type_, extra):
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
1039 return # plugin returned False to interrupt the process
69bffcf37ce3 browser_side: add minimal requirements for generic plugins handling
souliane <souliane@mailoo.org>
parents: 520
diff changeset
1040 self.bridge.call('sendMessage', (None, self.sendError), to_jid_s, text, '', type_, extra)
280
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1041 else:
1ccdc34cfb60 browser_side: changes related to the implementation of XEP-0033 (addressing)
souliane <souliane@mailoo.org>
parents: 279
diff changeset
1042 extra.update({'address': '\n'.join([('%s:%s' % entry) for entry in addresses])})
298
e99f578c7179 browser side: sendMessage alert on error
Goffi <goffi@goffi.org>
parents: 296
diff changeset
1043 self.bridge.call('sendMessage', (None, self.sendError), self.whoami.domain, text, '', type_, extra)
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1044
361
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1045 def showWarning(self, type_=None, msg=None):
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1046 """Display a popup information message, e.g. to notify the recipient of a message being composed.
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1047 If type_ is None, a popup being currently displayed will be hidden.
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1048 @type_: a type determining the CSS style to be applied (see WarningPopup.showWarning)
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1049 @msg: message to be displayed
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1050 """
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1051 if not hasattr(self, "warning_popup"):
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1052 self.warning_popup = panels.WarningPopup()
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1053 self.warning_popup.showWarning(type_, msg)
f4efffb9627c browser_side: the popup notifying the message's recipient is no more dependent to the unibox.
souliane <souliane@mailoo.org>
parents: 349
diff changeset
1054
269
9eb9c7d41bdc browser_side: added generic method "send" in SatWebFrontend
souliane <souliane@mailoo.org>
parents: 267
diff changeset
1055
0
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
1056 if __name__ == '__main__':
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
1057 app = SatWebFrontend()
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
1058 app.onModuleLoad()
140cec48224a Initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
1059 pyjd.run()