forked from emacs-slack/emacs-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslack-websocket.el
493 lines (442 loc) · 18.9 KB
/
slack-websocket.el
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
;;; slack-websocket.el --- slack websocket interface -*- lexical-binding: t; -*-
;; Copyright (C) 2015 南優也
;; Author: 南優也 <[email protected]>
;; Keywords:
;; 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 3 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, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;;
;;; Code:
(require 'websocket)
(require 'slack-request)
(require 'slack-message)
(require 'slack-reply)
(defclass slack-typing ()
((room :initarg :room :initform nil)
(limit :initarg :limit :initform nil)
(users :initarg :users :initform nil)))
(defclass slack-typing-user ()
((limit :initarg :limit :initform nil)
(user-name :initarg :user-name :initform nil)))
(defun slack-ws-open (team)
(with-slots (ws-url ws-conn) team
(unless ws-conn
(setq ws-conn
(websocket-open
ws-url
:on-message
#'(lambda (websocket frame)
(slack-ws-on-message websocket frame team)))))))
(defun slack-ws-close (&optional team)
(interactive)
(unless team
(setq team slack-teams))
(cl-labels
((close (team)
(let ((team-name (oref team name)))
(with-slots (connected ws-conn last-pong) team
(if ws-conn
(progn
(websocket-close ws-conn)
(setq ws-conn nil)
(setq connected nil)
(slack-ws-cancel-ping-timer team)
(slack-ws-cancel-check-ping-timeout-timer team)
(slack-ws-cancel-reconnect-timer team)
(message "Slack Websocket Closed - %s" team-name))
(message "Slack Websocket is not open - %s" team-name))))))
(if (listp team)
(mapc #'close team)
(close team))))
(defun slack-ws-send (payload team)
(cl-labels ((restart (team)
(message "Slack Websocket is Closed. Try to Reconnect - %s"
(oref team name))
(slack-start team)))
(with-slots (waiting-send ws-conn) team
(push payload waiting-send)
(if (websocket-openp ws-conn)
(condition-case _e
(progn
(websocket-send-text ws-conn payload)
(setq waiting-send
(cl-remove-if #'(lambda (p) (string= payload p))
waiting-send)))
('websocket-closed (restart team)))
(restart team)))))
(defun slack-ws-resend (team)
(with-slots (waiting-send) team
(let ((candidate waiting-send))
(setq waiting-send nil)
(cl-loop for msg in candidate
do (sleep-for 1) (slack-ws-send msg team)))))
(defun slack-ws-on-message (_websocket frame team)
;; (message "%s" (slack-request-parse-payload
;; (websocket-frame-payload frame)))
(when (websocket-frame-completep frame)
(let* ((payload (slack-request-parse-payload
(websocket-frame-payload frame)))
(decoded-payload (slack-decode payload))
(type (plist-get decoded-payload :type)))
;; (message "%s" decoded-payload)
(cond
((string= type "pong")
(slack-ws-handle-pong decoded-payload team))
((string= type "hello")
(slack-ws-cancel-reconnect-timer team)
(slack-ws-set-ping-timer team)
(slack-ws-set-check-ping-timer team)
(slack-ws-resend team)
(message "Slack Websocket Is Ready! - %s"
(oref team name)))
((plist-get decoded-payload :reply_to)
(slack-ws-handle-reply decoded-payload team))
((string= type "message")
(slack-ws-handle-message decoded-payload team))
((string= type "reaction_added")
(slack-ws-handle-reaction-added decoded-payload team))
((string= type "reaction_removed")
(slack-ws-handle-reaction-removed decoded-payload team))
((string= type "channel_created")
(slack-ws-handle-channel-created decoded-payload team))
((or (string= type "channel_archive")
(string= type "group_archive"))
(slack-ws-handle-room-archive decoded-payload team))
((or (string= type "channel_unarchive")
(string= type "group_unarchive"))
(slack-ws-handle-room-unarchive decoded-payload team))
((string= type "channel_deleted")
(slack-ws-handle-channel-deleted decoded-payload team))
((or (string= type "channel_rename")
(string= type "group_rename"))
(slack-ws-handle-room-rename decoded-payload team))
((or (string= type "channel_joined")
(string= type "group_joined"))
(slack-ws-handle-room-joined decoded-payload team))
((string= type "presence_change")
(slack-ws-handle-presence-change decoded-payload team))
((or (string= type "bot_added")
(string= type "bot_changed"))
(slack-ws-handle-bot decoded-payload team))
((or (string= type "file_deleted")
(string= type "file_unshared"))
(slack-ws-handle-file-deleted decoded-payload team))
((or (string= type "im_marked")
(string= type "channel_marked")
(string= type "group_marked"))
(slack-ws-handle-room-marked decoded-payload team))
((string= type "im_open")
(slack-ws-handle-im-open decoded-payload team))
((string= type "im_close")
(slack-ws-handle-im-close decoded-payload team))
((string= type "team_join")
(slack-ws-handle-team-join decoded-payload team))
((string= type "user_typing")
(slack-ws-handle-user-typing decoded-payload team))))))
(defun slack-user-typing (team)
(with-slots (typing typing-timer) team
(with-slots (limit users room) typing
(let ((current (float-time)))
(if (and typing-timer (timerp typing-timer)
(< limit current))
(progn
(cancel-timer typing-timer)
(setq typing-timer nil)
(setq typing nil))
(if (slack-buffer-show-typing-p
(get-buffer (slack-room-buffer-name room)))
(let ((team-name (slack-team-name team))
(room-name (slack-room-name room))
(visible-users (cl-remove-if
#'(lambda (u) (< (oref u limit) current))
users)))
(message "Slack [%s - %s] %s is typing..."
team-name room-name
(mapconcat #'(lambda (u) (oref u user-name))
visible-users
", ")))))))))
(defun slack-ws-handle-user-typing (payload team)
(let* ((user (slack-user-name (plist-get payload :user) team))
(room (slack-room-find (plist-get payload :channel) team)))
(if (slack-buffer-show-typing-p
(get-buffer (slack-room-buffer-name room)))
(let ((limit (+ 3 (float-time))))
(with-slots (typing typing-timer) team
(if (and typing (equal room (oref typing room)))
(with-slots ((typing-limit limit)
(typing-room room) users) typing
(setq typing-limit limit)
(let ((typing-user (make-instance 'slack-typing-user
:limit limit
:user-name user)))
(setq users
(cons typing-user
(cl-remove-if #'(lambda (u)
(string= (oref u user-name)
user))
users))))))
(unless typing
(let ((new-typing (make-instance 'slack-typing
:room room :limit limit))
(typing-user (make-instance 'slack-typing-user
:limit limit :user-name user)))
(oset new-typing users (list typing-user))
(setq typing new-typing))
(setq typing-timer
(run-with-timer t 1 #'slack-user-typing team))))))))
(defun slack-ws-handle-team-join (payload team)
(let ((user (slack-decode (plist-get payload :user))))
(with-slots (users) team
(setq users
(cons user
(cl-remove-if #'(lambda (u)
(string= (plist-get u :id)
(plist-get user :id)))
users))))
(message "User %s Joind Team: %s"
(plist-get (slack-user-find (plist-get user :id)
team)
:name)
(slack-team-name team))))
(defun slack-ws-handle-im-open (payload team)
(cl-labels
((notify
(im)
(slack-room-history
im team nil
#'(lambda ()
(message "Direct Message Channel with %s is Open"
(slack-user-name (oref im user) team)))
t)))
(let ((exist (slack-room-find (plist-get payload :channel) team)))
(if exist
(progn
(oset exist is-open t)
(notify exist))
(with-slots (ims) team
(let ((im (slack-room-create
(list :id (plist-get payload :channel)
:user (plist-get payload :user))
team 'slack-im)))
(setq ims (cons im ims))
(notify im)))))))
(defun slack-ws-handle-im-close (payload team)
(let ((im (slack-room-find (plist-get payload :channel) team)))
(oset im is-open nil)
(message "Direct Message Channel with %s is Closed"
(slack-user-name (oref im user) team))))
(defun slack-ws-handle-message (payload team)
(let ((subtype (plist-get payload :subtype)))
(cond
((and subtype (string= subtype "file_share"))
(slack-ws-handle-file-share payload team)
(slack-ws-update-message payload team))
((and subtype (string= subtype "message_changed"))
(slack-message-edited payload team))
((and subtype (string= subtype "message_deleted"))
(slack-message-deleted payload team))
(t
(slack-ws-update-message payload team)))))
(defun slack-ws-update-message (payload team)
(let ((m (slack-message-create payload)))
(when m
(slack-message-update m team))))
(defun slack-ws-handle-reply (payload team)
(let ((ok (plist-get payload :ok)))
(if (eq ok :json-false)
(let ((err (plist-get payload :error)))
(message "Error code: %s msg: %s"
(plist-get err :code)
(plist-get err :msg)))
(let ((message-id (plist-get payload :reply_to)))
(if (integerp message-id)
(slack-message-handle-reply
(slack-message-create payload)
team))))))
(cl-defmacro slack-ws-handle-reaction ((payload team) &body body)
`(let* ((item (plist-get ,payload :item))
(room (slack-room-find (plist-get item :channel)
,team)))
(if room
(let ((msg (slack-room-find-message room (plist-get item :ts))))
(if msg
(let* ((r-name (plist-get ,payload :reaction))
(r-count 1)
(r-users (list (plist-get ,payload :user)))
(reaction (make-instance 'slack-reaction
:name r-name
:count r-count
:users r-users)))
,@body
(slack-message-update msg ,team t t)))))))
(defun slack-ws-handle-reaction-added (payload team)
(slack-ws-handle-reaction
(payload team)
(slack-message-append-reaction msg reaction)
(slack-reaction-notify payload team)))
(defun slack-ws-handle-reaction-removed (payload team)
(slack-ws-handle-reaction
(payload team)
(slack-message-pop-reaction msg reaction)))
(defun slack-ws-handle-channel-created (payload team)
;; (let ((id (plist-get (plist-get payload :channel) :id)))
;; (slack-channel-create-from-info id team))
)
(defun slack-ws-handle-room-archive (payload team)
(let* ((id (plist-get payload :channel))
(room (slack-room-find id team)))
(oset room is-archived t)
(message "Channel: %s is archived"
(slack-room-name-with-team-name room))))
(defun slack-ws-handle-room-unarchive (payload team)
(let* ((id (plist-get payload :channel))
(room (slack-room-find id team)))
(oset room is-archived nil)
(message "Channel: %s is unarchived"
(slack-room-name-with-team-name room))))
(defun slack-ws-handle-channel-deleted (payload team)
(let ((id (plist-get payload :channel)))
(slack-room-deleted id team)))
(defun slack-ws-handle-room-rename (payload team)
(let* ((c (plist-get payload :channel))
(room (slack-room-find (plist-get c :id) team))
(old-name (slack-room-name room))
(new-name (plist-get c :name)))
(oset room name new-name)
(message "Renamed channel from %s to %s"
old-name
new-name)))
(defun slack-ws-handle-room-joined (payload team)
(cl-labels
((replace-room (room rooms)
(cons room (cl-delete-if
#'(lambda (r)
(slack-room-equal-p room r))
rooms))))
(let* ((c (plist-get payload :channel)))
(if (plist-get c :is_channel)
(let ((channel (slack-room-create c team 'slack-channel)))
(with-slots (channels) team
(setq channels
(replace-room channel channels)))
(message "Joined channel %s"
(slack-room-name-with-team-name channel)))
(let ((group (slack-room-create c team 'slack-group)))
(with-slots (groups) team
(setq groups
(replace-room group groups)))
(message "Joined group %s"
(slack-room-name-with-team-name group)))))))
(defun slack-ws-handle-presence-change (payload team)
(let* ((id (plist-get payload :user))
(user (slack-user-find id team))
(presence (plist-get payload :presence)))
(plist-put user :presence presence)))
(defun slack-ws-handle-bot (payload team)
(let ((bot (plist-get payload :bot)))
(with-slots (bots) team
(push bot bots))))
(defun slack-ws-handle-file-share (payload team)
(let ((file (slack-file-create (plist-get payload :file))))
(slack-file-pushnew file team)))
(defun slack-ws-handle-file-deleted (payload team)
(let ((file-id (plist-get payload :file_id))
(room (slack-file-room-obj team)))
(with-slots (messages last-read) room
(setq messages (cl-remove-if #'(lambda (f)
(string= file-id (oref f id)))
messages)))))
(defun slack-log-time ()
(format-time-string "%Y-%m-%d %H:%M:%S"))
(defun slack-ws-set-ping-timer (team)
(with-slots (ping-timer) team
(unless ping-timer
(setq ping-timer
(run-at-time t 10 #'(lambda () (slack-ws-ping team)))))))
(defun slack-ws-ping (team)
(slack-message-inc-id team)
(with-slots (message-id) team
(let* ((m (list :id message-id
:type "ping"
:time (format-time-string "%s")))
(json (json-encode m)))
(slack-ws-send json team))))
(defun slack-ws-set-check-ping-timer (team)
(with-slots
(check-ping-timeout-timer check-ping-timeout-sec) team
(unless check-ping-timeout-timer
(setq check-ping-timeout-timer
(run-at-time t check-ping-timeout-sec
#'(lambda () (slack-ws-check-ping-timeout team)))))))
(defun slack-ws-check-ping-timeout (team)
(with-slots (last-pong) team
(if last-pong
(let* ((current (time-to-seconds (current-time)))
(since-last-pong (- current last-pong)))
(when (> since-last-pong 20)
(slack-ws-ping-timeout team))))))
(defun slack-ws-ping-timeout (team)
(slack-ws-cancel-check-ping-timeout-timer team)
(message "Slack Websocket PING Timeout.")
(slack-ws-close team)
(slack-ws-cancel-ping-timer team)
(if (oref team reconnect-auto)
(with-slots (reconnect-timer) team
(setq reconnect-timer
(run-at-time "1 sec" nil
#'(lambda () (slack-ws-reconnect team)))))))
(defun slack-ws-cancel-check-ping-timeout-timer (team)
(with-slots (check-ping-timeout-timer last-pong) team
(if (timerp check-ping-timeout-timer)
(cancel-timer check-ping-timeout-timer))
(setq check-ping-timeout-timer nil)
(setq last-pong nil)))
(defun slack-ws-cancel-ping-timer (team)
(with-slots (ping-timer) team
(if (timerp ping-timer)
(cancel-timer ping-timer))
(setq ping-timer nil)))
(defun slack-ws-reconnect (team)
(message "Slack Websocket Try To Reconnect")
(with-slots
((last-reconnect reconnect-after-sec)
(reconnect-max reconnect-after-sec-max)) team
(let* ((after (if (> last-reconnect reconnect-max)
1
(* last-reconnect 2))))
(setq last-reconnect after)
(slack-ws-close team)
(slack-authorize
team
(cl-function
(lambda
(&key error-thrown &allow-other-keys)
(message "Slack Reconnect Error: %s" error-thrown)
(oset team reconnect-timer
(run-at-time after nil
#'(lambda () (slack-ws-reconnect team))))))))))
(defun slack-ws-cancel-reconnect-timer (team)
(with-slots (reconnect-timer reconnect-after-sec) team
(if (timerp reconnect-timer)
(cancel-timer reconnect-timer))
(setq reconnect-timer nil)
(setq reconnect-after-sec 1)))
(defun slack-ws-handle-pong (_payload team)
(with-slots (last-pong) team
(setq last-pong (time-to-seconds (current-time)))))
(defun slack-ws-handle-room-marked (payload team)
(let ((room (slack-room-find (plist-get payload :channel)
team))
(new-unread-count-display (plist-get payload :unread_count_display)))
(with-slots (unread-count-display) room
(setq unread-count-display new-unread-count-display))))
(provide 'slack-websocket)
;;; slack-websocket.el ends here