rudeshark.net/src/api/service/github.ts
2017-02-01 04:04:18 +09:00

44 lines
1.2 KiB
TypeScript

import * as express from 'express';
const createHandler = require('github-webhook-handler');
import User from '../models/user';
import config from '../../conf';
module.exports = async (app: express.Application) => {
if (config.github_bot == null) return;
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);
const handler = createHandler({
path: '/hooks/github',
secret: config.github_bot.hook_secret
});
app.post('/hooks/github', handler);
handler.on('*', event => {
console.dir(event);
});
handler.on('issues', event => {
const info = event.payload;
let title: string;
switch (info.action) {
case 'opened': title = 'Issueが立ちました'; break;
case 'closed': title = 'Issueが閉じられました'; break;
case 'reopened': title = 'Issueが開きました'; break;
default: return;
}
const text = `${title}: ${info.issue.number}${info.issue.title}\n${info.issue.html_url}`;
post(text);
});
};