forked from sdslabs/jinora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
announcements.coffee
56 lines (49 loc) · 2.08 KB
/
announcements.coffee
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
# ioObject is the express().http().io().io object for communicating with clients
module.exports = (ioObject, slackObject) ->
io = ioObject
slack = slackObject
announcement =
chatHeading: "#Chat with " + process.env.ORGANIZATION_NAME
pageTitle: "Chat with " + process.env.ORGANIZATION_NAME
notificationTitle: process.env.ORGANIZATION_NAME + " chat"
text: ""
showMembers: if !!process.env.HIDE_ADMIN_NAMES then false else true
helpText = """
*Usage:*
\t!ban nick <nick> _to ban a nick._
\t!ban user <nick> _to ban the user session corresponding to given nick._
\t!unban nick <nick>
\t!unban user <nick>
\t!announcement _to see the current announcement._
\t!announce <announcement> _to change announcement._
\t!announce - _to remove announcement._
\t!info <nick> _to get user info._
\t!clear _to remove all the latest messages from the public view._
\t!clear <x> _to remove only the last x messages from public view._
\t!users _to show a list of online users._
\t!connectnotify <on|off> _to switch connect notifications on or off._
\t!help _to show this message._
"""
io.route 'announcement:demand', (req)->
req.io.emit 'announcement:data', announcement
showHelp : ->
slack.postMessage helpText, process.env.SLACK_CHANNEL, "Jinora"
interpret : (message, adminNick) ->
index = message.indexOf(" ")
command = message.substr(0, index)
content = message.substr(index + 1)
if index == -1
command = message
content = ""
command = command.toLowerCase()
if command == "announcement"
text = "Current announcement is:\n#{announcement.text}"
slack.postMessage text, process.env.SLACK_CHANNEL, "Jinora"
if command == "announce"
if content == ""
slack.postMessage helpText, process.env.SLACK_CHANNEL, "Jinora"
return
announcement['text'] = content
io.broadcast 'announcement:data',announcement
text = "*#{adminNick}* changed announcement to:\n#{announcement.text}"
slack.postMessage text, process.env.SLACK_CHANNEL, "Jinora"