-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
178 lines (144 loc) · 5.05 KB
/
index.js
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
// Botkit bot
const Botkit = require('botkit');
const controller = Botkit.slackbot();
const bot = controller.spawn({
token: process.env.SLACK_BOT_TOKEN
});
// Slack web client
const { WebClient } = require('@slack/client');
const slack = new WebClient(process.env.SLACK_TOKEN);
// Start bot RTM
bot.startRTM((err, bot, payload) => {
if (err) {
console.error('Could not connect to Slack', err);
throw new Error('Could not connect to Slack');
}
console.log('startRTM', payload);
});
// Check if user has admin privileges
const userIsAdmin = (user, cb) =>
slack.users.info(user)
.then(({ user: { is_admin } }) => {
if (!is_admin) {
return bot.reply(message, 'Only admin users allowed.');
}
cb();
});
// Types of file to delete
const types = ['images', 'zips', 'pdfs'].join(',');
/**
* Iterate over all files from a certain page, based on a page count
* @param {function} iterator
* @param {object} options
*/
const iteratePageFiles = (iterator, options = {}) => {
const listOptions = {
page: 1,
count: 5,
types,
...options
};
return slack.files.list(listOptions)
.then(response => {
console.log('slack.files', response);
const { paging: { pages, total }, files } = response;
const mapFiles = files.map(iterator);
return Promise.all(mapFiles)
.then(() => {
if (listOptions.page < pages) {
return iteratePageFiles(iterator, {
...listOptions, page: listOptions.page + 1
});
}
return total;
});
});
};
// Events to listen for in channels and messages
const events = ['direct_message', 'direct_mention', 'mention'];
/**
* Delete all files in the Slack team
* @command rm -rf /
*/
controller.hears('rm -rf /', events, (bot, message) => {
const { user } = message;
const deleteFiles = ({ id }) => slack.files.delete(id);
// Check if user has admin privileges
userIsAdmin(user, () => {
bot.reply(message, 'Cleaning the batcave :loading:');
console.log('`rm -rf .`.message', message);
iteratePageFiles(deleteFiles)
.then(total => {
const cleanMessage = 'The batcave is now clean :batman:';
const reply = total ?
`Deleted ${total} bats :white_check_mark: ${cleanMessage}` :
'The batcave is already clean :batman:';
bot.reply(message, reply);
})
.catch(error => {
console.error('deletePageFiles', error);
bot.reply(message, 'The bats won :no_entry:');
});
});
});
/**
* List all files in the Slack team
* @command ls /
*/
controller.hears('ls /', events, (bot, message) => {
const { user } = message;
userIsAdmin(user, () => {
iteratePageFiles(({ title, name }) => {
const reply = title === name ? title : `${title}: \`${name}\``;
return new Promise(resolve => bot.whisper(message, reply, resolve));
})
.then(total => {
const reply = total ?
`There are ${total} bats in the batcave :batman:` :
'There are no bats :batman:';
bot.reply(message, reply);
});
});
});
/**
* Delete personal files in the Slack team
* @command rm -rf ~
*/
controller.hears('rm -rf ~', events, (bot, message) => {
const { user } = message;
const deleteFiles = ({ id }) => slack.files.delete(id);
bot.reply(message, 'Cleaning your personal batcave :loading:');
console.log('`rm -rf ~`.message', message);
iteratePageFiles(deleteFiles, { user })
.then(total => {
const cleanMessage = 'Your batcave is now clean :batman:';
const reply = total ?
`Deleted ${total} bats :white_check_mark: ${cleanMessage}` :
'Your batcave is already clean :batman:';
bot.reply(message, reply);
})
.catch(error => {
console.error('deletePageFiles', error);
bot.reply(message, 'The bats won :no_entry:');
});
});
/**
* List personal files in the Slack team
* @command ls ~
*/
controller.hears('ls ~', events, (bot, message) => {
const { user } = message;
const listFiles = ({ title, name }) => {
const reply = title === name ? title : `${title}: \`${name}\``;
return new Promise(resolve => bot.whisper(message, reply, resolve));
};
iteratePageFiles(listFiles, { user })
.then(total => {
const reply = total ?
`There are ${total} bats in your batcave :batman:` :
'There are no bats :batman:';
bot.reply(message, reply);
});
});
const welcome = "I'm botman.";
module.exports = () => welcome;