Mercurial > libervia-web
annotate libervia.py @ 39:305e81c7a32c
Tarot game: a game can now be finished
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 22 May 2011 00:15:01 +0200 |
parents | 7bea2ae0c4fb |
children | 7782a786b2f0 |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 Libervia: a Salut à Toi frontend | |
6 Copyright (C) 2011 Jérôme Poisson (goffi@goffi.org) | |
7 | |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU 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 |
0 | 25 from pyjamas import Window |
26 from pyjamas.JSONService import JSONProxy | |
17
c725b702e927
register.py and contact.py moved to new directory browser_side
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
27 from browser_side.register import RegisterPanel, RegisterBox |
c725b702e927
register.py and contact.py moved to new directory browser_side
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
28 from browser_side.contact import ContactPanel |
19 | 29 from browser_side.panels import MainPanel, EmptyPanel, MicroblogPanel, ChatPanel, StatusPanel |
30 from browser_side.jid import JID | |
0 | 31 |
32 | |
33 class LiberviaJsonProxy(JSONProxy): | |
34 def __init__(self, *args, **kwargs): | |
35 JSONProxy.__init__(self, *args, **kwargs) | |
36 self.handler=self | |
37 self.cb={} | |
38 | |
39 def call(self, method, cb, *args): | |
33 | 40 id = self.callMethod(method,args) |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
41 if cb: |
33 | 42 self.cb[id] = cb |
0 | 43 |
44 def onRemoteResponse(self, response, request_info): | |
33 | 45 if self.cb.has_key(request_info.id): |
46 self.cb[request_info.id](response) | |
47 del self.cb[request_info.id] | |
0 | 48 |
49 def onRemoteError(self, code, errobj, request_info): | |
50 if code != 0: | |
51 Window.alert("Internal server error") | |
52 else: | |
53 if isinstance(errobj['message'],dict): | |
54 Window.alert("Error %s: %s" % (errobj['message']['faultCode'], errobj['message']['faultString'])) | |
55 else: | |
56 Window.alert("Error: %s" % errobj['message']) | |
57 | |
58 class RegisterCall(LiberviaJsonProxy): | |
59 def __init__(self): | |
60 LiberviaJsonProxy.__init__(self, "/register_api", | |
61 ["isRegistered","isConnected","connect"]) | |
62 self.handler=self | |
63 self.cb={} | |
64 | |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
65 class BridgeCall(LiberviaJsonProxy): |
0 | 66 def __init__(self): |
67 LiberviaJsonProxy.__init__(self, "/json_api", | |
33 | 68 ["getContacts", "sendMessage", "sendMblog", "getMblogNodes", "getProfileJid", "getHistory", |
39
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
69 "getPresenceStatus", "getRoomJoined", "launchTarotGame", "getTarotCardsPaths", "tarotGameReady", "tarotGameContratChoosed", |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
70 "tarotGamePlayCards"]) |
0 | 71 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
72 class BridgeSignals(LiberviaJsonProxy): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
73 def __init__(self): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
74 LiberviaJsonProxy.__init__(self, "/json_signal_api", |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
75 ["getSignals"]) |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
76 |
0 | 77 class SatWebFrontend: |
78 def onModuleLoad(self): | |
19 | 79 self.whoami = None |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
80 self.bridge = BridgeCall() |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
81 self.bridge_signals = BridgeSignals() |
19 | 82 self.selected = None |
33 | 83 self.uni_box = None |
28 | 84 self.status_panel = StatusPanel(self) |
85 self.contact_panel = ContactPanel(self) | |
1 | 86 self.panel = MainPanel(self) |
23 | 87 self.discuss_panel = self.panel.discuss_panel |
88 self.tab_panel = self.panel.tab_panel | |
16
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
89 self.mpanels = [EmptyPanel(self), MicroblogPanel(self, accept_all=True), EmptyPanel(self)] |
33 | 90 self.other_panels = [] #panels not on the main tab #FIXME: temporary, need to be changed |
91 self.room_list = set() #set of rooms | |
23 | 92 self.discuss_panel.changePanel(0,self.mpanels[0]) |
93 self.discuss_panel.changePanel(1,self.mpanels[1]) | |
94 self.discuss_panel.changePanel(2,self.mpanels[2]) | |
0 | 95 self._dialog = None |
96 RootPanel().add(self.panel) | |
33 | 97 self.resize() |
0 | 98 self._register = RegisterCall() |
1 | 99 self._register.call('isRegistered',self._isRegisteredCB) |
0 | 100 |
33 | 101 def resize(self): |
102 """Resize elements""" | |
103 Window.onResize() | |
104 | |
105 def setUniBox(self, unibox): | |
106 """register the unibox widget""" | |
107 self.uni_box = unibox | |
108 self.uni_box.addKey("@@: ") | |
109 | |
19 | 110 def select(self, widget): |
111 """Define the selected widget""" | |
112 if self.selected: | |
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
|
113 if self.selected == widget: |
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
|
114 return |
19 | 115 self.selected.removeStyleName('selected_widget') |
116 self.selected = widget | |
117 if widget: | |
118 self.selected.addStyleName('selected_widget') | |
119 | |
33 | 120 def addTab(self, panel, label): |
121 """Add a panel in a tab | |
122 @param panel: panel to add | |
123 @param label: label of the tab""" | |
124 self.tab_panel.add(panel, label) | |
125 self.other_panels.append(panel) | |
126 | |
1 | 127 def _isRegisteredCB(self, registered): |
0 | 128 if not registered: |
129 self._dialog = RegisterBox(self.logged,centered=True) | |
130 self._dialog.show() | |
131 else: | |
1 | 132 self._register.call('isConnected', self._isConnectedCB) |
0 | 133 |
1 | 134 def _isConnectedCB(self, connected): |
0 | 135 if not connected: |
136 self._register.call('connect',self.logged) | |
137 else: | |
138 self.logged() | |
139 | |
140 def logged(self): | |
141 if self._dialog: | |
142 self._dialog.hide() | |
143 del self._dialog # don't work if self._dialog is None | |
1 | 144 |
145 #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
|
146 self.bridge.call('getContacts', self._getContactsCB) |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
147 self.bridge_signals.call('getSignals', self._getSignalsCB) |
19 | 148 #We want to know our own jid |
149 self.bridge.call('getProfileJid', self._getProfileJidCB) | |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
150 |
1 | 151 def _getContactsCB(self, contacts_data): |
152 for contact in contacts_data: | |
153 jid, attributes, groups = contact | |
28 | 154 self.contact_panel.addContact(jid, attributes, groups) |
0 | 155 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
156 def _getSignalsCB(self, signal_data): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
157 bridge_signals = BridgeSignals() |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
158 bridge_signals.call('getSignals', self._getSignalsCB) |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
159 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
|
160 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
|
161 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
|
162 self._personalEventCb(*args) |
19 | 163 elif name == 'newMessage': |
164 self._newMessageCb(*args) | |
20 | 165 elif name == 'presenceUpdate': |
166 self._presenceUpdateCb(*args) | |
28 | 167 elif name == 'roomJoined': |
168 self._roomJoinedCb(*args) | |
33 | 169 elif name == 'roomUserJoined': |
170 self._roomUserJoinedCb(*args) | |
171 elif name == 'roomUserLeft': | |
172 self._roomUserLeftCb(*args) | |
36 | 173 elif name == 'tarotGameStarted': |
174 self._tarotGameStartedCb(*args) | |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
175 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
|
176 name == 'tarotGameChooseContrat' or \ |
39
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
177 name == 'tarotGameShowCards' or \ |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
178 name == 'tarotGameInvalidCards' or \ |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
179 name == 'tarotGameCardsPlayed' or \ |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
180 name == 'tarotGameYourTurn': |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
181 self._tarotGameGenericCb(name, args[0], args[1:]) |
19 | 182 |
183 def _getProfileJidCB(self, jid): | |
184 self.whoami = JID(jid) | |
20 | 185 #we can now ask our status |
186 self.bridge.call('getPresenceStatus', self._getPresenceStatusCB) | |
33 | 187 #and the rooms where we are |
188 self.bridge.call('getRoomJoined', self._getRoomJoinedCB) | |
20 | 189 |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
190 ## Signals callbacks ## |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
191 |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
192 def _personalEventCb(self, sender, event_type, data, profile): |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
193 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
|
194 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
|
195 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
|
196 return |
16
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
197 if data.has_key('groups'): |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
198 _groups = set(data['groups'].split() if data['groups'] else []) |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
199 else: |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
200 _groups=None |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
201 for panel in self.mpanels: |
36 | 202 if isinstance(panel,MicroblogPanel) and (panel.isJidAccepted(sender) or _groups == None or _groups.intersection(panel.accepted_groups)): #TODO: check this |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
203 content = data['content'] |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
204 author = data.get('author') |
9 | 205 timestamp = float(data.get('timestamp',0)) #XXX: int doesn't work here |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
206 panel.addEntry(content, author, timestamp) |
0 | 207 |
19 | 208 def _newMessageCb(self, from_jid, msg, msg_type, to_jid): |
209 _from = JID(from_jid) | |
210 _to = JID(to_jid) | |
33 | 211 for panel in self.mpanels + self.other_panels: |
19 | 212 if isinstance(panel,ChatPanel) and (panel.target.bare == _from.bare or panel.target.bare == _to.bare): |
213 panel.printMessage(_from, msg) | |
214 | |
20 | 215 def _presenceUpdateCb(self, entity, show, priority, statuses): |
216 _entity = JID(entity) | |
28 | 217 #XXX: QnD way to get our status |
20 | 218 if self.whoami and self.whoami.bare == _entity.bare and statuses: |
28 | 219 self.status_panel.changeStatus(statuses.values()[0]) |
33 | 220 if (not self.whoami or self.whoami.bare != _entity.bare): |
28 | 221 self.contact_panel.setConnected(_entity.bare, _entity.resource, show, priority, statuses) |
222 | |
33 | 223 def _roomJoinedCb(self, room_id, room_service, room_nicks, user_nick): |
28 | 224 _target = JID("%s@%s" % (room_id,room_service)) |
33 | 225 self.room_list.add(_target) |
226 chat_panel = ChatPanel(self, _target, type='group') | |
227 chat_panel.setUserNick(user_nick) | |
28 | 228 if room_id.startswith('sat_tarot_'): #XXX: it's not really beautiful, but it works :) |
33 | 229 self.addTab(chat_panel, "Tarot") |
28 | 230 else: |
33 | 231 self.addTab(chat_panel, str(_target)) |
232 chat_panel.setPresents(room_nicks) | |
233 chat_panel.historyPrint() | |
234 | |
35 | 235 def _roomUserJoinedCb(self, room_id, room_service, user_nick, user_data): |
236 for panel in self.mpanels + self.other_panels: | |
237 if isinstance(panel,ChatPanel) and panel.type == 'group' and panel.target.bare == "%s@%s" % (room_id, room_service): | |
238 panel.userJoined(user_nick, user_data) | |
33 | 239 |
35 | 240 def _roomUserLeftCb(self, room_id, room_service, user_nick, user_data): |
241 for panel in self.mpanels + self.other_panels: | |
242 if isinstance(panel,ChatPanel) and panel.type == 'group' and panel.target.bare == "%s@%s" % (room_id, room_service): | |
243 panel.userLeft(user_nick, user_data) | |
36 | 244 |
245 def _tarotGameStartedCb(self, room_jid, referee, players): | |
246 print ("Tarot Game Started \o/") | |
247 for panel in self.mpanels + self.other_panels: | |
248 if isinstance(panel,ChatPanel) and panel.type == 'group' and panel.target.bare == room_jid: | |
249 panel.startGame("Tarot", referee, players) | |
250 | |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
251 def _tarotGameGenericCb(self, event_name, room_jid, args): |
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
252 for panel in self.mpanels + self.other_panels: |
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
253 if isinstance(panel,ChatPanel) and panel.type == 'group' and panel.target.bare == room_jid: |
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
254 getattr(panel.getGame("Tarot"), event_name)(*args) |
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
255 |
20 | 256 def _getPresenceStatusCB(self, presence_data): |
28 | 257 for entity in presence_data: |
258 for resource in presence_data[entity]: | |
259 args = presence_data[entity][resource] | |
260 self._presenceUpdateCb("%s/%s" % (entity, resource), *args) | |
20 | 261 |
33 | 262 def _getRoomJoinedCB(self, room_data): |
263 for room in room_data: | |
264 self._roomJoinedCb(*room) | |
265 | |
0 | 266 if __name__ == '__main__': |
1 | 267 pyjd.setup("http://localhost:8080/libervia.html") |
0 | 268 app = SatWebFrontend() |
269 app.onModuleLoad() | |
270 pyjd.run() | |
271 |