Sharkey/src/api/service/github.ts

92 lines
2.7 KiB
TypeScript
Raw Normal View History

2017-02-11 23:27:47 +02:00
import * as EventEmitter from 'events';
2017-01-31 17:12:49 +02:00
import * as express from 'express';
2017-02-11 23:39:37 +02:00
const crypto = require('crypto');
2017-01-31 17:43:06 +02:00
import User from '../models/user';
2017-01-31 17:12:49 +02:00
import config from '../../conf';
2017-01-31 17:43:06 +02:00
module.exports = async (app: express.Application) => {
2017-01-31 17:12:49 +02:00
if (config.github_bot == null) return;
2017-01-31 17:43:06 +02: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 23:27:47 +02:00
const handler = new EventEmitter();
2017-01-31 17:12:49 +02:00
2017-02-11 23:27:47 +02:00
app.post('/hooks/github', (req, res, next) => {
2017-02-11 23:39:37 +02:00
if ((new Buffer(req.headers['x-hub-signature'])).equals(new Buffer('sha1=' + crypto.createHmac('sha1', config.github_bot.hook_secret).update(JSON.stringify(req.body)).digest('hex')))) {
2017-02-11 23:27:47 +02:00
handler.emit(req.headers['x-github-event'], req.body);
2017-02-16 13:08:28 +02:00
res.sendStatus(200);
2017-02-11 23:27:47 +02:00
} else {
res.sendStatus(400);
}
});
2017-01-31 17:12:49 +02:00
2017-01-31 21:25:02 +02:00
handler.on('push', event => {
2017-02-11 23:44:16 +02:00
const ref = event.ref;
2017-01-31 21:25:02 +02:00
if (ref != 'refs/heads/master') return;
2017-02-11 23:44:16 +02:00
const pusher = event.pusher;
const compare = event.compare;
2017-02-28 14:29:16 +02:00
post(`Pushed by **${pusher.name}**\nCompare changes: ${compare}`);
2017-01-31 17:12:49 +02:00
});
2017-01-31 17:43:06 +02:00
handler.on('issues', event => {
2017-02-11 23:44:16 +02:00
const issue = event.issue;
const action = event.action;
2017-01-31 17:43:06 +02:00
let title: string;
2017-01-31 21:07:30 +02:00
switch (action) {
2017-01-31 21:25:02 +02:00
case 'opened': title = 'New Issue'; break;
case 'closed': title = 'Issue Closed'; break;
case 'reopened': title = 'Issue Reopened'; break;
2017-01-31 18:04:32 +02:00
default: return;
2017-01-31 17:43:06 +02:00
}
2017-01-31 21:07:30 +02:00
post(`${title}: ${issue.number}${issue.title}\n${issue.html_url}`);
2017-01-31 17:43:06 +02:00
});
2017-01-31 21:25:02 +02:00
handler.on('issue_comment', event => {
2017-02-11 23:44:16 +02:00
const issue = event.issue;
const comment = event.comment;
const action = event.action;
2017-01-31 21:25:02 +02:00
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-17 03:25:23 +02:00
handler.on('watch', event => {
2017-02-11 23:44:16 +02:00
const sender = event.sender;
2017-02-25 14:18:56 +02:00
post(`Starred by ${sender.login}`);
2017-02-07 16:52:58 +02:00
});
2017-01-31 21:25:02 +02:00
handler.on('fork', event => {
2017-02-11 23:44:16 +02:00
const repo = event.forkee;
2017-02-07 16:52:58 +02:00
post(`🍴Forked:\n${repo.html_url}`);
2017-01-31 21:25:02 +02:00
});
handler.on('pull_request', event => {
2017-02-11 23:44:16 +02:00
const pr = event.pull_request;
const action = event.action;
2017-01-31 21:25:02 +02:00
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 17:12:49 +02:00
};