Created
February 14, 2016 11:01
-
-
Save ryuichiueda/f7ae2b58c3f6b788dd87 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GitHubから来た通知をSlackに飛ばす | |
# | |
# 参考: Hubot経由でGitHubのイベントを通知する | SPACEMARKET BLOG | |
# http://blog.spacemarket.com/code/hubot-github-webhook-1/ | |
crypto = require 'crypto' | |
module.exports = (robot) -> | |
robot.router.post "/github/webhook", (req, res) -> | |
event_type = req.get 'X-Github-Event' | |
signature = req.get 'X-Hub-Signature' | |
unless isCorrectSignature signature, req.body | |
res.status(401).send 'unauthorized' | |
return | |
switch event_type | |
when 'gollum' | |
message = atWiki req.body | |
robot.messageRoom 'lab-github', message | |
res.status(200).send 'ok' | |
atWiki = (body) -> | |
switch body.pages[0].action | |
when 'edited' | |
message = "*GitHub Wikiページの編集*\n" | |
message += body.pages[0].html_url | |
return message | |
when 'created' | |
message = "*GitHub Wikiページの作成*\n" | |
message += body.pages[0].html_url | |
return message | |
isCorrectSignature = (signature, body) -> | |
pairs = signature.split '=' | |
digest_method = pairs[0] | |
hmac = crypto.createHmac digest_method, process.env.HUBOT_GITHUB_SECRET | |
hmac.update JSON.stringify(body), 'utf-8' | |
hashed_data = hmac.digest 'hex' | |
generated_signature = [digest_method, hashed_data].join '=' | |
return signature is generated_signature |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment