about summary refs log tree commit diff
path: root/configs/shared/emacs/.emacs.d/elpa/slack-20180712.2222/slack-slash-commands.el
blob: ed554fe2b2d39b8d8ec0ab75f6eabee3c391b0e0 (plain) (blame)
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
;;; slack-slash-commands.el ---                      -*- lexical-binding: t; -*-

;; Copyright (C) 2017

;; Author:  <yuya373@yuya373>
;; 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:
(defvar slack-slash-commands-map
  '(("active" . slack-slash-commands-active)
    ("away" . slack-slash-commands-away)
    ("dnd" . slack-slash-commands-dnd)
    ("leave" . slack-slash-commands-leave)
    ("join" . slack-slash-commands-join)
    ("remind" . slack-slash-commands-remind)
    ("shrug" . slack-slash-commands-shrug)
    ("status" . slack-slash-commands-status)
    ("who" . slack-slash-commands-who)
    ("dm" . slack-slash-commands-dm)))

(defvar slack-slash-commands-available
  (mapcar #'car slack-slash-commands-map))

(defun slack-slash-commands-parse (text)
  (if (string-prefix-p "/" text)
      (let* ((maybe-command (car (split-string (substring text 1) " ")))
             (command (cl-find maybe-command slack-slash-commands-available
                               :test #'string=)))
        (when command
          (cons command (cdr (split-string text " ")))))))

(defun slack-slash-commands-find (command)
  (cdr (cl-assoc command slack-slash-commands-map :test #'string=)))

(defun slack-slash-commands-execute (command team)
  (let ((command (car command))
        (args (cdr command)))
    (funcall (slack-slash-commands-find command) team args)))

(defun slack-slash-commands-active (team _args)
  ;; https://api.slack.com/docs/presence-and-status#user_presence
  ;; Setting presence back to auto indicates that the automatic status should be used instead. There's no way to force a user status to active.
  (slack-request-set-presence team "auto"))

(defun slack-slash-commands-away (team _args)
  (slack-request-set-presence team))

(defun slack-slash-commands-leave (team _args)
  (slack-channel-leave team t))

(defun slack-slash-commands-join (team _args)
  (slack-channel-join team t))

(defun slack-slash-commands-remind (team _args)
  (slack-reminder-add team))

(defun slack-slash-commands-dnd (team args)
  "[some description of time, see `slack-parse-time-string']"
  (let ((time (car args))
        (user (slack-user--find (oref team self-id) team)))
    (if (or (not (slack-user-dnd-in-range-p user))
            time)
        (slack-request-dnd-set-snooze team time)
      (slack-request-dnd-end-dnd team))))
;; ¯\_(ツ)_/¯
(defun slack-slash-commands-shrug (_team messages)
  "[your message]"
  (slack-message--send (format "%s ¯\\_(ツ)_/¯"
                               (mapconcat #'identity messages " "))))

(defun slack-slash-commands-status (team args)
  "[clear] or [:your_new_status_emoji:] [your new status message]"
  (let ((emoji (car args))
        (text (cdr args)))
    (if (string= emoji "clear")
        (slack-user-set-status-request team "" "")
      (if (string-prefix-p ":" emoji)
          (slack-user-set-status-request team emoji (mapconcat #'identity text " "))
        (slack-user-set-status-request team "" (mapconcat #'identity args " "))))))

(defun slack-slash-commands-who (_team _args)
  (slack-room-user-select))

(defun slack-slash-commands-dm (team args)
  "@user [your message]"
  (let* ((user-name (substring (car args) 1))
         (text (mapconcat #'identity (cdr args) " "))
         (user (slack-user-find-by-name user-name team)))
    (unless user
      (error "Invalid user name: %s" (car args)))
    (cl-labels
        ((send-message
          ()
          (slack-message-send-internal
           text
           (oref (slack-im-find-by-user-id (plist-get user :id)
                                           team)
                 id)
           team)))
      (if (slack-im-find-by-user-id (plist-get user :id) team)
          (send-message)
        (slack-im-open user #'send-message)))))

(provide 'slack-slash-commands)
;;; slack-slash-commands.el ends here