forked from sugarlabs/speak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chat.py
258 lines (210 loc) · 8.23 KB
/
chat.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
# Copyright (C) 2009, Aleksey Lim
# Copyright (C) 2014, Walter Bender (remove hippo)
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import os
import subprocess
import logging
import time
from gettext import gettext as _
from gi.repository import Gtk
from gi.repository import Gdk
from gi.repository import Pango
from sugar3.graphics import style
from sugar3.presence import presenceservice
from sugar3.activity.activity import get_activity_root
from sugar3.activity.activity import show_object_in_journal
from sugar3.datastore import datastore
from sugar3 import profile
import face
from chatbox import ChatBox
logger = logging.getLogger('speak')
BUDDY_SIZE = int(style.GRID_CELL_SIZE * 1.5)
BUDDIES_WIDTH = int(BUDDY_SIZE * 5)
BUDDIES_COLOR = style.COLOR_SELECTION_GREY
ENTRY_COLOR = style.COLOR_PANEL_GREY
STATUS_MSG = '++STATUS++'
def _luminance(color):
''' Calculate luminance value '''
return int(color[1:3], 16) * 0.3 + int(color[3:5], 16) * 0.6 + \
int(color[5:7], 16) * 0.1
def _lighter_color(colors):
''' Which color is lighter? Use that one for the text nick color '''
if _luminance(colors[0]) > _luminance(colors[1]):
return 0
return 1
def _is_tablet_mode():
try:
fp = open('/dev/input/event4', 'rb')
fp.close()
except IOError:
return False
try:
output = subprocess.call(
['evtest', '--query', '/dev/input/event4', 'EV_SW',
'SW_TABLET_MODE'])
except (OSError, subprocess.CalledProcessError):
return False
if output == 10:
return True
return False
class View(Gtk.VBox):
def __init__(self):
Gtk.VBox.__init__(self)
self.messenger = None
self.me = None
self.quiet = False
self._buddies = {}
# chat entry
owner = presenceservice.get_instance().get_owner()
self._chat = ChatBox(owner, _is_tablet_mode())
self._chat.connect('open-on-journal', self.__open_on_journal)
self.me = self._new_face(owner, ENTRY_COLOR)
# add owner to buddy list
self._buddies[owner] = self.me
# buddies box
self._buddies_box = Gtk.HBox()
self._buddies_box.pack_end(self.me, True, True, 0)
self._buddies_sw = Gtk.ScrolledWindow()
self._buddies_sw.set_policy(Gtk.PolicyType.AUTOMATIC,
Gtk.PolicyType.NEVER)
self._buddies_sw.add_with_viewport(self._buddies_box)
self.chat_post = Gtk.Entry()
self.chat_post.modify_font(Pango.FontDescription('sans bold 24'))
self.chat_post.connect('activate', self._activate_cb)
self.chat_post.connect('key-press-event', self._key_press_cb)
self._entry = Gtk.HBox()
self._entry.pack_start(self._buddies_sw, False, False, 0)
self._entry.pack_start(self.chat_post, True, True, 0)
if _is_tablet_mode():
self.pack_start(self._entry, False, False, 0)
self.pack_end(self._chat, True, True, 0)
else:
self.pack_start(self._chat, True, True, 0)
self.pack_end(self._entry, False, False, 0)
self.resize_chat_box(expanded=False)
self.show_all()
def resize_chat_box(self, expanded=False):
pass
def update(self, status):
self.me.update(status)
if self.messenger:
self.messenger.post('%s:%s' %
(STATUS_MSG, status.serialize()))
def post(self, buddy, text, status_message=False):
buddy_face = self._find_buddy(buddy)
if not text:
return
ascii_text = text.encode('ascii', 'ignore')
if STATUS_MSG in ascii_text:
try:
status = face.Status().deserialize(
ascii_text[len(STATUS_MSG) + 1:])
buddy_face.update(status)
self.resize_buddy_list()
except:
logging.error('Could not parse status message %s' %
text)
else:
self._chat.add_text(buddy, text, status_message)
if not self.quiet:
# and self.props.window \
# and self.props.window.is_visible():
buddy_face.say(text)
def _find_buddy(self, buddy):
i = self._buddies.get(buddy)
if not i:
# Sometimes the same buddy has a different dbus instance,
# so walk through the list
nick = buddy.props.nick
color = buddy.props.color
for old_buddy in self._buddies.keys():
if old_buddy.props.nick == nick and \
old_buddy.props.color == color:
i = self._buddies.get(old_buddy)
if not i: # No match, so add a new buddy
self._add_buddy(buddy)
i = self._buddies[buddy]
return i
def resize_buddy_list(self):
""" maintain the buddy list width """
size = min(BUDDIES_WIDTH, len(self._buddies) * BUDDY_SIZE)
self._buddies_sw.set_size_request(size, BUDDY_SIZE)
for buddy in self._buddies.values():
buddy.set_size_request(BUDDY_SIZE, BUDDY_SIZE)
def farewell(self, buddy):
i = self._find_buddy(buddy)
if not i:
logger.debug('farewell: cannot find buddy %s' % buddy.props.nick)
return
self._buddies_box.remove(i)
del self._buddies[buddy]
self.resize_buddy_list()
def shut_up(self):
for i in self._buddies.values():
i.shut_up()
self.me.shut_up()
def _add_buddy(self, buddy):
self._buddies[buddy] = self._new_face(buddy, BUDDIES_COLOR)
self._buddies_box.pack_start(self._buddies[buddy], True, True, 0)
self.resize_buddy_list()
def _activate_cb(self, widget, event):
text = widget.get_buffer().props.text
if text:
self._chat.add_text(None, text)
widget.get_buffer().props.text = ''
if not self.quiet:
self.me.say(text)
if self.messenger:
self.messenger.post(text)
return True
def _key_press_cb(self, widget, event):
if event.keyval == Gdk.KEY_Return:
if not (event.state & Gdk.ModifierType.CONTROL_MASK):
return self._activate_cb(widget, event)
return False
def _new_face(self, buddy, color):
colors = buddy.props.color.split(',')
lighter = style.Color(colors[_lighter_color(colors)])
buddy_face = face.View(lighter)
# FIXME: omit set_border_state causes main face alignment problems
buddy_face.set_border_state(False)
# FIXME: non-me faces have no mouth
buddy_face.show_all()
return buddy_face
def look_at(self):
self.me.look_at()
for i in self._buddies.values():
i.look_at()
def __open_on_journal(self, widget, url):
'''Ask the journal to display a URL'''
jobject = datastore.create()
metadata = {
'title': '%s: %s' % (_('URL from Speak'), url),
'title_set_by_user': '1',
'icon-color': profile.get_color().to_string(),
'mime_type': 'text/uri-list',
}
for k, v in metadata.items():
jobject.metadata[k] = v
file_path = os.path.join(get_activity_root(), 'instance',
'%i_' % time.time())
open(file_path, 'w').write(url + '\r\n')
os.chmod(file_path, 0755)
jobject.set_file_path(file_path)
datastore.write(jobject)
show_object_in_journal(jobject.object_id)
jobject.destroy()
os.unlink(file_path)