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

42 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 => {
let title: string;
switch (event.payload.action) {
case 'opened': title = 'Issueが立ちました'; break;
case 'closed': title = 'Issueが閉じられました'; break;
case 'reopened': title = 'Issueが開きました'; break;
}
2017-01-31 16:46:43 +01:00
const text = `${title}: ${event.payload.issue.number}${event.payload.issue.title}\n${event.payload.issue.html_url}`;
2017-01-31 16:43:06 +01:00
post(text);
});
2017-01-31 16:12:49 +01:00
};