Sharkey/src/api/service/github.ts

44 lines
1.2 KiB
TypeScript
Raw Normal View History

2017-01-31 17:12:49 +02:00
import * as express from 'express';
const createHandler = require('github-webhook-handler');
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-01-31 17:12:49 +02: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 17:43:06 +02:00
handler.on('issues', event => {
2017-01-31 21:07:30 +02:00
const issue = event.payload.issue;
const action = event.payload.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 17:43:06 +02:00
case 'opened': title = 'Issueが立ちました'; break;
case 'closed': title = 'Issueが閉じられました'; break;
case 'reopened': title = 'Issueが開きました'; 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 17:12:49 +02:00
};