2017-02-11 15:27:47 -06:00
|
|
|
|
import * as EventEmitter from 'events';
|
2017-01-31 09:12:49 -06:00
|
|
|
|
import * as express from 'express';
|
2017-01-31 09:43:06 -06:00
|
|
|
|
import User from '../models/user';
|
2017-01-31 09:12:49 -06:00
|
|
|
|
import config from '../../conf';
|
|
|
|
|
|
2017-01-31 09:43:06 -06:00
|
|
|
|
module.exports = async (app: express.Application) => {
|
2017-01-31 09:12:49 -06:00
|
|
|
|
if (config.github_bot == null) return;
|
|
|
|
|
|
2017-01-31 09:43:06 -06:00
|
|
|
|
const bot = await User.findOne({
|
|
|
|
|
username_lower: config.github_bot.username.toLowerCase()
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (bot == null) {
|
|
|
|
|
console.warn(`GitHub hook bot specified, but not found: @${config.github_bot.username}`);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const post = text => require('../endpoints/posts/create')({ text }, bot);
|
|
|
|
|
|
2017-02-11 15:27:47 -06:00
|
|
|
|
const handler = new EventEmitter();
|
2017-01-31 09:12:49 -06:00
|
|
|
|
|
2017-02-11 15:27:47 -06:00
|
|
|
|
app.post('/hooks/github', (req, res, next) => {
|
|
|
|
|
if (req.headers['x-hub-signature'] == config.github_bot.hook_secret) {
|
|
|
|
|
handler.emit(req.headers['x-github-event'], req.body);
|
|
|
|
|
} else {
|
|
|
|
|
res.sendStatus(400);
|
|
|
|
|
}
|
|
|
|
|
});
|
2017-01-31 09:12:49 -06:00
|
|
|
|
|
2017-01-31 13:25:02 -06:00
|
|
|
|
handler.on('push', event => {
|
|
|
|
|
const ref = event.payload.ref;
|
|
|
|
|
if (ref != 'refs/heads/master') return;
|
|
|
|
|
const pusher = event.payload.pusher;
|
|
|
|
|
const compare = event.payload.compare;
|
|
|
|
|
post(`Pushed! (Pusher: ${pusher.name})\nCompare changes: ${compare}`);
|
2017-01-31 09:12:49 -06:00
|
|
|
|
});
|
2017-01-31 09:43:06 -06:00
|
|
|
|
|
|
|
|
|
handler.on('issues', event => {
|
2017-01-31 13:07:30 -06:00
|
|
|
|
const issue = event.payload.issue;
|
|
|
|
|
const action = event.payload.action;
|
2017-01-31 09:43:06 -06:00
|
|
|
|
let title: string;
|
2017-01-31 13:07:30 -06:00
|
|
|
|
switch (action) {
|
2017-01-31 13:25:02 -06:00
|
|
|
|
case 'opened': title = 'New Issue'; break;
|
|
|
|
|
case 'closed': title = 'Issue Closed'; break;
|
|
|
|
|
case 'reopened': title = 'Issue Reopened'; break;
|
2017-01-31 10:04:32 -06:00
|
|
|
|
default: return;
|
2017-01-31 09:43:06 -06:00
|
|
|
|
}
|
2017-01-31 13:07:30 -06:00
|
|
|
|
post(`${title}: ${issue.number}「${issue.title}」\n${issue.html_url}`);
|
2017-01-31 09:43:06 -06:00
|
|
|
|
});
|
2017-01-31 13:25:02 -06:00
|
|
|
|
|
|
|
|
|
handler.on('issue_comment', event => {
|
|
|
|
|
const issue = event.payload.issue;
|
|
|
|
|
const comment = event.payload.comment;
|
|
|
|
|
const action = event.payload.action;
|
|
|
|
|
let text: string;
|
|
|
|
|
switch (action) {
|
|
|
|
|
case 'created': text = `Comment to「${issue.title}」:${comment.user.login}「${comment.body}」\n${comment.html_url}`; break;
|
|
|
|
|
default: return;
|
|
|
|
|
}
|
|
|
|
|
post(text);
|
|
|
|
|
});
|
|
|
|
|
|
2017-02-07 08:52:58 -06:00
|
|
|
|
handler.on('started', event => {
|
|
|
|
|
const sender = event.payload.sender;
|
|
|
|
|
post(`⭐️Started by ${sender.login}`);
|
|
|
|
|
});
|
|
|
|
|
|
2017-01-31 13:25:02 -06:00
|
|
|
|
handler.on('fork', event => {
|
|
|
|
|
const repo = event.payload.forkee;
|
2017-02-07 08:52:58 -06:00
|
|
|
|
post(`🍴Forked:\n${repo.html_url}`);
|
2017-01-31 13:25:02 -06:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
handler.on('pull_request', event => {
|
|
|
|
|
const pr = event.payload.pull_request;
|
|
|
|
|
const action = event.payload.action;
|
|
|
|
|
let text: string;
|
|
|
|
|
switch (action) {
|
|
|
|
|
case 'opened': text = `New Pull Request:「${pr.title}」\n${pr.html_url}`; break;
|
|
|
|
|
case 'reopened': text = `Pull Request Reopened:「${pr.title}」\n${pr.html_url}`; break;
|
|
|
|
|
case 'closed':
|
|
|
|
|
text = pr.merged
|
|
|
|
|
? `Pull Request Merged!:「${pr.title}」\n${pr.html_url}`
|
|
|
|
|
: `Pull Request Closed:「${pr.title}」\n${pr.html_url}`;
|
|
|
|
|
break;
|
|
|
|
|
default: return;
|
|
|
|
|
}
|
|
|
|
|
post(text);
|
|
|
|
|
});
|
2017-01-31 09:12:49 -06:00
|
|
|
|
};
|