Created
April 20, 2016 17:59
-
-
Save glensc/fb5b55f0d0abc962f3bfb0777ab5546a to your computer and use it in GitHub Desktop.
GitHub Push Hook PHP Handler
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
<?php | |
// https://developer.github.com/webhooks/ | |
// ruby -rsecurerandom -e 'puts SecureRandom.hex(20)' | |
define('HOOK_SECRET', ''); | |
set_exception_handler(function($e) { | |
header('HTTP/1.1 500 Internal Server Error'); | |
error_log(basename(__FILE__, '.php') . ': '. $e->getMessage()); | |
die("Error on line {$e->getLine()}: " . htmlspecialchars($e->getMessage())); | |
}); | |
// https://developer.github.com/v3/activity/events/types/#pushevent | |
// X-Hub-Signature: sha1=ffd1a5f14b30eaaaca1e84499c372743302bc47d | |
function get_payload($secret) { | |
if (!isset($_SERVER['HTTP_X_GITHUB_EVENT'])) { | |
throw new InvalidArgumentException('No event'); | |
} | |
$eventType = $_SERVER['HTTP_X_GITHUB_EVENT']; | |
if ($eventType != 'push') { | |
throw new InvalidArgumentException("Invalid Event: $eventType"); | |
} | |
if (!isset($_SERVER['HTTP_X_HUB_SIGNATURE'])) { | |
throw new InvalidArgumentException("HTTP header 'X-Hub-Signature' is missing"); | |
} | |
if (!extension_loaded('hash')) { | |
throw new InvalidArgumentException("Missing 'hash' extension to check the secret code validity."); | |
} | |
# https://developer.github.com/v3/repos/hooks/#create-a-hook | |
# The value of this header is computed as the HMAC hex digest of the body, using the secret as the key. | |
list($algo, $hash) = explode('=', $_SERVER['HTTP_X_HUB_SIGNATURE'], 2); | |
if (!in_array($algo, hash_algos(), true)) { | |
throw new Exception("Hash algorithm '$algo' is not supported."); | |
} | |
$rawPost = file_get_contents('php://input'); | |
if ($hash !== hash_hmac($algo, $rawPost, $secret)) { | |
throw new InvalidArgumentException("Hook secret ($algo) does not match"); | |
} | |
if (isset($_POST['payload'])) { | |
// for urlencoded data | |
$payload = $_POST['payload']; | |
} else { | |
$payload = $rawPost; | |
} | |
return json_decode($payload); | |
} | |
$payload = get_payload(HOOK_SECRET); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment