-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
291 lines (252 loc) · 7.59 KB
/
main.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
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
// ref: https://github.com/henteko/slack_message_button_test/blob/master/main.js
const Botkit = require('botkit')
const request = require('request')
const fs = require('fs')
const URL = require('url')
const path = require('path')
const util = require('util')
/***********************************
* Setup
***********************************/
var Swagger = require('swagger-client')
// swagger endpoint of stf. For example: 'http://localhost:7100/api/v1/swagger.json'
var SWAGGER_URL = process.env.SWAGGER_URL
var AUTH_TOKEN = process.env.AUTH_TOKEN
var client = new Swagger({
url: SWAGGER_URL
, usePromise: true
, authorizations: {
accessTokenAuth: new Swagger.ApiKeyAuthorization('Authorization', 'Bearer ' + AUTH_TOKEN, 'header')
}
})
var Promise = require('bluebird')
var adb = require('adbkit')
var adbClient = adb.createClient()
var _ = require('underscore')
var sleep = require('sleep-promise')
var download = function (bot, uri, path, callback) {
request({
followAllRedirects: true,
headers: {'Authorization': 'Bearer ' + bot.config.token},
uri: uri
})
.pipe(fs.createWriteStream(path))
.on('close', function() {
callback()
}
)
}
if (!process.env.clientId || !process.env.clientSecret || !process.env.port) {
console.log('Error: Specify clientId clientSecret and port in environment')
process.exit(1)
}
var controller = Botkit.slackbot({
json_file_store: './bot_db/',
debug: false
}).configureSlackApp(
{
clientId: process.env.clientId,
clientSecret: process.env.clientSecret,
scopes: ['bot']
}
)
controller.on('create_bot',function(bot,config) {
if (_bots[bot.config.token]) {
// already online! do nothing.
} else {
bot.startRTM(function(err) {
if (!err) {
trackBot(bot)
}
bot.startPrivateConversation({user: config.createdBy},function(err,convo) {
if (err) {
console.log(err)
} else {
convo.say('I am a bot that has just joined your team')
convo.say('You must now /invite me to a channel so that I can be of use!')
}
})
})
}
})
// Handle events related to the websocket connection to Slack
controller.on('rtm_open',function(bot) {
console.log('** The RTM api just connected!')
})
controller.on('rtm_close',function(bot) {
console.log('** The RTM api just closed')
// you may want to attempt to re-open
console.log('reconnecting...')
bot.startRTM(function(err) {
if (!err) {
trackBot(bot)
}
})
})
controller.setupWebserver(process.env.port,function(err,webserver) {
controller.createWebhookEndpoints(controller.webserver)
controller.createOauthEndpoints(controller.webserver,function(err,req,res) {
if (err) {
res.status(500).send('ERROR: ' + err)
} else {
res.send('Success!')
}
})
})
var _bots = {}
function trackBot(bot) {
_bots[bot.config.token] = bot
}
controller.storage.teams.all(function(err,teams) {
if (err) {
throw new Error(err)
}
// connect all teams with bots up to slack!
for (var t in teams) {
if (teams[t].bot) {
controller.spawn(teams[t]).startRTM(function(err, bot) {
if (err) {
console.log('Error connecting bot to Slack:',err)
} else {
trackBot(bot)
}
})
}
}
})
/**************************
* Reply
**************************/
controller.on('interactive_message_callback', function(bot, message) {
console.log('interactive_message_callback')
console.log(message)
if(message.callback_id === '1-1') {
var reply = {
text: 'Do you install this apk to stf devices?',
attachments: []
}
if(message.actions[0].value != 'false') {
var fileURL = message.actions[0].value
reply.attachments.push({text: ':iine: Installing... :waiting:'})
download(bot, fileURL, '/tmp/' + path.basename(fileURL), (msg) => {
console.log('download complete')
installAPK(bot, message, fileURL)
})
} else {
reply.attachments.push({text: ':cry: Installation has been cancelled'})
}
bot.replyInteractive(message, reply)
}
})
controller.on('file_share', function(bot, message) {
// carefully examine and
// handle the message here!
// Note: Platforms such as Slack send many kinds of messages, not all of which contain a text field!
var t = {
bot: bot,
message: message
}
if(message.file.filetype === 'apk') {
console.log(message)
console.log('downloading...' + message.file.url_private)
confirm_install(t.bot, t.message)
}
})
var installAPK = (bot, message, url) => {
var apk = '/tmp/' + path.basename(url)
console.log('installng apk to all stf devices!!')
console.log('install apk' + apk)
client.then((api) => {
return api.devices.getDevices({
fields: 'serial,present,ready,using,owner,name,model'
}).then((res) => {
// check if device can be added or not
var devices = _.reject(res.obj.devices, (device) => {
console.log('Device: ', device)
return !device.present || !device.ready || device.using || device.owner
})
return Promise.map(devices, (device) => {
console.log('add device: ' + device.serial)
return api.user.addUserDevice({
device: {
serial: device.serial
, timeout: 900000
}
}).then((res) => {
if (!res.obj.success) {
throw new Error('Could not connect to device')
}
return api.user.remoteConnectUserDeviceBySerial({
serial: device.serial
})
}).then((res) => {
console.log('connecting: ' + res.obj.remoteConnectUrl)
return adbClient.connect(res.obj.remoteConnectUrl)
}).then((id) => {
// It can take a moment for the connection to happen.
console.log('waiting.. ' + id)
return sleep(7 * 1000).then(() => id)
}).then((id) => {
console.log('installing: ' + id)
return adbClient.install(id, apk)
}).then(() => {
console.log('installed! ' + device.name)
return api.user.deleteUserDeviceBySerial({
serial: device.serial
})
}).then((res) => {
if (!res.obj.success) {
throw new Error('Could not disconnect to device')
}
console.log('Device disconnected successfully!')
var reply = {
text: ':ok:' + device.name + '(' + device.model + ')'
}
bot.reply(message, reply)
})
})
})
}).then(function() {
var reply = {
text: ':ok: APK installation has been completed successfully :tada:'
}
bot.replyInteractive(message, reply)
console.log('Done.')
return true
}).catch(function(err) {
console.error('Error', err)
console.error('Something went wrong:', err.stack)
return false
})
}
var confirm_install = function(bot, message) {
var reply = {
name: 'STF',
attachments: []
}
reply.attachments.push({
title: 'Detected apk has been uploaded..',
text: message.file.url_private
})
reply.attachments.push({
title: 'Do you install this apk to stf devices?',
callback_id: '1-1',
attachment_type: 'default',
actions: [
{
"name":"flag",
"text": "OK",
"value": message.file.url_private,
"style": "primary",
"type": "button"
},
{
"name":"flag",
"text": "No, Thanks",
"value": "false",
"type": "button"
}
]
})
bot.reply(message, reply)
}