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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
|
# -*- coding: utf-8 -*-
#
import time
import json
import sys
import re
import os
import socket
import thread
import urllib
#import requests
from websocket import create_connection
import weechat as w
SCRIPT_NAME = "slack_extension"
SCRIPT_AUTHOR = "Ryan Huber <rhuber@gmail.com>"
SCRIPT_VERSION = "0.5"
SCRIPT_LICENSE = "MIT"
SCRIPT_DESC = "Extends weechat for typing notification/search/etc on slack.com"
class Typing:
def __init__(self):
self.channels = {}
self.dms = {}
def add(self, channel, user):
if channel.startswith("#"):
self.channels.setdefault(channel, {})
self.channels[channel][user] = time.time()
else:
self.dms[channel] = time.time()
def delete(self, channel, user):
if channel.startswith("#"):
if self.channels[channel].has_key(user):
del self.channels[channel][user]
else:
#probably unclear, but the line below makes sure not to stop the typing notice if it is the current user typing
if channel == user:
if self.dms.has_key(channel):
del self.dms[channel]
self.update()
def update(self):
for c in self.channels.keys():
for u in self.channels[c].keys():
if self.channels[c][u] < time.time() - 5:
del self.channels[c][u]
if len(self.channels[c].keys()) == 0:
del self.channels[c]
for u in self.dms.keys():
if self.dms[u] < time.time() - 5:
del self.dms[u]
def get_typing_channels(self):
return self.channels.keys()
def get_typing_dms(self):
return ['d/' + x for x in self.dms.keys()]
def get_typing_current_channel(self, current_channel):
if self.channels.has_key(current_channel):
return self.channels[current_channel].keys()
else:
return []
def someone_typing(self):
if len(self.channels.keys()) > 0 or len(self.dms.keys()) > 0:
return True
else:
return False
class BufferTmpRenamer:
def __init__(self, fmt="%s..."):
self.FORMAT = fmt
self.renamed = []
def get_channels(self):
return self.renamed
def rename(self, buffer_name):
weechat_buffer = w.info_get("irc_buffer", "%s,%s" % (server, buffer_name))
if self.renamed.count(buffer_name) == 0:
new_buffer_name = self.FORMAT % (buffer_name)
self.renamed.append(buffer_name)
w.buffer_set(weechat_buffer, "short_name", new_buffer_name)
def unrename(self, buffer_name):
if self.renamed.count(buffer_name) > 0:
weechat_buffer = w.info_get("irc_buffer", "%s,%s" % (server, buffer_name))
new_buffer_name = buffer_name
w.buffer_set(weechat_buffer, "short_name", new_buffer_name)
self.renamed.remove(buffer_name)
def slack_command_cb(data, current_buffer, args):
a = args.split(' ',1)
if len(a) > 1:
function_name, args = a[0], a[1]
else:
function_name, args = a[0], None
try:
cmds[function_name](args)
except KeyError:
w.prnt("", "Command not found or exception: "+function_name)
return w.WEECHAT_RC_OK
def command_test(args):
if slack_buffer:
w.prnt(slack_buffer,"worked!")
def command_away(args):
async_slack_api_request('presence.set', {"presence":"away"})
def command_back(args):
async_slack_api_request('presence.set', {"presence":"active"})
def command_neveraway(args):
global never_away
if never_away == True:
never_away = False
w.prnt("", "unset never_away")
else:
never_away = True
w.prnt("", "set as never_away")
def command_printvar(args):
w.prnt("", str(eval(args)))
def command_debug(args):
create_slack_debug_buffer()
def command_debugstring(args):
global debug_string
if args == '':
debug_string = None
else:
debug_string = args
def command_search(args):
if not slack_buffer:
create_slack_buffer()
w.buffer_set(slack_buffer, "display", "1")
query = args
w.prnt(slack_buffer,"\nSearched for: %s\n\n" % (query))
reply = slack_api_request('search.messages', {"query":query}).read()
data = json.loads(reply)
for message in data['messages']['matches']:
message["text"] = message["text"].encode('ascii', 'ignore')
formatted_message = "%s / %s:\t%s" % (message["channel"]["name"], message['username'], message['text'])
w.prnt(slack_buffer,str(formatted_message))
def command_awaybomb(args):
for i in range(1,10):
async_slack_api_request('presence.set', {"presence":"away"})
time.sleep(.2)
async_slack_api_request('presence.set', {"presence":"active"})
time.sleep(.2)
def command_nick(args):
urllib.urlopen("https://%s/account/settings" % (domain))
browser.select_form(nr=0)
browser.form['username'] = args
reply = browser.submit()
### Websocket handling methods
def slack_websocket_cb(data, fd):
try:
data = ws.recv()
message_json = json.loads(data)
except:
return w.WEECHAT_RC_OK
try:
if slack_debug != None:
write_debug(message_json)
except:
pass
dereference_hash(message_json)
#dispatch here
function_name = message_json["type"]
try:
proc[function_name](message_json)
except KeyError:
#w.prnt("", "Function not implemented "+function_name)
pass
w.bar_item_update("slack_typing_notice")
return w.WEECHAT_RC_OK
def write_debug(message_json):
dereference_hash(message_json)
output = "%s" % ( json.dumps(message_json, sort_keys=True) )
if debug_string:
if output.find(debug_string) < 0:
return
w.prnt(slack_debug,output)
def modify_buffer_name(name, new_name_fmt="%s"):
buffer_name = "%s.%s" % (server, name)
buf_ptr = w.buffer_search("",buffer_name)
new_buffer_name = new_name_fmt % (name)
w.buffer_set(buf_ptr, "short_name", new_buffer_name)
def process_presence_change(data):
global nick_ptr
if data["user"] == nick:
nick_ptr = w.nicklist_search_nick(general_buffer_ptr,'',nick)
if data["presence"] == 'active':
w.nicklist_nick_set(general_buffer_ptr, nick_ptr, "prefix", "+")
else:
w.nicklist_nick_set(general_buffer_ptr, nick_ptr, "prefix", " ")
else:
#this puts +/- in front of usernames in the buffer list. (req buffers.pl)
buffer_name = "%s.%s" % (server, data["user"])
buf_ptr = w.buffer_search("",buffer_name)
if data["presence"] == 'active':
modify_buffer_name(data["user"], "+%s")
else:
modify_buffer_name(data["user"], " %s")
def process_channel_marked(message_json):
channel = message_json["channel"]
buffer_name = "%s.%s" % (server, channel)
if buffer_name != current_buffer_name():
buf_ptr = w.buffer_search("",buffer_name)
w.buffer_set(buf_ptr, "unread", "")
#NOTE: only works with latest
if not legacy_mode:
w.buffer_set(buf_ptr, "hotlist", "-1")
def process_im_marked(message_json):
channel = message_json["channel"]
buffer_name = "%s.%s" % (server, channel)
if buffer_name != current_buffer_name():
buf_ptr = w.buffer_search("",buffer_name)
w.buffer_set(buf_ptr, "unread", "")
#NOTE: only works with latest
if not legacy_mode:
w.buffer_set(buf_ptr, "hotlist", "-1")
def process_user_typing(message_json):
typing.add(message_json["channel"], message_json["user"])
def process_error(message_json):
global connected
connected = False
def process_message(message_json):
mark_silly_channels_read(message_json["channel"])
#below prevents typing notification from disapearing if the server sends an unfurled message
if message_json.has_key("user"):
typing.delete(message_json["channel"], message_json["user"])
user = user_hash[message_json["user"]]
else:
user = "unknown user"
channel = message_json["channel"]
if message_json["message"].has_key("attachments"):
attachments = [x["fallback"] for x in message_json["message"]["attachments"]]
text = "\n".join(attachments)
text = text.encode('ascii', 'ignore')
else:
text = "%s\tEDITED: %s" % (user, message_json["message"]["text"])
text = text.encode('ascii', 'ignore')
buffer_name = "%s.%s" % (server, channel)
if message_json["subtype"] == "message_changed":
buf_ptr = w.buffer_search("",buffer_name)
w.prnt(buf_ptr, text)
pass
### END Websocket handling methods
def typing_bar_item_cb(data, buffer, args):
if typing.someone_typing:
#TODO: make this a config option
color = w.color('yellow')
if current_buffer_name().find("%s.#" % (server)) > -1:
current_channel = current_buffer_name().split('.')[1]
else:
current_channel = None
typing_here = ", ".join(typing.get_typing_dms() + typing.get_typing_current_channel(current_channel))
if len(typing_here) > 0:
return color + "typing: " + typing_here
return ""
def typing_update_cb(data, remaining_calls):
typing.update()
w.bar_item_update("slack_typing_notice")
return w.WEECHAT_RC_OK
def buffer_typing_update_cb(data, remaining_calls):
#if typing.someone_typing:
typing_channels = typing.get_typing_channels()
for c in typing_channels:
buffer_namer.rename(c)
for c in buffer_namer.get_channels():
if not c in typing_channels:
buffer_namer.unrename(c)
# for channel in typing.get_typing_channels:
# typing.update()
# w.bar_item_update("slack_typing_notice")
return w.WEECHAT_RC_OK
def hotlist_cache_update_cb(data, remaining_calls):
#this keeps the hotlist dupe up to date for the buffer switch, but is prob technically a race condition. (meh)
global hotlist
hotlist = w.infolist_get("hotlist", "", "")
return w.WEECHAT_RC_OK
def buffer_switch_cb(signal, sig_type, data):
#NOTE: we flush both the next and previous buffer so that all read pointer id up to date
global previous_buffer, hotlist
if reverse_channel_hash.has_key(previous_buffer):
slack_mark_channel_read(reverse_channel_hash[previous_buffer])
if current_buffer_name().startswith(server):
channel_name = current_buffer_name(short=True)
#TESTING ... this code checks to see if there are any unread messages and doesn't reposition the read marker if there are
count = 0
while w.infolist_next(hotlist):
if w.infolist_pointer(hotlist, "buffer_pointer") == w.current_buffer():
for i in [0,1,2,3]:
count += w.infolist_integer(hotlist, "count_0%s" % (i))
if count == 0:
w.buffer_set(w.current_buffer(), "unread", "")
#end TESTING
if reverse_channel_hash.has_key(channel_name):
slack_mark_channel_read(reverse_channel_hash[channel_name])
previous_buffer = channel_name
else:
previous_buffer = None
return w.WEECHAT_RC_OK
def typing_notification_cb(signal, sig_type, data):
global typing_timer
now = time.time()
if typing_timer + 4 < now:
name = current_buffer_name()
try:
srv, channel_name = re.split('\.',name,1)
if reverse_channel_hash.has_key(channel_name) and srv == server:
name = reverse_channel_hash[channel_name]
request = {"type":"typing","channel":name}
ws.send(json.dumps(request))
#w.prnt("",json.dumps(request))
typing_timer = now
except:
pass
return w.WEECHAT_RC_OK
#NOTE: figured i'd do this because they do
def slack_ping_cb(data, remaining):
global counter, connected
if counter > 999:
counter = 0
request = {"type":"ping","id":counter}
try:
ws.send(json.dumps(request))
except:
connected = False
counter += 1
return w.WEECHAT_RC_OK
def slack_connection_persistence_cb(data, remaining_calls):
global connected
if not connected:
w.prnt("", "Disconnected from slack, trying to reconnect..")
connect_to_slack()
return w.WEECHAT_RC_OK
def slack_never_away_cb(data, remaining):
global never_away
if never_away == True:
#w.prnt("", 'updating status as back')
name = reverse_channel_hash["general"]
request = {"type":"typing","channel":name}
ws.send(json.dumps(request))
#command_back(None)
return w.WEECHAT_RC_OK
### Slack specific requests
def slack_mark_channel_read(channel_id):
t = time.time() + 1
if channel_id.startswith('C'):
reply = async_slack_api_request("channels.mark", {"channel":channel_id,"ts":t})
elif channel_id.startswith('D'):
reply = async_slack_api_request("im.mark", {"channel":channel_id,"ts":t})
def connect_to_slack():
global login_data, nick, connected, general_buffer_ptr, nick_ptr, name, domain
data = {}
t = time.time()
request = "rtm.start?t=%s" % t
data["token"] = slack_api_token
data = urllib.urlencode(data)
reply = urllib.urlopen('https://slack.com/api/%s' % (request), data)
if reply.code == 200:
data = reply.read()
login_data = json.loads(data)
if login_data["ok"] == True:
nick = login_data["self"]["name"]
domain = login_data["team"]["domain"] + ".slack.com"
create_slack_lookup_hashes(login_data)
create_slack_websocket(login_data)
general_buffer_ptr = w.buffer_search("",server+".#general")
nick_ptr = w.nicklist_search_nick(general_buffer_ptr,'',nick)
name = w.nicklist_nick_get_string(general_buffer_ptr,nick,'name')
set_initial_statii(login_data["users"])
connected = True
return True
else:
w.prnt("", "\n!! slack.com login error: " + login_data["error"] + "\n Please check your API token with \"/set plugins.var.python.slack_extension.slack_api_token\"\n\n ")
else:
connected = False
return False
def set_initial_statii(data):
for user in data:
if user["presence"] == "active":
modify_buffer_name(user["name"], "+%s")
else:
modify_buffer_name(user["name"], " %s")
def create_slack_lookup_hashes(login_data):
global user_hash, channel_hash, reverse_channel_hash
user_hash = create_user_hash(login_data)
channel_hash = create_channel_hash(login_data)
reverse_channel_hash = create_reverse_channel_hash(login_data)
def create_slack_websocket(data):
global ws
web_socket_url = data['url']
try:
ws = create_connection(web_socket_url)
ws.sock.setblocking(0)
w.hook_fd(ws.sock._sock.fileno(), 1, 0, 0, "slack_websocket_cb", "")
except socket.error:
return False
return True
# return ws
#NOTE: switched to async/curl because sync slowed down the UI
def async_slack_api_request(request, data):
t = time.time()
request += "?t=%s" % t
data["token"] = slack_api_token
data = urllib.urlencode(data)
command = 'curl --data "%s" https://%s/api/%s' % (data,domain,request)
w.hook_process(command, 5000, '', '')
return True
def slack_api_request(request, data):
t = time.time()
request += "?t=%s" % t
data["token"] = slack_api_token
data = urllib.urlencode(data)
reply = urllib.urlopen('https://%s/api/%s' % (domain, request), data)
return reply
def dereference_hash(data):
try:
if data.has_key("user"):
data["user"] = user_hash[data["user"]]
if data.has_key("channel"):
data["channel"] = channel_hash[data["channel"]]
except:
pass
def create_user_hash(data):
blah = {}
for item in data["users"]:
blah[item["id"]] = item["name"]
return blah
def create_channel_hash(data):
blah = {}
for item in data["channels"]:
blah[item["id"]] = "#" + item["name"]
for item in data["ims"]:
blah[item["id"]] = user_hash[item["user"]]
return blah
def create_reverse_channel_hash(data):
blah = {}
for item in data["channels"]:
blah["#" + item["name"]] = item["id"]
for item in data["ims"]:
blah[user_hash[item["user"]]] = item["id"]
return blah
def mark_silly_channels_read(channel):
if channel in channels_always_marked_read:
slack_mark_channel_read(reverse_channel_hash[channel])
### END Slack specific requests
### Utility Methods
def current_buffer_name(short=False):
buffer = w.current_buffer()
#number = w.buffer_get_integer(buffer, "number")
name = w.buffer_get_string(buffer, "name")
if short:
try:
name = re.split('\.',name,1)[1]
except:
pass
return name
def closed_slack_buffer_cb(data, buffer):
global slack_buffer
slack_buffer = None
return w.WEECHAT_RC_OK
def create_slack_buffer():
global slack_buffer
slack_buffer = w.buffer_new("slack", "", "", "closed_slack_buffer_cb", "")
w.buffer_set(slack_buffer, "notify", "0")
#w.buffer_set(slack_buffer, "display", "1")
return w.WEECHAT_RC_OK
def closed_slack_debug_buffer_cb(data, buffer):
global slack_debug
slack_debug = None
return w.WEECHAT_RC_OK
def create_slack_debug_buffer():
global slack_debug, debug_string
if slack_debug != None:
w.buffer_set(slack_debug, "display", "1")
else:
debug_string = None
slack_debug = w.buffer_new("slack-debug", "", "", "closed_slack_debug_buffer_cb", "")
w.buffer_set(slack_debug, "notify", "0")
w.buffer_set(slack_debug, "display", "1")
### END Utility Methods
# Main
if __name__ == "__main__":
if w.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE,
SCRIPT_DESC, "", ""):
if not w.config_get_plugin('server'):
w.config_set_plugin('server', "slack")
if not w.config_get_plugin('timeout'):
w.config_set_plugin('timeout', "4")
if not w.config_get_plugin('slack_api_token'):
w.config_set_plugin('slack_api_token', "INSERT VALID KEY HERE!")
if not w.config_get_plugin('channels_always_marked_read'):
w.config_set_plugin('channels_always_marked_read', "")
version = w.info_get("version_number", "") or 0
if int(version) >= 0x00040400:
legacy_mode = False
else:
legacy_mode = True
### Global constants
DIRECT_MESSAGE = '*direct*'
### End global constants
### Global var section
slack_api_token = w.config_get_plugin("slack_api_token")
server = w.config_get_plugin("server")
timeout = w.config_get_plugin("timeout")
channels_always_marked_read = [x.strip() for x in w.config_get_plugin("channels_always_marked_read").split(',')]
cmds = {k[8:]: v for k, v in globals().items() if k.startswith("command_")}
proc = {k[8:]: v for k, v in globals().items() if k.startswith("process_")}
typing = Typing()
typing_timer = time.time()
buffer_namer = BufferTmpRenamer()
counter = 0
domain = None
previous_buffer = None
slack_buffer = None
slack_debug = None
login_data = None
nick = None
nick_ptr = None
general_buffer_ptr = None
name = None
connected = False
never_away = False
hotlist = w.infolist_get("hotlist", "", "")
### End global var section
connect_to_slack()
w.hook_timer(60000, 0, 0, "slack_connection_persistence_cb", "")
### attach to the weechat hooks we need
w.hook_timer(1000, 0, 0, "typing_update_cb", "")
w.hook_timer(1000, 0, 0, "buffer_typing_update_cb", "")
w.hook_timer(1000, 0, 0, "hotlist_cache_update_cb", "")
w.hook_timer(1000 * 3, 0, 0, "slack_ping_cb", "")
w.hook_timer(1000 * 60* 29, 0, 0, "slack_never_away_cb", "")
w.hook_signal('buffer_switch', "buffer_switch_cb", "")
w.hook_signal('window_switch', "buffer_switch_cb", "")
w.hook_signal('input_text_changed', "typing_notification_cb", "")
w.hook_command('slack','Plugin to allow typing notification and sync of read markers for slack.com', 'stuff', 'stuff2', '|'.join(cmds.keys()), 'slack_command_cb', '')
w.bar_item_new('slack_typing_notice', 'typing_bar_item_cb', '')
### END attach to the weechat hooks we need
|