2017-01-31 09:12:49 -06:00
|
|
|
import * as express from 'express';
|
|
|
|
const createHandler = require('github-webhook-handler');
|
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-01-31 09:12:49 -06:00
|
|
|
const handler = createHandler({
|
|
|
|
path: '/hooks/github',
|
|
|
|
secret: config.github_bot.hook_secret
|
|
|
|
});
|
|
|
|
|
|
|
|
app.post('/hooks/github', handler);
|
|
|
|
|
|
|
|
handler.on('*', event => {
|
|
|
|
console.dir(event);
|
|
|
|
});
|
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 09:43:06 -06:00
|
|
|
case 'opened': title = 'Issueが立ちました'; break;
|
|
|
|
case 'closed': title = 'Issueが閉じられました'; break;
|
|
|
|
case 'reopened': title = 'Issueが開きました'; 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 09:12:49 -06:00
|
|
|
};
|