forked from emacs-slack/emacs-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslack-message.el
394 lines (330 loc) · 15.2 KB
/
slack-message.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
;;; slack-message.el --- slack-message -*- lexical-binding: t; -*-
;; Copyright (C) 2015 yuya.minami
;; Author: yuya.minami <yuya.minami@yuyaminami-no-MacBook-Pro.local>
;; 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 'eieio)
(require 'subr-x)
(require 'slack-util)
(require 'slack-reaction)
(defvar slack-current-room-id)
(defvar slack-current-team-id)
(defconst slack-message-pins-add-url "https://slack.com/api/pins.add")
(defconst slack-message-pins-remove-url "https://slack.com/api/pins.remove")
(defconst slack-message-stars-add-url "https://slack.com/api/stars.add")
(defconst slack-message-stars-remove-url "https://slack.com/api/stars.remove")
(defclass slack-message ()
((type :initarg :type :type string)
(subtype :initarg :subtype)
(channel :initarg :channel :initform nil)
(ts :initarg :ts :type string :initform "")
(text :initarg :text :type (or null string) :initform nil)
(item-type :initarg :item_type)
(attachments :initarg :attachments :type (or null list) :initform nil)
(reactions :initarg :reactions :type (or null list))
(is-starred :initarg :is_starred :type boolean :initform nil)
(pinned-to :initarg :pinned_to :type (or null list))
(edited-at :initarg :edited-at :initform nil)
(deleted-at :initarg :deleted-at :initform nil)
(thread :initarg :thread :initform nil)
(thread-ts :initarg :thread_ts :initform nil)
(hide :initarg :hide :initform nil)))
(defclass slack-file-message (slack-message)
((file :initarg :file)))
(defclass slack-reply (slack-message)
((user :initarg :user :initform nil)
(reply-to :initarg :reply_to :type integer)
(id :initarg :id :type integer)))
(defclass slack-user-message (slack-message)
((user :initarg :user :type string)
(edited :initarg :edited)
(id :initarg :id)
(inviter :initarg :inviter)))
(defclass slack-reply-broadcast-message (slack-user-message)
((broadcast-thread-ts :initarg :broadcast_thread_ts :initform nil)))
(defclass slack-bot-message (slack-message)
((bot-id :initarg :bot_id :type string)
(username :initarg :username :type string :initform "")
(icons :initarg :icons)))
(defclass slack-attachment-field ()
((title :initarg :title :initform nil)
(value :initarg :value :initform nil)
(short :initarg :short :initform nil)))
(defgeneric slack-message-sender-name (slack-message team))
(defgeneric slack-message-to-string (slack-message))
(defgeneric slack-message-to-alert (slack-message))
(defgeneric slack-room-buffer-name (room))
(defun slack-room-find (id team)
(if (and id team)
(cl-labels ((find-room (room)
(string= id (oref room id))))
(cond
((string-prefix-p "F" id) (slack-file-room-obj team))
((string-prefix-p "C" id) (cl-find-if #'find-room
(oref team channels)))
((string-prefix-p "G" id) (cl-find-if #'find-room
(oref team groups)))
((string-prefix-p "D" id) (cl-find-if #'find-room
(oref team ims)))
((string-prefix-p "Q" id) (cl-find-if #'find-room
(oref team search-results)))))))
(defun slack-reaction-create (payload)
(apply #'slack-reaction "reaction"
(slack-collect-slots 'slack-reaction payload)))
(defun slack-attachment-create (payload)
(plist-put payload :fields
(mapcar #'(lambda (field) (apply #'slack-attachment-field
(slack-collect-slots 'slack-attachment-field field)))
(append (plist-get payload :fields) nil)))
(if (numberp (plist-get payload :ts))
(plist-put payload :ts (number-to-string (plist-get payload :ts))))
(if (plist-get payload :is_share)
(apply #'slack-shared-message "shared-attachment"
(slack-collect-slots 'slack-shared-message payload))
(apply #'slack-attachment "attachment"
(slack-collect-slots 'slack-attachment payload))))
(defmethod slack-message-set-attachments ((m slack-message) payload)
(let ((attachments (append (plist-get payload :attachments) nil)))
(if (< 0 (length attachments))
(oset m attachments
(mapcar #'slack-attachment-create attachments))))
m)
(defmethod slack-message-set-file ((m slack-message) _payload _team)
m)
(defmethod slack-message-set-file ((m slack-file-message) payload team)
(let ((file (slack-file-create (plist-get payload :file))))
(oset m file file)
(slack-file-set-channel file (plist-get payload :channel))
(slack-file-pushnew file team)
m))
(defmethod slack-message-set-file-comment ((m slack-message) _payload)
m)
(defmethod slack-message-set-thread ((m slack-message) team payload)
(when (slack-message-thread-parentp m)
(oset m thread (slack-thread-create m team payload))))
(defun slack-reply-broadcast-message-create (payload)
(let ((parent (cl-first (plist-get payload :attachments))))
(plist-put payload :broadcast_thread_ts (plist-get parent :ts))
(apply #'slack-reply-broadcast-message "reply-broadcast"
(slack-collect-slots 'slack-reply-broadcast-message payload))))
(cl-defun slack-message-create (payload team &key room)
(when payload
(plist-put payload :reactions (append (plist-get payload :reactions) nil))
(plist-put payload :attachments (append (plist-get payload :attachments) nil))
(plist-put payload :pinned_to (append (plist-get payload :pinned_to) nil))
(if room
(plist-put payload :channel (oref room id)))
(cl-labels
((create-message
(payload)
(let ((subtype (plist-get payload :subtype)))
(cond
((plist-member payload :reply_to)
(apply #'slack-reply "reply"
(slack-collect-slots 'slack-reply payload)))
((and subtype (string-equal "file_share" subtype))
(apply #'slack-file-share-message "file-share"
(slack-collect-slots 'slack-file-share-message payload)))
((and subtype (string-equal "file_comment" subtype))
(apply #'slack-file-comment-message "file-comment"
(slack-collect-slots 'slack-file-comment-message payload)))
((and subtype (string-equal "file_mention" subtype))
(apply #'slack-file-mention-message "file-mention"
(slack-collect-slots 'slack-file-mention-message payload)))
((and subtype (string-equal "reply_broadcast" subtype))
(slack-reply-broadcast-message-create payload))
((plist-member payload :user)
(apply #'slack-user-message "user-msg"
(slack-collect-slots 'slack-user-message payload)))
((and subtype (string= "bot_message" subtype))
(apply #'slack-bot-message "bot-msg"
(slack-collect-slots 'slack-bot-message payload)))))))
(let ((message (create-message payload)))
(when message
(slack-message-set-attachments message payload)
(oset message reactions
(mapcar #'slack-reaction-create (plist-get payload :reactions)))
(slack-message-set-file message payload team)
(slack-message-set-file-comment message payload)
(slack-message-set-thread message team payload)
message)))))
(defmethod slack-message-equal ((m slack-message) n)
(string= (oref m ts) (oref n ts)))
(defmethod slack-message-get-thread ((parent slack-message) team)
(let ((thread (oref parent thread)))
(unless thread
(setq thread (slack-thread-create parent team))
(oset parent thread thread))
thread))
(defmethod slack-message-sender-name ((m slack-message) team)
(slack-user-name (oref m user) team))
(defmethod slack-message-sender-id ((m slack-message))
(oref m user))
(defun slack-message-pins-add ()
(interactive)
(slack-message-pins-request slack-message-pins-add-url))
(defun slack-message-pins-remove ()
(interactive)
(slack-message-pins-request slack-message-pins-remove-url))
(defun slack-message-pins-request (url)
(unless (and (bound-and-true-p slack-current-team-id)
(bound-and-true-p slack-current-room-id))
(error "Call From Slack Room Buffer"))
(let* ((team (slack-team-find slack-current-team-id))
(room (slack-room-find slack-current-room-id
team))
(ts (ignore-errors (slack-get-ts))))
(unless ts
(error "Call From Slack Room Buffer"))
(cl-labels ((on-pins-add
(&key data &allow-other-keys)
(slack-request-handle-error
(data "slack-message-pins-request"))))
(slack-request
(slack-request-create
url
team
:params (list (cons "channel" (oref room id))
(cons "timestamp" ts))
:success #'on-pins-add
)))))
(defmethod slack-ts ((this slack-message))
(oref this ts))
(defun slack-message-time-stamp (message)
(seconds-to-time (string-to-number (slack-ts message))))
(defmethod slack-user-find ((m slack-message) team)
(slack-user--find (slack-message-sender-id m) team))
(defmethod slack-message-redisplay ((message slack-message) room)
(let ((buf (get-buffer (slack-room-buffer-name room))))
(when buf
(slack-buffer-replace buf message))))
(cl-defmethod slack-message-render-image ((message slack-message) team)
(let ((room (slack-room-find (oref message channel) team)))
(cl-labels
((redisplay (_image) (slack-message-redisplay message room)))
(slack-mapconcat-images
(slack-image-slice
(slack-image-create message
:success #'redisplay :error #'redisplay
:token (oref team token)))))))
(defmethod slack-message-view-image-to-string ((message slack-message) team)
(and (slack-message-has-imagep message)
(cl-labels
((open-image () (interactive)
(slack-open-image message team)))
(propertize "[View Image]"
'face '(:underline t)
'keymap (let ((map (make-sparse-keymap)))
(define-key map (kbd "RET") #'open-image)
map)))))
(defun slack-message-copy-link ()
(interactive)
(let* ((ts (slack-get-ts))
(team (slack-team-find slack-current-team-id))
(room (slack-room-find slack-current-room-id team))
(msg (or (slack-room-find-message room ts)
(slack-room-find-thread-message room ts)))
(template "https://%s.slack.com/archives/%s/p%s%s"))
(if msg
(kill-new
(format template
(oref team domain)
slack-current-room-id
(replace-regexp-in-string "\\." "" ts)
(if (slack-message-thread-messagep msg)
(format "?thread_ts=%s&cid=%s"
(oref msg thread-ts)
slack-current-room-id)
"")))
(error "Message Not Found"))))
(defmethod slack-message-star-added ((m slack-message))
(oset m is-starred t))
(defmethod slack-message-star-removed ((m slack-message))
(oset m is-starred nil))
(defun slack-message-process-star-api (url team)
(let* ((room (and team (slack-room-find slack-current-room-id team)))
(ts (slack-get-ts))
(message (and room ts (slack-room-find-message room ts))))
(when message
(slack-message-star-api-request url
(list (cons "channel" (oref room id))
(slack-message-star-api-params message))
team))))
(defun slack-message-star-api-request (url params team)
(cl-labels
((on-success (&key data &allow-other-keys)
(slack-request-handle-error
(data url))))
(slack-request
(slack-request-create
url
team
:params params
:success #'on-success))))
(defun slack-message-remove-star ()
(interactive)
(let ((team (slack-team-find slack-current-team-id))
(url slack-message-stars-remove-url))
(if (eq major-mode 'slack-file-info-mode)
(if-let* ((file-id (slack-get-file-id)))
(slack-file-process-star-api url team file-id)
(slack-file-comment-process-star-api url team))
(slack-message-process-star-api url team))))
(defun slack-message-add-star ()
(interactive)
(let ((team (slack-team-find slack-current-team-id))
(url slack-message-stars-add-url))
(if (eq major-mode 'slack-file-info-mode)
(if-let* ((file-id (slack-get-file-id)))
(slack-file-process-star-api url team file-id)
(slack-file-comment-process-star-api url team))
(slack-message-process-star-api url team))))
(defmethod slack-message-star-api-params ((m slack-message))
(cons "timestamp" (oref m ts)))
(defmethod slack-reaction-delete ((this slack-message) reaction)
(with-slots (reactions) this
(setq reactions (slack-reaction--delete reactions reaction))))
(defmethod slack-reaction-push ((this slack-message) reaction)
(push reaction (oref this reactions)))
(defmethod slack-reaction-find ((m slack-message) reaction)
(slack-reaction--find (oref m reactions) reaction))
(defmethod slack-reaction-find ((m slack-file-message) reaction)
(slack-reaction-find (oref m file) reaction))
(defmethod slack-message-reactions ((this slack-message))
(oref this reactions))
(defmethod slack-message-reactions ((this slack-file-message))
(slack-message-reactions (oref this file)))
(defmethod slack-message-get-param-for-reaction ((m slack-message))
(cons "timestamp" (oref m ts)))
(defmethod slack-message-append-reaction ((m slack-message) reaction &optional _type)
(if-let* ((old-reaction (slack-reaction-find m reaction)))
(slack-reaction-join old-reaction reaction)
(slack-reaction-push m reaction)))
(defmethod slack-message-pop-reaction ((m slack-message) reaction &optional _type)
(slack-message--pop-reaction m reaction))
(defun slack-message--pop-reaction (message reaction)
(let* ((old-reaction (slack-reaction-find message reaction))
(decl-p (< 1 (oref old-reaction count))))
(if decl-p
(cl-decf (oref old-reaction count))
(slack-reaction-delete message reaction))))
(defmacro slack-with-file-comment (id file &rest body)
(declare (indent 2) (debug t))
`(let ((file-comment (cl-find-if #'(lambda (e) (string= ,id (oref e id)))
(oref ,file comments))))
(when file-comment
,@body)))
(provide 'slack-message)
;;; slack-message.el ends here