This repository has been archived by the owner on Aug 20, 2018. It is now read-only.
forked from AutomatedTester/automation-services-bot
-
Notifications
You must be signed in to change notification settings - Fork 9
/
bot.js
320 lines (284 loc) · 11.2 KB
/
bot.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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
// Requires
var irc = require('irc'),
http = require('http'),
https = require('https'),
users = require('./users.js'),
secret = require('./secret.js');
// read nick, channel and Mongo uristring from command line arguments if they exist
var CHANNEL = (process.argv[3]) ? process.argv[3] : '#mozwebqa',
NICK = (process.argv[2]) ? process.argv[2] : 'mozwebqabot',
uristring = (process.argv[4]) ? process.argv[4] :
process.env.MONGOLAB_URI ||
process.env.MONGOHQ_URL ||
'mongodb://localhost/' + NICK + 'Db';
users.setUpMongo(uristring);
var ircServer = 'irc.mozilla.org',
nick = NICK,
options = {
channels: [CHANNEL],
autoConnect: true,
autoRejoin: true,
debug: true
},
client = new irc.Client(ircServer, nick, options),
help = { ":help" : "This is Help! :)",
":gist" : "Gives you a link to Pastebin",
":yt" : "Pass in your search and I will give you a YouTube link",
"Bugzilla" : "Just add bug xxxxxx to a conversation and it will show a summary of the bug",
":source" : "Returns the GitHub URL for me",
":list" : "Returns the URL to the group's mailing list",
":meeting" : "Shows details and a link to the meetings page",
":vidyo" : "Give you details for joining our Vidyo room",
":newissue" : "Just add :newissue project to a conversation and it will show a summary of the bug",
":github" : "Show a list of GitHub projects",
":getInvolved" : "Provide some information on getting involved in Web QA testing",
":trivia [number]" : "Show number-based trivia from numbersapi.com",
":year [year]" : "Show year-based trivia from numbersapi.com",
":date [day/month]" : "Show date-based trivia from numbersapi.com",
":today" : "Show date-based trivia from numbersapi.com"
},
source = 'https://github.com/mozilla/mozwebqa-bot',
github = {
"flightdeck": "mozilla/FlightDeck-selenium",
"affiliates": "mozilla/Affiliates-Tests",
"moztrap": "mozilla/moztrap-tests",
"addons": "mozilla/Addon-Tests",
"mdn": "mozilla/mdn-tests",
"mcom": "mozilla/mcom-tests",
"snippets": "mozilla/snippets-tests",
"sumo": "mozilla/sumo-tests",
"socorro": "mozilla/Socorro-Tests",
"marketing-template": "mozilla/marketing-project-template",
"templates": "mozilla/mozwebqa-test-templates",
"qmo": "mozilla/qmo-tests",
"wiki": "mozilla/wiki-tests",
"bouncer": "mozilla/bouncer-tests",
"marketplace": "mozilla/marketplace-tests",
"bidpom": "mozilla/bidpom"
};
secret.addins(client, NICK, CHANNEL);
client.addListener('join'+CHANNEL, function (nick) {
if (nick === 'firebot' || nick === NICK) {
return;
}
var joinMessage = "Welcome to "+CHANNEL+" "+nick+"! We love visitors! I am the resident channel robot and I can help you figure out how to get involved. Please visit https://wiki.mozilla.org/QA/Execution/Web_Testing/Mozwebqabot to learn more."
users.logUser(nick);
users.greetIfSeen(nick, joinMessage, client, CHANNEL);
});
client.addListener('message', function (from, to, message) {
if (from === 'firebot' || from === NICK) {
console.log("ignoring firebot");
return;
}
console.log(from + ' => ' + to + ': ' + message);
if (message.search(nick) >= 0){
if (message.search(/ hi[ $]?/i) >= 1){
client.say(to, "Hi hi " + from);
}
}
if (message.search(/:welcome/i) === 0){
client.say(to, "Welcome to the Mozilla Web QA IRC channel. We love visitors! Please say hi and let us know how we can help you help us.");
}
if (message.search(/:getinvolved/i) === 0){
client.say(to, "Hey " + from + " that's awesome that you'd like to get involved. Please tell me, are you interested in :Manual or :Automated testing.");
}
if (message.search(/:automated/i) === 0){
client.say(to, "Very cool, " + from + ", I love automated testing too! You can find out more at https://quality.mozilla.org/teams/web-qa/#Automated, or just ask a question here.");
}
if (message.search(/:manual/i) === 0){
client.say(to, "Very cool, " + from + ", I love manual testing too! You can find out more at https://quality.mozilla.org/teams/web-qa/#Manual, or just ask a question here.");
}
if (message.search(/:gist/i) === 0){
client.say(to, "Please paste >3 lines of text to http://pastebin.mozilla.org");
}
if (message.search(/:help/i) === 0){
for (var item in help){
client.say(from, item + " : " + help[item]);
}
}
if (message.search(/:yt/i) === 0){
var options = {
host: 'gdata.youtube.com',
port: 443,
path: "/feeds/api/videos?q=" + message.substring(4).replace(/ /g, '+') + "&alt=json",
method: 'GET'
};
var req = https.request(options, function(res) {
var apiResult = '';
res.on('data', function(d) {
apiResult += d;
});
res.on('end', function(){
try{
data = JSON.parse(apiResult);
title = data["feed"]["entry"][0]["title"]["$t"]
link = data["feed"]["entry"][0]["link"][0]["href"];
client.say(to, title + " -- " + link);
} catch(e) {
console.error(e.message);
}
});
});
req.end();
}
if (message.search(/bug \d+/i) >= 0 || message.search(/https:\/\/bugzilla.mozilla.org\/show_bug.cgi\?id=(\d+)/i) >= 0 ){
var bugID = "";
if (/bug (\d+)/i.exec(message)) {
bugID = /bug (\d+)/i.exec(message)[1]
} else {
bugID = /https:\/\/bugzilla.mozilla.org\/show_bug.cgi\?id=(\d+)/i.exec(message)[1];
}
var options = {
host: 'api-dev.bugzilla.mozilla.org',
port: 443,
path: "/latest/bug?id=" + bugID,
method: 'GET'
};
var apiResult = ''
var req = https.request(options, function(res) {
res.on('data', function(d) {
apiResult += d;
});
res.on('end', function(){
var returnMessage = '';
try{
data = JSON.parse(apiResult);
url = "https://bugzilla.mozilla.org/show_bug.cgi?id=" + bugID;
if (data["bugs"].length === 0){
returnMessage = "I cannot see this bug, try clicking on " + url + " to see if it exists";
client.say(to, returnMessage);
return;
}
summary = data["bugs"]["0"]["summary"];
severity = data["bugs"]["0"]["severity"];
status = data["bugs"]["0"]["status"];
resolution = data["bugs"]["0"]["resolution"];
returnMessage = "Bug " + url + " " + severity + ", " + status + " " + resolution + ", " + summary;
client.say(to, returnMessage);
}catch(e){
console.error(e);
}
});
});
req.on('error', function (error) {
console.error(error);
client.say(to, "Unfortunately, there was an error trying to retrieve that bug, please try again. If this happens again, please ping :AutomatedTester");
});
req.end();
}
if (message.search(/:source/i) === 0){
client.say(to, 'My details and code lives at ' + source + '. Go have a look!');
}
if (message.search(/:list/i) === 0){
client.say(to, 'mozwebqa mailing list https://mail.mozilla.org/listinfo/mozwebqa');
}
if (message.search(/:meeting/i) === 0){
client.say(to, "Come join us at 9AM Pacific every Thursday!");
client.say(to, "Meeting notes are available at https://wiki.mozilla.org/QA/Execution/Web_Testing#Meeting_Notes")
vidyo(to)
}
if (message.search(/:vidyo/i) === 0){
vidyo(to);
}
if (message.search(/:newissue/i) >= 0){
var project = /:newissue ([a-z-_]+)/.exec(message);
if (project !== null){
if (project[1] in github){
client.say(to, "Please raise an issue at https://github.com/" + github[project[1]] + "/issues/new");
} else {
client.say(to, "Sorry, I don't know of that project. Please raise an issue at " + source + '/issues/new/ if I should know about it!');
}
} else {
client.say(to, "Please use the syntax :newissue project. You can get a list of projects by calling :github");
}
}
if (message.search(/:issues/i) >= 0){
var project = /:issues ([a-z-_]+)/.exec(message);
if (project !== null){
var key = to.substring(1).toLowerCase();
console.log(key);
if (github[key] && github[key][project[1]]){
client.say(to, "Issues for " + project[1] + " can be found at " + github[key][project[1]] + "/issues");
} else {
client.say(to, "Sorry, I don't know of that project. Please raise an issue on " +
source + "/issues/new if I should know about it");
}
} else {
client.say(to, "Please use the syntax :issues project. You can get a list of projects by calling :github");
}
}
if (message.search(/:github/i) === 0){
for (var item in github){
client.say(from, item + ": https://github.com/" + github[item]);
}
}
if (message.search(/:trivia/i) === 0) {
var number = message.indexOf(' ') !== -1 ? message.split(' ')[1] : 'random';
respond(to, 'trivia', number);
}
if (message.search(/:year/i) === 0) {
var number = message.indexOf(' ') !== -1 ? message.split(' ')[1] : 'random';
respond(to, 'year', number);
}
if (message.search(/:date/i) === 0) {
var number = message.indexOf(' ') !== -1 ? message.split(' ')[1] : 'random';
respond(to, 'date', number);
}
if (message.search(/:today/i) === 0) {
var now = new Date();
month = now.getMonth() + 1;
day = now.getDate();
respond(to, 'date', month + '/' + day);
}
});
client.addListener('error', function(message) {
console.log('error: ', message);
});
function vidyo(to) {
client.say(to, "Our Vidyo room is WebQA (8824)")
client.say(to, "Public link: https://v.mozilla.com/flex.html?roomdirect.html&key=Tc08xVjMQmaVscjhN5jlm7mDknY");
client.say(to, "Joining by phone: https://wiki.mozilla.org/Teleconferencing#Dialing_In");
client.say(to, "For information on Vidyo: https://wiki.mozilla.org/Vidyo");
}
function respond(to, type, number) {
if (number !== 'random') {
if (type === 'date') {
date = number.split('/');
if (date.length !== 2 || isNaN(date[0]) || isNaN(date[1])) {
client.say(to, "That's not a valid date! Try again with the format :" + type + ' month/day');
return;
}
} else if (isNaN(number)) {
client.say(to, "That's not a valid number! Try again with the format :" + type + ' number');
return;
}
}
options = {
host: 'numbersapi.com',
port: 80,
path: '/' + number + '/' + type,
headers: { 'content-type': 'application/json' },
method: 'GET'
};
var req = http.request(options, function(res) {
var apiResult = '';
res.on('data', function(chunk) {
apiResult += chunk;
});
res.on('end', function() {
try {
data = JSON.parse(apiResult);
text = data['text'];
client.say(to, text + ' (http://numbersapi.com)');
} catch(e) {
console.error(e.message);
}
});
});
req.end();
}
//make server to keep heroku happy
https.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('IRC bot at '+CHANNEL+' on irc.mozilla.org\n');
}).listen(process.env.PORT||8080);