forked from emacs-slack/emacs-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
slack-search.el
425 lines (379 loc) · 18.2 KB
/
slack-search.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
;;; slack-search.el --- -*- lexical-binding: t; -*-
;; Copyright (C) 2016 南優也
;; 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 'eieio)
(require 'slack-room)
(defclass slack-search-result (slack-room)
((type :initarg :type :type symbol)
(query :initarg :query :type string)
(per-page :initarg :per-page :type integer)
(total-page :initarg :total-page :type integer)
(current-page :initarg :current-page :type integer)
(total-messages :initarg :total-messages :type integer)
(sort :initarg :sort :type string)
(sort-dir :initarg :sort-dir :type string)
(last-channel-id :initarg :last-channel-id :type string :initform "")))
(defclass slack-file-search-result (slack-search-result) ())
(defclass slack-search-message (slack-message)
((user-id :initarg :user-id :type string)
(username :initarg :username :type string)
(previous-2 :initarg :previous-2)
(previous :initarg :previous)
(next :initarg :next)
(next-2 :initarg :next-2)
(info :initarg :info)))
(defclass slack-search-message-info ()
((channel-id :initarg :channel-id :type string)
(channel-name :initarg :channel-name :type string)
(permalink :initarg :permalink :type string :initform "")
(result-id :initarg :result-id :type string)))
(defun slack-search-result-id (type query sort sort-dir)
(format "Q%s%s%s%s" type query sort sort-dir))
(defun slack-search-create-message-info (payload)
(let ((channel (plist-get payload :channel)))
(make-instance 'slack-search-message-info
:channel-id (plist-get channel :id)
:channel-name (plist-get channel :name)
:permalink (plist-get payload :permalink))))
(defmethod slack-search-create-message ((room slack-search-result) payload)
(cl-labels ((create-message
(params info)
(let ((previous-2 (if (plist-get params :previous_2)
(create-message (plist-get params :previous_2)
info)))
(previous (if (plist-get params :previous)
(create-message (plist-get params :previous)
info)))
(next (if (plist-get params :next)
(create-message (plist-get params :next)
info)))
(next-2 (if (plist-get params :next_2)
(create-message (plist-get params :next_2)
info))))
(make-instance 'slack-search-message
:info info
:user-id (plist-get params :user)
:username (plist-get params :username)
:text (plist-get params :text)
:ts (plist-get params :ts)
:previous-2 previous-2
:previous previous
:next next
:next-2 next-2)))
(create-info
(params result)
(let ((channel (plist-get params :channel)))
(make-instance 'slack-search-message-info
:result-id (oref result id)
:channel-id (plist-get channel :id)
:channel-name (plist-get channel :name)
:permalink (plist-get params :permalink)))))
(let ((info (create-info payload room)))
(create-message payload info))))
(defmethod slack-search-create-message ((_room slack-file-search-result) payload)
(slack-file-create payload))
(defun slack-create-search-result (plist team type)
(let* ((result (cl-case type
('message (apply #'make-instance 'slack-search-result
(slack-collect-slots 'slack-search-result
plist)))
('file (apply #'make-instance 'slack-file-search-result
(slack-collect-slots 'slack-file-search-result
plist)))))
(result-messages (cl-loop
for message in (plist-get plist :messages)
collect (slack-search-create-message result message))))
(slack-room-set-messages result result-messages)
(with-slots (search-results) team
(setq search-results
(cl-remove-if #'(lambda (other)
(slack-room-equal-p result other))
search-results))
(push result search-results))
result))
(defun slack-search-create-result-params (data team type sort sort-dir)
(let* ((messages (cl-case type
('message (plist-get data :messages))
('file (plist-get data :files))))
(paging (plist-get messages :paging))
(query (plist-get data :query))
(plist (list :type type
:team-id (oref team id)
:id (slack-search-result-id
type query sort sort-dir)
:sort sort
:sort-dir sort-dir
:query query
:per-page (plist-get paging :count)
:total-page (plist-get paging :pages)
:current-page (plist-get paging :page)
:total-messages (plist-get paging :total)
:messages
(append (plist-get messages :matches)
nil))))
plist))
(defun slack-search-query-params ()
(let ((team (slack-team-select))
(query (read-from-minibuffer "Query: "))
(sort (completing-read "Sort: " `("score" "timestamp")
nil t))
(sort-dir (completing-read "Direction: " `("desc" "asc")
nil t)))
(list team query sort sort-dir)))
(defun slack-search-pushnew (search-result team)
(cl-pushnew search-result (oref team search-results)
:test #'slack-room-equal-p))
(defun slack-search-from-messages ()
(interactive)
(cl-destructuring-bind (team query sort sort-dir) (slack-search-query-params)
(let ((type 'message))
(cl-labels
((on-search
(&key data &allow-other-keys)
(slack-request-handle-error
(data "slack-search-from-messages")
(let* ((params (slack-search-create-result-params
data team type sort sort-dir))
(search-result (slack-create-search-result params team type)))
(slack-search-pushnew search-result team)
(funcall slack-buffer-function
(slack-room-with-buffer search-result team
(slack-room-insert-messages search-result buf team)))))))
(let ((same-search (slack-room-find (slack-search-result-id
type query sort sort-dir)
team)))
(if same-search
(progn
(message "Same Query Already Exist")
(funcall slack-buffer-function (slack-buffer-create same-search team)))
(slack-search-request-message team
query
sort
sort-dir
#'on-search)))))
))
(defun slack-search-from-files ()
(interactive)
(cl-destructuring-bind (team query sort sort-dir) (slack-search-query-params)
(let ((type 'file))
(cl-labels
((on-search
(&key data &allow-other-keys)
(slack-request-handle-error
(data "slack-search-from-files")
(let* ((params (slack-search-create-result-params
data team type sort sort-dir))
(search-result (slack-create-search-result params team 'file)))
(slack-search-pushnew search-result team)
(funcall slack-buffer-function
(slack-room-with-buffer search-result team
(slack-room-insert-messages search-result buf team)))))))
(let ((same-search (slack-room-find (slack-search-result-id type query
sort sort-dir)
team)))
(if same-search
(progn
(message "Same Query Already Exist")
(funcall slack-buffer-function (slack-buffer-create same-search team)))
(slack-search-request-file team
query
sort
sort-dir
#'on-search)))))))
(cl-defun slack-search-request-message (team query sort sort-dir success
&optional
(page 1)
(async t))
(slack-search-request team query sort sort-dir success page async
"https://slack.com/api/search.messages"))
(cl-defun slack-search-request-file (team query sort sort-dir success
&optional
(page 1)
(async t))
(slack-search-request team query sort sort-dir success page async
"https://slack.com/api/search.files"))
(defun slack-search-request (team query sort sort-dir success page async url)
(if (< 0 (length query))
(slack-request
url
team
:type "POST"
:params (list (cons "query" query)
(cons "sort" sort)
(cons "sort_dir" sort-dir)
(cons "page" (number-to-string page)))
:success success
:sync (not async))))
(defun slack-search-alist (team)
(with-slots (search-results) team
(cl-loop for s in search-results
collect (cons (slack-room-buffer-name s) s))))
(defun slack-search-select ()
(interactive)
(let* ((team (slack-team-select))
(alist (slack-search-alist team)))
(slack-select-from-list
(alist "Select Search: ")
(funcall slack-buffer-function (slack-buffer-create selected team)))))
;; protocols
(defmethod slack-room-update-mark ((_room slack-search-result) _team _msg))
(defmethod slack-room-sorted-messages ((room slack-search-result))
(copy-sequence (oref room messages)))
(defmethod slack-room-update-last-read ((room slack-search-result) msg)
(if (not (slot-exists-p msg 'info))
(progn
(oset room last-read (oref msg ts))
(oset room last-channel-id ""))
(with-slots (ts info) msg
(with-slots (channel-id) info
(oset room last-read ts)
(oset room last-channel-id channel-id)))))
(defmethod slack-search-get-index ((_search-result slack-file-search-result)
messages last-read &optional _last-chanel-id)
(cl-loop for i from 0 upto (1- (length messages))
for m = (nth i messages)
if (string= (oref m ts) last-read)
return i))
(defmethod slack-search-get-index ((_search-result slack-search-result)
messages last-read &optional last-channel-id)
(cl-loop for i from 0 upto (1- (length messages))
for m = (nth i messages)
if (and (string= (oref m ts) last-read)
(string= (oref (oref m info) channel-id)
last-channel-id))
return i))
(defmethod slack-room-latest-messages ((room slack-search-result) messages)
(with-slots (type last-read last-channel-id) room
(let* ((r-messages (reverse messages))
(nth (slack-search-get-index room r-messages
last-read last-channel-id)))
(if nth
(nreverse
(nthcdr (1+ nth) r-messages))
(copy-sequence messages)))))
(defmethod slack-room-prev-messages ((room slack-file-search-result) oldest)
(let* ((messages (reverse (oref room messages)))
(nth (slack-search-get-index room messages oldest)))
(if nth
(nreverse (nthcdr (1+ nth) messages)))))
(defmethod slack-room-prev-messages ((room slack-search-result) param)
(let* ((oldest (car param))
(channel-id (cdr param))
(messages (reverse (oref room messages)))
(nth (slack-search-get-index room messages
oldest channel-id)))
(if nth
(nreverse (nthcdr (1+ nth) messages)))))
(defmethod slack-room-prev-link-info ((room slack-file-search-result))
(with-slots (oldest) room
(oref oldest ts)))
(defmethod slack-room-prev-link-info ((room slack-search-result))
(with-slots (oldest) room
(with-slots (info ts) oldest
(cons ts (oref info channel-id)))))
(defmethod slack-message-equal ((m slack-search-message) n)
(with-slots ((m-info info) (m-ts ts)) m
(with-slots ((m-channel-id channel-id)) m-info
(with-slots ((n-info info) (n-ts ts)) n
(with-slots ((n-channel-id channel-id)) n-info
(and (string= m-channel-id n-channel-id)
(string= m-ts n-ts)))))))
(defmethod slack-room-buffer-name ((room slack-search-result))
(with-slots (query sort sort-dir team-id type) room
(let ((team (slack-team-find team-id)))
(format "%s - %s Query: %s Sort: %s Order: %s"
(oref team name)
(eieio-object-class room)
query sort sort-dir))))
(defmethod slack-message-to-string ((message slack-search-message) team)
(with-slots (info text username) message
(with-slots (channel-id permalink) info
(let* ((header (format "%s" username))
(channel (slack-room-find channel-id team))
(body (slack-message-unescape-string
(format "%s\n\n------------\nChanel: %s\nPermalink: %s"
text
(slack-room-name channel)
permalink)
team)))
(slack-message-put-header-property header)
(slack-message-put-text-property body)
(format "%s\n%s\n" header body)))))
(defmethod slack-room-set-prev-messages ((room slack-search-result) prev)
(slack-room-set-messages room (nreverse
(nconc (nreverse prev) (oref room messages)))))
(defmethod slack-room-set-messages ((room slack-search-result) messages)
(let ((msgs (nreverse messages)))
(oset room messages msgs)
(oset room latest (car (last msgs)))
(oset room oldest (car msgs))))
(defmethod slack-room-history ((room slack-search-result) team
&optional
oldest after-success async)
(cl-labels
((on-history
(&key data &allow-other-keys)
(slack-request-handle-error
(data "slack-room-history")
(let* ((matches (cl-case (eieio-object-class room)
('slack-search-result (plist-get data :messages))
('slack-file-search-result (plist-get data :files))))
(messages (cl-loop
for match across (plist-get matches :matches)
collect (slack-search-create-message room match))))
(oset room current-page
(plist-get (plist-get matches :paging) :page))
(if oldest
(slack-room-set-prev-messages room messages)
(let ((init-msg (make-instance 'slack-search-message
:ts "0" :info
(make-instance 'slack-search-message-info
:channel-id ""))))
(slack-room-update-last-read room init-msg))
(slack-room-set-messages room messages))
(if after-success
(funcall after-success))))))
(let* ((current-page (oref room current-page))
(total-page (oref room total-page))
(next-page (if oldest
(1+ current-page)
1)))
(with-slots (query sort sort-dir) room
(cl-case (eieio-object-class room)
('slack-search-result
(slack-search-request-message team
query
sort
sort-dir
#'on-history
next-page
async))
('slack-file-search-result
(slack-search-request-file team
query
sort
sort-dir
#'on-history
next-page
async)))))))
(defmethod slack-room-setup-buffer ((room slack-search-result) buf)
(with-current-buffer buf
(slack-info-mode)
(slack-room-insert-previous-link room buf)
(add-hook 'kill-buffer-hook 'slack-reset-room-last-read nil t)))
(provide 'slack-search)
;;; slack-search.el ends here