rudeshark.net/src/api/service/github.ts

44 lines
1.2 KiB
TypeScript
Raw Normal View History

2017-01-31 16:12:49 +01:00
import * as express from 'express';
const createHandler = require('github-webhook-handler');
2017-01-31 16:43:06 +01:00
import User from '../models/user';
2017-01-31 16:12:49 +01:00
import config from '../../conf';
2017-01-31 16:43:06 +01:00
module.exports = async (app: express.Application) => {
2017-01-31 16:12:49 +01:00
if (config.github_bot == null) return;
2017-01-31 16:43:06 +01: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 16:12:49 +01: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 16:43:06 +01:00
handler.on('issues', event => {
2017-01-31 20:04:18 +01:00
const info = event.payload;
2017-01-31 16:43:06 +01:00
let title: string;
2017-01-31 20:04:18 +01:00
switch (info.action) {
2017-01-31 16:43:06 +01:00
case 'opened': title = 'Issueが立ちました'; break;
case 'closed': title = 'Issueが閉じられました'; break;
case 'reopened': title = 'Issueが開きました'; break;
2017-01-31 17:04:32 +01:00
default: return;
2017-01-31 16:43:06 +01:00
}
2017-01-31 20:04:18 +01:00
const text = `${title}: ${info.issue.number}${info.issue.title}\n${info.issue.html_url}`;
2017-01-31 16:43:06 +01:00
post(text);
});
2017-01-31 16:12:49 +01:00
};