mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 16:15:39 +01:00
40 lines
1.1 KiB
JavaScript
40 lines
1.1 KiB
JavaScript
var request = require('request');
|
|
var app = require('../app.js');
|
|
var logger = require('../logging.js');
|
|
|
|
var regex = /[^\<\\]\#(\d+)/ig;
|
|
|
|
exports.trigger = function(message) {
|
|
return new RegExp(regex).test(message.content);
|
|
}
|
|
|
|
exports.execute = function(message) {
|
|
let matcher = new RegExp(regex);
|
|
let match = matcher.exec(message.content);
|
|
let matched = [];
|
|
|
|
while(match != null) {
|
|
if(matched.indexOf(match[1]) == -1) {
|
|
matched.push(match[1]);
|
|
} else {
|
|
match = matcher.exec(message.content);
|
|
continue;
|
|
}
|
|
|
|
// We do not want to automatically match old issues / PRs.
|
|
// This usually happens when someone messes up pining another person or
|
|
// in general conversation.
|
|
// ex: You're #1!
|
|
if (match[1] <= 2000) { return; }
|
|
|
|
let url = `https://github.com/citra-emu/citra/pull/${match[1]}`;
|
|
request(url, function (error, response, body) {
|
|
if (!error && response.statusCode == 200) {
|
|
message.channel.sendMessage(`Github Pull Request: ${url}`);
|
|
}
|
|
});
|
|
|
|
match = matcher.exec(message.content);
|
|
}
|
|
}
|