-
Notifications
You must be signed in to change notification settings - Fork 117
/
slack-message-notification.el
141 lines (119 loc) · 5.75 KB
/
slack-message-notification.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
;;; slack-message-notification.el --- message notification -*- 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 'slack-room)
(require 'slack-message)
(require 'slack-message-formatter)
(require 'slack-buffer)
(require 'slack-im)
(require 'alert)
(require 'slack-group)
(defvar alert-default-style)
(defcustom slack-message-custom-notifier nil
"Custom notification function.\ntake 3 Arguments.\n(lambda (MESSAGE ROOM TEAM) ...)."
:type 'function
:group 'slack)
(defcustom slack-message-im-notification-title-format-function
#'(lambda (team-name room-name thread-messagep)
(format "%s - %s" team-name (if thread-messagep
(format "Thread in %s" room-name)
room-name)))
"Function to format notification title for IM message.\ntake 3 Arguments.\n(lambda (TEAM-NAME ROOM-NAME THREAD-MESSAGEP) ...)."
:type 'function
:group 'slack)
(defcustom slack-message-notification-title-format-function
#'(lambda (team-name room-name thread-messagep)
(format "%s - %s" team-name (if thread-messagep
(format "Thread in #%s" room-name)
(format "#%s" room-name))))
"Function to format notification title for non-IM message.\ntake 3 Arguments.\n(lambda (TEAM-NAME ROOM-NAME THREAD-MESSAGEP) ...)."
:type 'function
:group 'slack)
(defcustom slack-alert-icon nil
"String passed as the :icon argument to `alert'."
:type '(choice file (const :tag "Stock alert icon" nil))
:group 'slack)
(defcustom slack-message-tracking-faces nil
"A list of faces to be added by `tracking` to the mode-line notifications."
:type '(repeat face)
:group 'slack)
(defun slack-message-notify (message room team)
(if slack-message-custom-notifier
(funcall slack-message-custom-notifier message room team)
(slack-message-notify-alert message room team)))
(defun slack-message-mentioned-p (message team)
(and (not (slack-message-minep message team))
(let ((body (or (slack-message-body message team) "")))
(or (string-match (format "@%s" (plist-get (oref team self) :name))
body)
(cl-find-if #'(lambda (usergroup)
(and (slack-usergroup-include-user-p
usergroup
(plist-get (oref team self) :id))
(string-match
(concat "@" (oref usergroup handle))
body)))
(oref team usergroups))))))
(defun slack-message-notify-p (message room team)
(and (not (slack-message-minep message team))
(or (slack-im-p room)
(and (slack-group-p room) (slack-mpim-p room))
(slack-room-subscribedp room team)
(slack-message-mentioned-p message team)
(slack-message-subscribed-thread-message-p message room))))
(defun slack-messages-tracking-faces (messages room team)
(when (and slack-message-tracking-faces
(cl-find-if (lambda (m)
(ignore-errors (slack-message-notify-p m room team)))
messages))
slack-message-tracking-faces))
(defun slack-message-notify-alert (message room team)
(if (slack-message-notify-p message room team)
(let ((team-name (oref team name))
(room-name (slack-room-name room team))
(text (with-temp-buffer
(goto-char (point-min))
(insert (slack-message-to-alert message team))
(slack-buffer-buttonize-link)
(buffer-substring-no-properties (point-min)
(point-max))))
(user-name (slack-message-sender-name message team)))
(if (and (eq alert-default-style 'notifier)
(slack-im-p room)
(or (eq (aref text 0) ?\[)
(eq (aref text 0) ?\{)
(eq (aref text 0) ?\<)
(eq (aref text 0) ?\()))
(setq text (concat "\\" text)))
(alert (if (slack-im-p room) text (format "%s: %s" user-name text))
:icon slack-alert-icon
:title (if (slack-im-p room)
(funcall slack-message-im-notification-title-format-function
team-name room-name (slack-thread-message-p message))
(funcall slack-message-notification-title-format-function
team-name room-name (slack-thread-message-p message)))
:category 'slack))))
(cl-defmethod slack-message-sender-equalp ((_m slack-message) _sender-id)
nil)
(cl-defmethod slack-message-minep ((m slack-message) team)
(if team
(with-slots (self-id) team
(slack-message-sender-equalp m self-id))
(slack-message-sender-equalp m (oref team self-id))))
(provide 'slack-message-notification)
;;; slack-message-notification.el ends here