Mercurial > libervia-web
annotate libervia.py @ 195:dd27072d8ae0
browser side: widgets refactoring:
- moved base widgets in a base_widget module
- widgets class now register themselves their Drag/Drop type
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 04 Mar 2013 23:01:57 +0100 |
parents | 6198be95a39c |
children | 0f5c2f799913 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 Libervia: a Salut à Toi frontend | |
165 | 6 Copyright (C) 2011, 2012, 2013 Jérôme Poisson <goffi@goffi.org> |
0 | 7 |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU Affero General Public License as published by | |
10 the Free Software Foundation, either version 3 of the License, or | |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU Affero General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU Affero General Public License | |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 """ | |
21 | |
22 import pyjd # this is dummy in pyjs | |
23 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
|
24 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
|
25 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
|
26 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
|
27 from pyjamas import Window, DOM |
0 | 28 from pyjamas.JSONService import JSONProxy |
66
9d8e79ac4c9c
Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
29 from browser_side.register import RegisterBox |
17
c725b702e927
register.py and contact.py moved to new directory browser_side
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
30 from browser_side.contact import ContactPanel |
195 | 31 from browser_side.base_widget import WidgetsPanel |
32 from browser_side.panels import MicroblogItem | |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
33 from browser_side import panels, dialog |
19 | 34 from browser_side.jid import JID |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
35 from browser_side.tools import html_sanitize |
0 | 36 |
58
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
37 MAX_MBLOG_CACHE = 500 #Max microblog entries kept in memories |
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
38 |
0 | 39 class LiberviaJsonProxy(JSONProxy): |
40 def __init__(self, *args, **kwargs): | |
41 JSONProxy.__init__(self, *args, **kwargs) | |
42 self.handler=self | |
43 self.cb={} | |
44 | |
45 def call(self, method, cb, *args): | |
33 | 46 id = self.callMethod(method,args) |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
47 if cb: |
33 | 48 self.cb[id] = cb |
0 | 49 |
50 def onRemoteResponse(self, response, request_info): | |
33 | 51 if self.cb.has_key(request_info.id): |
132
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
52 _cb = self.cb[request_info.id] |
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
53 if isinstance(_cb, tuple): |
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
54 #we have arguments attached to the callback |
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
55 #we send them after the answer |
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
56 callback, args = _cb |
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
57 callback(response, *args) |
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
58 else: |
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
59 #No additional argument, we call directly the callback |
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
60 _cb(response) |
33 | 61 del self.cb[request_info.id] |
0 | 62 |
63 def onRemoteError(self, code, errobj, request_info): | |
62 | 64 """def dump(obj): |
65 print "\n\nDUMPING %s\n\n" % obj | |
66 for i in dir(obj): | |
67 print "%s: %s" % (i, getattr(obj,i))""" | |
0 | 68 if code != 0: |
171
6e39e0eaca35
browser side: changed Internat server error alert to a print, avoir annoying popups on bad connections
Goffi <goffi@goffi.org>
parents:
165
diff
changeset
|
69 print ("Internal server error") |
62 | 70 """for o in code, error, request_info: |
71 dump(o)""" | |
0 | 72 else: |
73 if isinstance(errobj['message'],dict): | |
99 | 74 print("Error %s: %s" % (errobj['message']['faultCode'], errobj['message']['faultString'])) |
0 | 75 else: |
99 | 76 print("Error: %s" % errobj['message']) |
0 | 77 |
78 class RegisterCall(LiberviaJsonProxy): | |
79 def __init__(self): | |
80 LiberviaJsonProxy.__init__(self, "/register_api", | |
81 ["isRegistered","isConnected","connect"]) | |
82 | |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
83 class BridgeCall(LiberviaJsonProxy): |
0 | 84 def __init__(self): |
85 LiberviaJsonProxy.__init__(self, "/json_api", | |
132
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
86 ["getContacts", "addContact", "sendMessage", "sendMblog", "getLastMblogs", "getMassiveLastMblogs", "getProfileJid", "getHistory", "getPresenceStatus", |
179
8475a29d7214
closing a group chat widget now leave the muc room (bug 11)
Goffi <goffi@goffi.org>
parents:
171
diff
changeset
|
87 "joinMUC", "mucLeave", "getRoomsJoined", "launchTarotGame", "getTarotCardsPaths", "tarotGameReady", "tarotGameContratChoosed", |
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
|
88 "tarotGamePlayCards", "launchRadioCollective", "getWaitingSub", "subscription", "delContact", "updateContact", "getEntityData", "getParamsUI", |
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
|
89 #"setParam", |
158
58442ed28f2b
browser side: basic disconnection management: hard reload is done on empty signal response
Goffi <goffi@goffi.org>
parents:
157
diff
changeset
|
90 "launchAction", "disconnect", |
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
|
91 ]) |
0 | 92 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
93 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
|
94 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
|
95 |
99 | 96 def __init__(self, host): |
97 self.host = host | |
157
b17ec3a6a112
browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents:
148
diff
changeset
|
98 self.retry_delay = self.RETRY_BASE_DELAY |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
99 LiberviaJsonProxy.__init__(self, "/json_signal_api", |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
100 ["getSignals"]) |
99 | 101 |
157
b17ec3a6a112
browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents:
148
diff
changeset
|
102 def onRemoteResponse(self, response, request_info): |
b17ec3a6a112
browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents:
148
diff
changeset
|
103 self.retry_delay = self.RETRY_BASE_DELAY |
b17ec3a6a112
browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents:
148
diff
changeset
|
104 LiberviaJsonProxy.onRemoteResponse(self, response, request_info) |
b17ec3a6a112
browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents:
148
diff
changeset
|
105 |
b17ec3a6a112
browser side: in case of error, retry delay is doubled at each try
Goffi <goffi@goffi.org>
parents:
148
diff
changeset
|
106 |
99 | 107 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
|
108 if errobj['message'] == 'Empty Response': |
58442ed28f2b
browser side: basic disconnection management: hard reload is done on empty signal response
Goffi <goffi@goffi.org>
parents:
157
diff
changeset
|
109 Window.getLocation().reload() # XXX: reset page in case of session ended. |
58442ed28f2b
browser side: basic disconnection management: hard reload is done on empty signal response
Goffi <goffi@goffi.org>
parents:
157
diff
changeset
|
110 # FIXME: Should be done more properly without hard reload |
58442ed28f2b
browser side: basic disconnection management: hard reload is done on empty signal response
Goffi <goffi@goffi.org>
parents:
157
diff
changeset
|
111 LiberviaJsonProxy.onRemoteError(self, code, errobj, request_info) |
99 | 112 #we now try to reconnect |
107
c3fb3292f582
browser side: CSS: changed tabs margin + fixed dragover background for chat panels
Goffi <goffi@goffi.org>
parents:
99
diff
changeset
|
113 if isinstance(errobj['message'],dict) and errobj['message']['faultCode']==0: |
c3fb3292f582
browser side: CSS: changed tabs margin + fixed dragover background for chat panels
Goffi <goffi@goffi.org>
parents:
99
diff
changeset
|
114 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
|
115 else: |
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
|
116 def _timerCb(): |
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
|
117 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
|
118 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
|
119 self.retry_delay *= 2 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
120 |
0 | 121 class SatWebFrontend: |
122 def onModuleLoad(self): | |
134
ee7b4aecdc67
browser: present microblogs panels are filled once logged
Goffi <goffi@goffi.org>
parents:
132
diff
changeset
|
123 print "============ onModuleLoad ==============" |
195 | 124 panels.ChatPanel.registerClass() |
125 panels.MicroblogPanel.registerClass() | |
19 | 126 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
|
127 self._selected_listeners = set() |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
128 self.bridge = BridgeCall() |
99 | 129 self.bridge_signals = BridgeSignals(self) |
33 | 130 self.uni_box = None |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
131 self.status_panel = panels.StatusPanel(self) |
28 | 132 self.contact_panel = ContactPanel(self) |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
133 self.panel = panels.MainPanel(self) |
23 | 134 self.discuss_panel = self.panel.discuss_panel |
84 | 135 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
|
136 self.tab_panel.addTabListener(self) |
84 | 137 self.libervia_widgets = set() #keep track of all actives LiberviaWidgets |
33 | 138 self.room_list = set() #set of rooms |
139 | 139 self.mblog_cache = [] #used to keep our own blog entries in memory, to show them in new mblog panel |
119 | 140 self.avatars_cache = {} #keep track of jid's avatar hash (key=jid, value=file) |
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
|
141 self.current_action_ids = set() |
85
a8f027738c16
browser side: widgets cells can now be added by putting a widget on a border
Goffi <goffi@goffi.org>
parents:
84
diff
changeset
|
142 #self.discuss_panel.addWidget(panels.EmptyPanel(self)) |
134
ee7b4aecdc67
browser: present microblogs panels are filled once logged
Goffi <goffi@goffi.org>
parents:
132
diff
changeset
|
143 self.discuss_panel.addWidget(panels.MicroblogPanel(self, [])) |
85
a8f027738c16
browser side: widgets cells can now be added by putting a widget on a border
Goffi <goffi@goffi.org>
parents:
84
diff
changeset
|
144 #self.discuss_panel.addWidget(panels.EmptyPanel(self)) |
66
9d8e79ac4c9c
Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
145 self._register_box = None |
0 | 146 RootPanel().add(self.panel) |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
147 DOM.addEventPreview(self) |
33 | 148 self.resize() |
0 | 149 self._register = RegisterCall() |
1 | 150 self._register.call('isRegistered',self._isRegisteredCB) |
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
|
151 |
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
|
152 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
|
153 self._selected_listeners.add(callback) |
192
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
154 |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
155 def getSelected(self): |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
156 wid = self.tab_panel.getCurrentPanel() |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
157 if not isinstance(wid, WidgetsPanel): |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
158 print "ERROR: Tab widget is not a WidgetsPanel, can't get selected widget" |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
159 return None |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
160 return wid.selected |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
161 |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
162 def setSelected(self, widget): |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
163 """Define the selected widget""" |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
164 widgets_panel = self.tab_panel.getCurrentPanel() |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
165 if not isinstance(widgets_panel, WidgetsPanel): |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
166 return |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
167 |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
168 selected = widgets_panel.selected |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
169 |
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
|
170 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
|
171 return |
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
|
172 |
192
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
173 if selected: |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
174 selected.removeStyleName('selected_widget') |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
175 |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
176 widgets_panel.selected = widget |
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
|
177 |
192
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
178 if widget: |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
179 widgets_panel.selected.addStyleName('selected_widget') |
cf5c83e7d515
browser side: per tab selected widget management
Goffi <goffi@goffi.org>
parents:
179
diff
changeset
|
180 |
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
|
181 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
|
182 callback(widget) |
0 | 183 |
33 | 184 def resize(self): |
185 """Resize elements""" | |
186 Window.onResize() | |
187 | |
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
|
188 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
|
189 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
|
190 |
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
|
191 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
|
192 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
|
193 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
|
194 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
|
195 |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
196 def onEventPreview(self, event): |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
197 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
|
198 #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
|
199 event.preventDefault() |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
200 return True |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
201 |
119 | 202 def getAvatar(self, jid_str): |
203 """Return avatar of a jid if in cache, else ask for it""" | |
137 | 204 def dataReceived(result): |
119 | 205 if result.has_key('avatar'): |
137 | 206 self._entityDataUpdatedCb(jid_str, 'avatar', result['avatar']) |
119 | 207 |
208 if jid_str not in self.avatars_cache: | |
137 | 209 self.bridge.call('getEntityData', dataReceived, jid_str, ['avatar']) |
119 | 210 self.avatars_cache[jid_str] = "/media/misc/empty_avatar" |
211 return self.avatars_cache[jid_str] | |
212 | |
84 | 213 def registerWidget(self, wid): |
214 print "Registering", wid | |
215 self.libervia_widgets.add(wid) | |
216 | |
217 def unregisterWidget(self, wid): | |
218 try: | |
219 self.libervia_widgets.remove(wid) | |
220 except KeyError: | |
221 print ('WARNING: trying to remove a non registered Widget:', wid) | |
222 | |
33 | 223 def setUniBox(self, unibox): |
224 """register the unibox widget""" | |
225 self.uni_box = unibox | |
226 self.uni_box.addKey("@@: ") | |
227 | |
116
aff34642616b
browser side: widgets are now added in a widgetsPanel when a tab is created
Goffi <goffi@goffi.org>
parents:
110
diff
changeset
|
228 def addTab(self, wid, label): |
aff34642616b
browser side: widgets are now added in a widgetsPanel when a tab is created
Goffi <goffi@goffi.org>
parents:
110
diff
changeset
|
229 """Create a new tab and add a widget in |
aff34642616b
browser side: widgets are now added in a widgetsPanel when a tab is created
Goffi <goffi@goffi.org>
parents:
110
diff
changeset
|
230 @param wid: LiberviaWidget to add |
33 | 231 @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
|
232 _widgets_panel = WidgetsPanel(self) |
aff34642616b
browser side: widgets are now added in a widgetsPanel when a tab is created
Goffi <goffi@goffi.org>
parents:
110
diff
changeset
|
233 _widgets_panel.addWidget(wid) |
aff34642616b
browser side: widgets are now added in a widgetsPanel when a tab is created
Goffi <goffi@goffi.org>
parents:
110
diff
changeset
|
234 self.tab_panel.add(_widgets_panel, label) |
194
6198be95a39c
browser side: new tab is automatically selected, if a tab is removed, the last one is automatically selected
Goffi <goffi@goffi.org>
parents:
193
diff
changeset
|
235 self.tab_panel.selectTab(self.tab_panel.getWidgetCount() - 1) |
33 | 236 |
1 | 237 def _isRegisteredCB(self, registered): |
0 | 238 if not registered: |
66
9d8e79ac4c9c
Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
239 self._register_box = RegisterBox(self.logged) |
9d8e79ac4c9c
Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
240 self._register_box.centerBox() |
9d8e79ac4c9c
Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
241 self._register_box.show() |
0 | 242 else: |
1 | 243 self._register.call('isConnected', self._isConnectedCB) |
0 | 244 |
1 | 245 def _isConnectedCB(self, connected): |
0 | 246 if not connected: |
62 | 247 self._register.call('connect',lambda x:self.logged()) |
0 | 248 else: |
249 self.logged() | |
250 | |
251 def logged(self): | |
66
9d8e79ac4c9c
Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
252 if self._register_box: |
9d8e79ac4c9c
Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
253 self._register_box.hide() |
9d8e79ac4c9c
Login/Register box: integration of Adrien Vigneron's design
Goffi <goffi@goffi.org>
parents:
64
diff
changeset
|
254 del self._register_box # don't work if self._register_box is None |
1 | 255 |
256 #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
|
257 self.bridge.call('getContacts', self._getContactsCB) |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
258 self.bridge_signals.call('getSignals', self._getSignalsCB) |
19 | 259 #We want to know our own jid |
260 self.bridge.call('getProfileJid', self._getProfileJidCB) | |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
261 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
262 |
1 | 263 def _getContactsCB(self, contacts_data): |
264 for contact in contacts_data: | |
265 jid, attributes, groups = contact | |
55
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
266 self._newContactCb(jid, attributes, groups) |
0 | 267 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
268 def _getSignalsCB(self, signal_data): |
99 | 269 self.bridge_signals.call('getSignals', self._getSignalsCB) |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
270 print('Got signal ==> name: %s, params: %s' % (signal_data[0],signal_data[1])) |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
271 name,args = signal_data |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
272 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
|
273 self._personalEventCb(*args) |
19 | 274 elif name == 'newMessage': |
275 self._newMessageCb(*args) | |
20 | 276 elif name == 'presenceUpdate': |
277 self._presenceUpdateCb(*args) | |
28 | 278 elif name == 'roomJoined': |
279 self._roomJoinedCb(*args) | |
33 | 280 elif name == 'roomUserJoined': |
281 self._roomUserJoinedCb(*args) | |
282 elif name == 'roomUserLeft': | |
283 self._roomUserLeftCb(*args) | |
36 | 284 elif name == 'tarotGameStarted': |
285 self._tarotGameStartedCb(*args) | |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
286 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
|
287 name == 'tarotGameChooseContrat' or \ |
39
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
288 name == 'tarotGameShowCards' or \ |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
289 name == 'tarotGameInvalidCards' or \ |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
290 name == 'tarotGameCardsPlayed' or \ |
41
7782a786b2f0
Tarot game: score is now shown (need to use XMLUI later)
Goffi <goffi@goffi.org>
parents:
39
diff
changeset
|
291 name == 'tarotGameYourTurn' or \ |
7782a786b2f0
Tarot game: score is now shown (need to use XMLUI later)
Goffi <goffi@goffi.org>
parents:
39
diff
changeset
|
292 name == 'tarotGameScore': |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
293 self._tarotGameGenericCb(name, args[0], args[1:]) |
127 | 294 elif name == 'radiocolStarted': |
295 self._radioColStartedCb(*args) | |
128 | 296 elif name == 'radiocolPreload': |
297 self._radioColGenericCb(name, args[0], args[1:]) | |
130 | 298 elif name == 'radiocolPlay': |
299 self._radioColGenericCb(name, args[0], args[1:]) | |
300 elif name == 'radiocolNoUpload': | |
301 self._radioColGenericCb(name, args[0], args[1:]) | |
302 elif name == 'radiocolUploadOk': | |
303 self._radioColGenericCb(name, args[0], args[1:]) | |
304 elif name == 'radiocolSongRejected': | |
305 self._radioColGenericCb(name, args[0], args[1:]) | |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
306 elif name == 'subscribe': |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
307 self._subscribeCb(*args) |
55
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
308 elif name == 'contactDeleted': |
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
309 self._contactDeletedCb(*args) |
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
310 elif name == 'newContact': |
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
311 self._newContactCb(*args) |
137 | 312 elif name == 'entityDataUpdated': |
313 self._entityDataUpdatedCb(*args) | |
19 | 314 |
139 | 315 def _ownBlogsFills(self, mblogs): |
316 #put our own microblogs in cache, then fill all panels with them | |
317 for publisher in mblogs: | |
318 for mblog in mblogs[publisher]: | |
319 if not mblog.has_key('content'): | |
320 print ("WARNING: No content found in microblog [%s]", mblog) | |
321 continue | |
322 if mblog.has_key('groups'): | |
323 _groups = set(mblog['groups'].split() if mblog['groups'] else []) | |
324 else: | |
325 _groups=None | |
326 mblog_entry = MicroblogItem(mblog) | |
327 self.mblog_cache.append((_groups, mblog_entry)) | |
328 | |
329 if len(self.mblog_cache) > MAX_MBLOG_CACHE: | |
330 del self.mblog_cache[0:len(self.mblog_cache-MAX_MBLOG_CACHE)] | |
331 for lib_wid in self.libervia_widgets: | |
332 if isinstance(lib_wid, panels.MicroblogPanel): | |
333 self.FillMicroblogPanel(lib_wid) | |
334 | |
19 | 335 def _getProfileJidCB(self, jid): |
336 self.whoami = JID(jid) | |
20 | 337 #we can now ask our status |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
338 self.bridge.call('getPresenceStatus', self._getPresenceStatusCb) |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
339 #the rooms where we are |
122
397a88b340f3
browser: fixed call to getRoomsJoined
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
340 self.bridge.call('getRoomsJoined', self._getRoomsJoinedCb) |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
341 #and if there is any subscription request waiting for us |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
342 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
|
343 #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
|
344 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
|
345 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
|
346 if lib_wid.accept_all(): |
008fa8d36602
browser side: our own microblogs are now requested once logged
Goffi <goffi@goffi.org>
parents:
137
diff
changeset
|
347 self.bridge.call('getMassiveLastMblogs', lib_wid.massiveInsert, 'ALL', [], 10) |
008fa8d36602
browser side: our own microblogs are now requested once logged
Goffi <goffi@goffi.org>
parents:
137
diff
changeset
|
348 else: |
008fa8d36602
browser side: our own microblogs are now requested once logged
Goffi <goffi@goffi.org>
parents:
137
diff
changeset
|
349 self.bridge.call('getMassiveLastMblogs', lib_wid.massiveInsert, 'GROUP', lib_wid.accepted_groups, 10) |
139 | 350 |
351 #we ask for our own microblogs: | |
352 self.bridge.call('getMassiveLastMblogs', self._ownBlogsFills, 'JID', [self.whoami.bare], 10) | |
20 | 353 |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
354 ## Signals callbacks ## |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
355 |
58
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
356 def _personalEventCb(self, sender, event_type, data): |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
357 if event_type == "MICROBLOG": |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
358 if not data.has_key('content'): |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
359 print ("WARNING: No content found in microblog data") |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
360 return |
16
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
361 if data.has_key('groups'): |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
362 _groups = set(data['groups'].split() if data['groups'] else []) |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
363 else: |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
364 _groups=None |
132
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
365 mblog_entry = MicroblogItem(data) |
58
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
366 |
84 | 367 for lib_wid in self.libervia_widgets: |
368 if isinstance(lib_wid, panels.MicroblogPanel): | |
369 self.addBlogEntry(lib_wid, sender, _groups, mblog_entry) | |
58
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
370 |
139 | 371 if sender == self.whoami.bare: |
372 self.mblog_cache.append((_groups, mblog_entry)) | |
373 if len(self.mblog_cache) > MAX_MBLOG_CACHE: | |
374 del self.mblog_cache[0:len(self.mblog_cache-MAX_MBLOG_CACHE)] | |
58
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
375 |
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
376 def addBlogEntry(self, mblog_panel, sender, _groups, mblog_entry): |
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
377 """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
|
378 @param mblog_panel: MicroblogPanel instance |
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
379 @param sender: jid of the entry sender |
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
380 @param _groups: groups which can receive this entry |
132
30d8e328559b
server & browser side: microblogging refactoring first draft
Goffi <goffi@goffi.org>
parents:
131
diff
changeset
|
381 @param mblog_entry: MicroblogItem instance""" |
64
104e71ce2293
browser side: fixed microblog filtering
Goffi <goffi@goffi.org>
parents:
62
diff
changeset
|
382 if mblog_panel.isJidAccepted(sender) or (_groups == None and self.whoami and sender == self.whoami.bare) \ |
104e71ce2293
browser side: fixed microblog filtering
Goffi <goffi@goffi.org>
parents:
62
diff
changeset
|
383 or (_groups and _groups.intersection(mblog_panel.accepted_groups)): |
58
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
384 mblog_panel.addEntry(mblog_entry) |
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
385 |
139 | 386 def FillMicroblogPanel(self, mblog_panel): |
58
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
387 """Fill a microblog panel with entries in cache |
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
388 @param mblog_panel: MicroblogPanel instance |
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
389 """ |
139 | 390 #XXX: only our own entries are cached |
58
4fa3d57f72f8
browser side: microblog entries caching
Goffi <goffi@goffi.org>
parents:
57
diff
changeset
|
391 for cache_entry in self.mblog_cache: |
139 | 392 _groups, mblog_entry = cache_entry |
393 self.addBlogEntry(mblog_panel, self.whoami.bare, *cache_entry) | |
0 | 394 |
163
b887186e8fc8
browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents:
158
diff
changeset
|
395 def getEntityMBlog(self, entity): |
b887186e8fc8
browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents:
158
diff
changeset
|
396 print "geting mblog for entity [%s]" % (entity,) |
b887186e8fc8
browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents:
158
diff
changeset
|
397 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
|
398 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
|
399 if lib_wid.isJidAccepted(entity): |
b887186e8fc8
browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents:
158
diff
changeset
|
400 self.bridge.call('getMassiveLastMblogs', lib_wid.massiveInsert, 'JID', [entity], 10) |
b887186e8fc8
browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents:
158
diff
changeset
|
401 |
b887186e8fc8
browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents:
158
diff
changeset
|
402 |
19 | 403 def _newMessageCb(self, from_jid, msg, msg_type, to_jid): |
404 _from = JID(from_jid) | |
405 _to = JID(to_jid) | |
62 | 406 showed = False |
84 | 407 for lib_wid in self.libervia_widgets: |
408 if isinstance(lib_wid,panels.ChatPanel) and (lib_wid.target.bare == _from.bare or lib_wid.target.bare == _to.bare): | |
409 lib_wid.printMessage(_from, msg) | |
62 | 410 showed = True |
411 if not showed: | |
412 #The message has not been showed, we must indicate it | |
413 other = _to if _from.bare == self.whoami.bare else _from | |
414 self.contact_panel.setContactMessageWaiting(other.bare, True) | |
415 | |
20 | 416 def _presenceUpdateCb(self, entity, show, priority, statuses): |
417 _entity = JID(entity) | |
28 | 418 #XXX: QnD way to get our status |
20 | 419 if self.whoami and self.whoami.bare == _entity.bare and statuses: |
28 | 420 self.status_panel.changeStatus(statuses.values()[0]) |
33 | 421 if (not self.whoami or self.whoami.bare != _entity.bare): |
28 | 422 self.contact_panel.setConnected(_entity.bare, _entity.resource, show, priority, statuses) |
423 | |
125
f9d63624699f
radio collective integration, first draft
Goffi <goffi@goffi.org>
parents:
122
diff
changeset
|
424 def _roomJoinedCb(self, room_jid, room_nicks, user_nick): |
f9d63624699f
radio collective integration, first draft
Goffi <goffi@goffi.org>
parents:
122
diff
changeset
|
425 _target = JID(room_jid) |
33 | 426 self.room_list.add(_target) |
179
8475a29d7214
closing a group chat widget now leave the muc room (bug 11)
Goffi <goffi@goffi.org>
parents:
171
diff
changeset
|
427 chat_panel = panels.ChatPanel(self, _target, type_='group') |
33 | 428 chat_panel.setUserNick(user_nick) |
126
adecb2566b53
browser: fixed tabs not opening on room joining
Goffi <goffi@goffi.org>
parents:
125
diff
changeset
|
429 if _target.node.startswith('sat_tarot_'): #XXX: it's not really beautiful, but it works :) |
33 | 430 self.addTab(chat_panel, "Tarot") |
127 | 431 elif _target.node.startswith('sat_radiocol_'): |
432 self.addTab(chat_panel, "Radio collective") | |
28 | 433 else: |
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
|
434 self.addTab(chat_panel, _target.node) |
33 | 435 chat_panel.setPresents(room_nicks) |
436 chat_panel.historyPrint() | |
437 | |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
438 def _roomUserJoinedCb(self, room_jid_s, user_nick, user_data): |
84 | 439 for lib_wid in self.libervia_widgets: |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
440 if isinstance(lib_wid,panels.ChatPanel) and lib_wid.type == 'group' and lib_wid.target.bare == room_jid_s: |
84 | 441 lib_wid.userJoined(user_nick, user_data) |
33 | 442 |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
443 def _roomUserLeftCb(self, room_jid_s, user_nick, user_data): |
84 | 444 for lib_wid in self.libervia_widgets: |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
445 if isinstance(lib_wid,panels.ChatPanel) and lib_wid.type == 'group' and lib_wid.target.bare == room_jid_s: |
84 | 446 lib_wid.userLeft(user_nick, user_data) |
36 | 447 |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
448 def _tarotGameStartedCb(self, room_jid_s, referee, players): |
36 | 449 print ("Tarot Game Started \o/") |
84 | 450 for lib_wid in self.libervia_widgets: |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
451 if isinstance(lib_wid,panels.ChatPanel) and lib_wid.type == 'group' and lib_wid.target.bare == room_jid_s: |
84 | 452 lib_wid.startGame("Tarot", referee, players) |
36 | 453 |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
454 def _tarotGameGenericCb(self, event_name, room_jid_s, args): |
84 | 455 for lib_wid in self.libervia_widgets: |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
456 if isinstance(lib_wid,panels.ChatPanel) and lib_wid.type == 'group' and lib_wid.target.bare == room_jid_s: |
84 | 457 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
|
458 |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
459 def _radioColStartedCb(self, room_jid_s, referee): |
127 | 460 for lib_wid in self.libervia_widgets: |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
461 if isinstance(lib_wid,panels.ChatPanel) and lib_wid.type == 'group' and lib_wid.target.bare == room_jid_s: |
127 | 462 lib_wid.startGame("RadioCol", referee) |
463 | |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
464 def _radioColGenericCb(self, event_name, room_jid_s, args): |
128 | 465 for lib_wid in self.libervia_widgets: |
146
d15fbb208ba0
browser side: fixed MUC signals management
Goffi <goffi@goffi.org>
parents:
141
diff
changeset
|
466 if isinstance(lib_wid,panels.ChatPanel) and lib_wid.type == 'group' and lib_wid.target.bare == room_jid_s: |
128 | 467 getattr(lib_wid.getGame("RadioCol"), event_name)(*args) |
468 | |
469 | |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
470 def _getPresenceStatusCb(self, presence_data): |
28 | 471 for entity in presence_data: |
472 for resource in presence_data[entity]: | |
473 args = presence_data[entity][resource] | |
474 self._presenceUpdateCb("%s/%s" % (entity, resource), *args) | |
20 | 475 |
122
397a88b340f3
browser: fixed call to getRoomsJoined
Goffi <goffi@goffi.org>
parents:
119
diff
changeset
|
476 def _getRoomsJoinedCb(self, room_data): |
33 | 477 for room in room_data: |
478 self._roomJoinedCb(*room) | |
479 | |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
480 def _getWaitingSubCb(self, waiting_sub): |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
481 for sub in waiting_sub: |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
482 self._subscribeCb(waiting_sub[sub], sub) |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
483 |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
484 def _subscribeCb(self, sub_type, entity): |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
485 if sub_type == 'subscribed': |
55
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
486 dialog.InfoDialog('Subscription confirmation', 'The contact <b>%s</b> has added you to his/her contact list' % html_sanitize(entity)).show() |
163
b887186e8fc8
browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents:
158
diff
changeset
|
487 self.getEntityMBlog(entity) |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
488 |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
489 elif sub_type == 'unsubscribed': |
55
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
490 dialog.InfoDialog('Subscription refusal', 'The contact <b>%s</b> has refused to add you in his/her contact list' % html_sanitize(entity)).show() |
163
b887186e8fc8
browser side: get entity's microblogs for newly added contacts
Goffi <goffi@goffi.org>
parents:
158
diff
changeset
|
491 #TODO: remove microblogs from panels |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
492 |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
493 elif sub_type == 'subscribe': |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
494 #The user want to subscribe to our presence |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
495 _dialog = None |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
496 msg = HTML('The contact <b>%s</b> want to add you in his/her contact list, do you accept ?' % html_sanitize(entity)) |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
497 |
62 | 498 def ok_cb(ignore): |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
499 self.bridge.call('subscription', None, "subscribed", entity, '', _dialog.getSelectedGroups()) |
62 | 500 def cancel_cb(ignore): |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
501 self.bridge.call('subscription', None, "unsubscribed", entity, '', '') |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
502 |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
503 _dialog = dialog.GroupSelector([msg], self.contact_panel.getGroups(), [], ok_cb, cancel_cb) |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
504 _dialog.setHTML('<b>Add contact request</b>') |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
505 _dialog.show() |
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
506 |
55
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
507 def _contactDeletedCb(self, entity): |
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
508 self.contact_panel.removeContact(entity) |
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
509 |
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
510 def _newContactCb(self, contact, attributes, groups): |
d5266c41ca24
Roster list update, contact deletion + some refactoring
Goffi <goffi@goffi.org>
parents:
54
diff
changeset
|
511 self.contact_panel.updateContact(contact, attributes, groups) |
54
f25c4077f6b9
addind contact + subscription management + misc
Goffi <goffi@goffi.org>
parents:
50
diff
changeset
|
512 |
137 | 513 def _entityDataUpdatedCb(self, entity_jid_s, key, value): |
514 if key == "avatar": | |
515 avatar = '/avatars/%s' % value | |
119 | 516 |
137 | 517 self.avatars_cache[entity_jid_s] = avatar |
119 | 518 |
519 for lib_wid in self.libervia_widgets: | |
520 if isinstance(lib_wid, panels.MicroblogPanel): | |
137 | 521 if lib_wid.isJidAccepted(entity_jid_s) or (self.whoami and entity_jid_s == self.whoami.bare): |
522 lib_wid.updateValue('avatar', entity_jid_s, avatar) | |
119 | 523 |
524 | |
525 | |
0 | 526 if __name__ == '__main__': |
1 | 527 pyjd.setup("http://localhost:8080/libervia.html") |
0 | 528 app = SatWebFrontend() |
529 app.onModuleLoad() | |
530 pyjd.run() | |
531 |