Mercurial > libervia-web
annotate libervia.py @ 28:258dfaa1035f
browser side:
- roomJoined signal added and open a new tab
- name refactoring
- connected contact are saved
- launchTarotGame method used
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 07 May 2011 23:58:57 +0200 |
parents | 0ce2a57b34ca |
children | e70521e6d803 |
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.SimplePanel import SimplePanel | |
24 from pyjamas.ui.RootPanel import RootPanel | |
6 | 25 from pyjamas.ui.AutoComplete import AutoCompleteTextBox |
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
|
26 from pyjamas.ui.PopupPanel import PopupPanel |
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
|
27 from pyjamas.ui.HTML import HTML |
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
|
28 from pyjamas.Timer import Timer |
0 | 29 from pyjamas import Window |
30 from pyjamas.JSONService import JSONProxy | |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
31 from pyjamas.ui.KeyboardListener import KEY_ENTER |
17
c725b702e927
register.py and contact.py moved to new directory browser_side
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
32 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
|
33 from browser_side.contact import ContactPanel |
19 | 34 from browser_side.panels import MainPanel, EmptyPanel, MicroblogPanel, ChatPanel, StatusPanel |
35 from browser_side.jid import JID | |
0 | 36 |
37 | |
38 class LiberviaJsonProxy(JSONProxy): | |
39 def __init__(self, *args, **kwargs): | |
40 JSONProxy.__init__(self, *args, **kwargs) | |
41 self.handler=self | |
42 self.cb={} | |
43 | |
44 def call(self, method, cb, *args): | |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
45 if cb: |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
46 self.cb[method] = cb |
0 | 47 self.callMethod(method,args) |
48 | |
49 def onRemoteResponse(self, response, request_info): | |
50 if self.cb.has_key(request_info.method): | |
51 self.cb[request_info.method](response) | |
52 del self.cb[request_info.method] | |
53 | |
54 def onRemoteError(self, code, errobj, request_info): | |
55 if code != 0: | |
56 Window.alert("Internal server error") | |
57 else: | |
58 if isinstance(errobj['message'],dict): | |
59 Window.alert("Error %s: %s" % (errobj['message']['faultCode'], errobj['message']['faultString'])) | |
60 else: | |
61 Window.alert("Error: %s" % errobj['message']) | |
62 | |
63 class RegisterCall(LiberviaJsonProxy): | |
64 def __init__(self): | |
65 LiberviaJsonProxy.__init__(self, "/register_api", | |
66 ["isRegistered","isConnected","connect"]) | |
67 self.handler=self | |
68 self.cb={} | |
69 | |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
70 class BridgeCall(LiberviaJsonProxy): |
0 | 71 def __init__(self): |
72 LiberviaJsonProxy.__init__(self, "/json_api", | |
28 | 73 ["getContacts", "sendMessage", "sendMblog", "getMblogNodes", "getProfileJid", "getHistory", "getPresenceStatus", "launchTarotGame"]) |
0 | 74 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
75 class BridgeSignals(LiberviaJsonProxy): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
76 def __init__(self): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
77 LiberviaJsonProxy.__init__(self, "/json_signal_api", |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
78 ["getSignals"]) |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
79 |
0 | 80 |
16
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
81 class UniBox(AutoCompleteTextBox): |
28 | 82 """This text box is used as a main typing point, for message, microblog, etc""" |
0 | 83 |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
84 def __init__(self, host): |
0 | 85 AutoCompleteTextBox.__init__(self) |
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
|
86 self._popup = None |
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
|
87 self._timer = Timer(notify=self._timeCb) |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
88 self.host = host |
1 | 89 |
90 def addKey(self, key): | |
91 self.getCompletionItems().completions.append(key) | |
92 | |
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
|
93 def showWarning(self, target_data): |
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
|
94 type, target = target_data |
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
|
95 if type == "PUBLIC": |
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
|
96 msg = "This message will be PUBLIC and everybody will be able to see it, even people you don't know" |
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
|
97 style = "targetPublic" |
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
|
98 elif type == "GROUP": |
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
|
99 msg = "This message will be published for all the people of the group <span class='warningTarget'>%s</span>" % (target or '') |
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
|
100 style = "targetGroup" |
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
|
101 elif type == "STATUS": |
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
|
102 msg = "This will be your new status message" |
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
|
103 style = "targetStatus" |
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
|
104 elif type == "ONE2ONE": |
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
|
105 msg = "This message will be sent to your contact <span class='warningTarget'>%s</span>" % target |
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
|
106 style = "targetOne2One" |
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
|
107 else: |
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
|
108 print "WARNING: undetermined target for this message" |
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
|
109 return |
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
|
110 contents = HTML(msg) |
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
|
111 |
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
|
112 self._popup = PopupPanel(autoHide=False, modal=False) |
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
|
113 self._popup.target_data = target_data |
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
|
114 self._popup.add(contents) |
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
|
115 self._popup.setStyleName("warningPopup") |
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
|
116 if style: |
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
|
117 self._popup.addStyleName(style) |
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
|
118 |
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
|
119 left = 0 |
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
|
120 top = 0 #max(0, self.getAbsoluteTop() - contents.getOffsetHeight() - 2) |
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
|
121 self._popup.setPopupPosition(left, top) |
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
|
122 self._popup.setPopupPosition(left, top) |
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
|
123 self._popup.show() |
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
|
124 |
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
|
125 def _timeCb(self, timer): |
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
|
126 if self._popup: |
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
|
127 self._popup.hide() |
23 | 128 del self._popup |
129 self._popup = None | |
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
|
130 |
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
|
131 def _getTarget(self, txt): |
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
|
132 """Say who will receive the messsage |
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
|
133 Return a tuple (target_type, target info)""" |
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
|
134 type = None |
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
|
135 target = None |
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
|
136 if txt.startswith('@@: '): |
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
|
137 type = "PUBLIC" |
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
|
138 elif txt.startswith('@'): |
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
|
139 type = "GROUP" |
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
|
140 _end = txt.find(': ') |
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
|
141 if _end == -1: |
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
|
142 type = "STATUS" |
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
|
143 else: |
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
|
144 target = txt[1:_end] #only one target group is managed for the moment |
28 | 145 if not target in self.host.contact_panel.getGroups(): |
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
|
146 target = None |
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
|
147 elif self.host.selected == None: |
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
|
148 type = "STATUS" |
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
|
149 elif isinstance(self.host.selected, ChatPanel): |
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
|
150 type = "ONE2ONE" |
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
|
151 target = str(self.host.selected.target) |
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
|
152 else: |
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
|
153 print self.host.selected |
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
|
154 type = "UNKNOWN" |
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
|
155 return (type, target) |
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
|
156 |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
157 def onKeyPress(self, sender, keycode, modifiers): |
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
|
158 _txt = self.getText() |
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
|
159 if not self._popup: |
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
|
160 self.showWarning(self._getTarget(_txt)) |
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
|
161 else: |
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
|
162 _target = self._getTarget(_txt) |
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
|
163 if _target != self._popup.target_data: |
23 | 164 self._timeCb(None) #we remove the popup |
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
|
165 self.showWarning(_target) |
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
|
166 |
22
586f69e85559
browser_side: removed some useless mess + changed delay for warning message to 2s
Goffi <goffi@goffi.org>
parents:
21
diff
changeset
|
167 self._timer.schedule(2000) |
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
|
168 |
19 | 169 if keycode == KEY_ENTER and not self.visible: |
170 if _txt: | |
171 if _txt.startswith('@'): | |
172 self.host.bridge.call('sendMblog', None, self.getText()) | |
20 | 173 elif self.host.selected == None: |
174 self.host.bridge.call('setStatus', None, _txt) | |
19 | 175 elif isinstance(self.host.selected, ChatPanel): |
176 _chat = self.host.selected | |
20 | 177 self.host.bridge.call('sendMessage', None, str(_chat.target), _txt, '', 'chat') |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
178 self.setText('') |
23 | 179 self._timeCb(None) #we remove the popup |
1 | 180 |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
181 def complete(self): |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
182 #self.visible=False #XXX: self.visible is not unset in pyjamas when ENTER is pressed and a completion is done |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
183 #XXX: fixed directly on pyjamas, if the patch is accepted, no need to walk around this |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
184 return AutoCompleteTextBox.complete(self) |
0 | 185 |
186 | |
187 class SatWebFrontend: | |
188 def onModuleLoad(self): | |
19 | 189 self.whoami = None |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
190 self.bridge = BridgeCall() |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
191 self.bridge_signals = BridgeSignals() |
19 | 192 self.selected = None |
28 | 193 self.uni_box = UniBox(self) |
194 self.uni_box.addKey("@@: ") | |
195 self.status_panel = StatusPanel(self) | |
196 self.contact_panel = ContactPanel(self) | |
1 | 197 self.panel = MainPanel(self) |
23 | 198 self.discuss_panel = self.panel.discuss_panel |
199 self.tab_panel = self.panel.tab_panel | |
16
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
200 self.mpanels = [EmptyPanel(self), MicroblogPanel(self, accept_all=True), EmptyPanel(self)] |
23 | 201 self.discuss_panel.changePanel(0,self.mpanels[0]) |
202 self.discuss_panel.changePanel(1,self.mpanels[1]) | |
203 self.discuss_panel.changePanel(2,self.mpanels[2]) | |
0 | 204 self._dialog = None |
205 RootPanel().add(self.panel) | |
206 self._register = RegisterCall() | |
1 | 207 self._register.call('isRegistered',self._isRegisteredCB) |
0 | 208 |
19 | 209 def select(self, widget): |
210 """Define the selected widget""" | |
211 if self.selected: | |
212 self.selected.removeStyleName('selected_widget') | |
213 self.selected = widget | |
214 if widget: | |
215 self.selected.addStyleName('selected_widget') | |
216 | |
1 | 217 def _isRegisteredCB(self, registered): |
0 | 218 if not registered: |
219 self._dialog = RegisterBox(self.logged,centered=True) | |
220 self._dialog.show() | |
221 else: | |
1 | 222 self._register.call('isConnected', self._isConnectedCB) |
0 | 223 |
1 | 224 def _isConnectedCB(self, connected): |
0 | 225 if not connected: |
226 self._register.call('connect',self.logged) | |
227 else: | |
228 self.logged() | |
229 | |
230 def logged(self): | |
231 if self._dialog: | |
232 self._dialog.hide() | |
233 del self._dialog # don't work if self._dialog is None | |
1 | 234 |
235 #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
|
236 self.bridge.call('getContacts', self._getContactsCB) |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
237 self.bridge_signals.call('getSignals', self._getSignalsCB) |
19 | 238 #We want to know our own jid |
239 self.bridge.call('getProfileJid', self._getProfileJidCB) | |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
240 |
1 | 241 def _getContactsCB(self, contacts_data): |
242 for contact in contacts_data: | |
243 jid, attributes, groups = contact | |
28 | 244 self.contact_panel.addContact(jid, attributes, groups) |
0 | 245 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
246 def _getSignalsCB(self, signal_data): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
247 bridge_signals = BridgeSignals() |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
248 bridge_signals.call('getSignals', self._getSignalsCB) |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
249 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
|
250 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
|
251 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
|
252 self._personalEventCb(*args) |
19 | 253 elif name == 'newMessage': |
254 self._newMessageCb(*args) | |
20 | 255 elif name == 'presenceUpdate': |
256 self._presenceUpdateCb(*args) | |
28 | 257 elif name == 'roomJoined': |
258 self._roomJoinedCb(*args) | |
19 | 259 |
260 def _getProfileJidCB(self, jid): | |
261 self.whoami = JID(jid) | |
20 | 262 #we can now ask our status |
263 self.bridge.call('getPresenceStatus', self._getPresenceStatusCB) | |
264 | |
19 | 265 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
266 |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
267 ## Signals callbacks ## |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
268 |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
269 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
|
270 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
|
271 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
|
272 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
|
273 return |
16
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
274 if data.has_key('groups'): |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
275 _groups = set(data['groups'].split() if data['groups'] else []) |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
276 else: |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
277 _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
|
278 for panel in self.mpanels: |
16
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
279 if isinstance(panel,MicroblogPanel) and (panel.isJidAccepted(sender) or _groups == None or _groups.intersection(panel.accepted_groups)): |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
280 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
|
281 author = data.get('author') |
9 | 282 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
|
283 panel.addEntry(content, author, timestamp) |
0 | 284 |
19 | 285 def _newMessageCb(self, from_jid, msg, msg_type, to_jid): |
286 _from = JID(from_jid) | |
287 _to = JID(to_jid) | |
288 for panel in self.mpanels: | |
289 if isinstance(panel,ChatPanel) and (panel.target.bare == _from.bare or panel.target.bare == _to.bare): | |
290 panel.printMessage(_from, msg) | |
291 | |
20 | 292 def _presenceUpdateCb(self, entity, show, priority, statuses): |
293 _entity = JID(entity) | |
28 | 294 #XXX: QnD way to get our status |
20 | 295 if self.whoami and self.whoami.bare == _entity.bare and statuses: |
28 | 296 self.status_panel.changeStatus(statuses.values()[0]) |
297 if not self.whoami or self.whoami.bare != _entity.bare: | |
298 self.contact_panel.setConnected(_entity.bare, _entity.resource, show, priority, statuses) | |
299 | |
300 def _roomJoinedCb(self, room_id, room_service, room_nicks, user_nick, profile): | |
301 print "roomJoined" | |
302 print room_id | |
303 _target = JID("%s@%s" % (room_id,room_service)) | |
304 if room_id.startswith('sat_tarot_'): #XXX: it's not really beautiful, but it works :) | |
305 self.tab_panel.add(ChatPanel(self, _target), "Tarot") | |
306 else: | |
307 self.tab_panel.add(ChatPanel(self, _target), str(_target)) | |
308 | |
20 | 309 |
310 def _getPresenceStatusCB(self, presence_data): | |
28 | 311 for entity in presence_data: |
312 for resource in presence_data[entity]: | |
313 args = presence_data[entity][resource] | |
314 self._presenceUpdateCb("%s/%s" % (entity, resource), *args) | |
20 | 315 |
0 | 316 if __name__ == '__main__': |
1 | 317 pyjd.setup("http://localhost:8080/libervia.html") |
0 | 318 app = SatWebFrontend() |
319 app.onModuleLoad() | |
320 pyjd.run() | |
321 |