forked from the-distro/ofborg
Replace index.phpwith next.php
This commit is contained in:
parent
67094db9bd
commit
4dea8198a0
|
@ -29,18 +29,8 @@ function payload() {
|
||||||
} else {
|
} else {
|
||||||
return $input;
|
return $input;
|
||||||
}
|
}
|
||||||
case 'application/x-www-form-urlencoded':
|
|
||||||
if (!isset($_POST)) {
|
|
||||||
throw new InvalidPayloadException('_POST undefined');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isset($_POST['payload'])) {
|
|
||||||
throw new InvalidPayloadException('payload not set in _POST');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $_POST['payload'];
|
|
||||||
default:
|
default:
|
||||||
throw new InvalidPayloadException('Unsupported content type: ' . $_SERVER['HTTP_CONTENT_TYPE']);
|
throw new InvalidPayloadException('Unsupported content type: ' . $_SERVER['CONTENT_TYPE']);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -143,11 +133,13 @@ try {
|
||||||
|
|
||||||
echo "ok";
|
echo "ok";
|
||||||
} catch (DumpableException $e) {
|
} catch (DumpableException $e) {
|
||||||
header($_SERVER["SERVER_PROTOCOL"]." 400 Eh", true, 400);
|
trigger_error(print_r($e, true), E_USER_WARNING);
|
||||||
|
header("HTTP/1.1 400 Eh", true, 400);
|
||||||
var_dump($e);
|
var_dump($e);
|
||||||
echo ob_get_clean();
|
echo ob_get_clean();
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
header($_SERVER["SERVER_PROTOCOL"]." 400 Meh", true, 400);
|
trigger_error(print_r($e, true), E_USER_WARNING);
|
||||||
|
header("HTTP/1.1 400 Meh", true, 400);
|
||||||
var_dump(get_class($e));
|
var_dump(get_class($e));
|
||||||
echo ob_get_clean();
|
echo ob_get_clean();
|
||||||
}
|
}
|
145
php/web/next.php
145
php/web/next.php
|
@ -1,145 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
ob_start();
|
|
||||||
|
|
||||||
require_once __DIR__ . '/../config.php';
|
|
||||||
use PhpAmqpLib\Message\AMQPMessage;
|
|
||||||
|
|
||||||
class DumpableException extends \Exception{}
|
|
||||||
class InvalidPayloadException extends DumpableException {}
|
|
||||||
class InvalidSignatureException extends DumpableException {}
|
|
||||||
class InvalidEventTypeException extends DumpableException {}
|
|
||||||
class ValidationFailureException extends DumpableException {}
|
|
||||||
class ExecutionFailureException extends DumpableException {}
|
|
||||||
|
|
||||||
function payload() {
|
|
||||||
if (!isset($_SERVER)) {
|
|
||||||
throw new InvalidPayloadException('_SERVER undefined');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isset($_SERVER['CONTENT_TYPE'])) {
|
|
||||||
throw new InvalidPayloadException('CONTENT_TYPE not set in _SERVER');
|
|
||||||
}
|
|
||||||
|
|
||||||
switch ($_SERVER['CONTENT_TYPE']) {
|
|
||||||
case 'application/json':
|
|
||||||
$input = file_get_contents('php://input');
|
|
||||||
if ($input === false) {
|
|
||||||
throw new InvalidPayloadException('Failed to read php://input for application/json');
|
|
||||||
} else {
|
|
||||||
return $input;
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
throw new InvalidPayloadException('Unsupported content type: ' . $_SERVER['CONTENT_TYPE']);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function signature() {
|
|
||||||
if (!isset($_SERVER)) {
|
|
||||||
throw new InvalidSignatureException('_SERVER undefined');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isset($_SERVER['HTTP_X_HUB_SIGNATURE'])) {
|
|
||||||
throw new InvalidSignatureException('HTTP_X_HUB_SIGNATURE absent from _SERVER');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $_SERVER['HTTP_X_HUB_SIGNATURE'];
|
|
||||||
}
|
|
||||||
|
|
||||||
function event_type() {
|
|
||||||
if (!isset($_SERVER)) {
|
|
||||||
throw new InvalidEventTypeException('_SERVER undefined');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isset($_SERVER['HTTP_X_GITHUB_EVENT'])) {
|
|
||||||
throw new InvalidEventTypeException('HTTP_X_GITHUB_EVENT absent from _SERVER');
|
|
||||||
}
|
|
||||||
|
|
||||||
$type = trim($_SERVER['HTTP_X_GITHUB_EVENT']);
|
|
||||||
|
|
||||||
if (strlen($type) === 0) {
|
|
||||||
throw new InvalidEventTypeException('After trimming, event type is zero-length');
|
|
||||||
}
|
|
||||||
|
|
||||||
return $type;
|
|
||||||
}
|
|
||||||
|
|
||||||
function validate_payload_signature($secret, $payload, $signature) {
|
|
||||||
if (!extension_loaded('hash')) {
|
|
||||||
throw new ValidationFailureException('Missing hash extension');
|
|
||||||
}
|
|
||||||
|
|
||||||
$components = explode('=', $signature, 2);
|
|
||||||
if (count($components) != 2) {
|
|
||||||
throw new ValidationFailureException('Provided signature seems invalid after splitting on =');
|
|
||||||
}
|
|
||||||
|
|
||||||
$algo = $components[0];
|
|
||||||
$provided_hash = $components[1];
|
|
||||||
|
|
||||||
if (!in_array($algo, hash_algos(), true)) {
|
|
||||||
throw new ValidationFailureException("Hash algorithm '$algo' is not supported by the extension.");
|
|
||||||
}
|
|
||||||
|
|
||||||
$ok_algos = [
|
|
||||||
'sha1',
|
|
||||||
'sha256',
|
|
||||||
'sha512',
|
|
||||||
];
|
|
||||||
if (!in_array($algo, $ok_algos, true)) {
|
|
||||||
throw new ValidationFailureException("Hash algorithm '$algo' is not considered okay");
|
|
||||||
}
|
|
||||||
|
|
||||||
$calculated_hash = hash_hmac($algo, $payload, $secret);
|
|
||||||
|
|
||||||
return hash_equals($provided_hash, $calculated_hash);
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
$raw = payload();
|
|
||||||
if (!validate_payload_signature(gh_secret(), $raw, signature())) {
|
|
||||||
throw new ExecutionFailureException('Failed to validate signature');
|
|
||||||
}
|
|
||||||
|
|
||||||
$input = json_decode($raw);
|
|
||||||
if ($input === null) {
|
|
||||||
throw new ExecutionFailureException('Failed to decode the JSON');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isset($input->repository)) {
|
|
||||||
throw new\ExecutionFailureException('Dataset does not have a repository');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isset($input->repository->full_name)) {
|
|
||||||
throw new ExecutionFailureException('Dataset repository does not have a name');
|
|
||||||
}
|
|
||||||
|
|
||||||
$name = strtolower($input->repository->full_name);
|
|
||||||
$eventtype = event_type();
|
|
||||||
|
|
||||||
$connection = rabbitmq_conn();
|
|
||||||
$channel = $connection->channel();
|
|
||||||
|
|
||||||
$dec = $channel->exchange_declare('github-events', 'topic', false, true, false);
|
|
||||||
|
|
||||||
$message = new AMQPMessage(json_encode($input),
|
|
||||||
array(
|
|
||||||
'content_type' => 'application/json',
|
|
||||||
'delivery_mode' => AMQPMessage::DELIVERY_MODE_PERSISTENT,
|
|
||||||
));
|
|
||||||
|
|
||||||
$routing_key = "$eventtype.$name";
|
|
||||||
$rec = $channel->basic_publish($message, 'github-events', $routing_key);
|
|
||||||
|
|
||||||
echo "ok";
|
|
||||||
} catch (DumpableException $e) {
|
|
||||||
trigger_error(print_r($e, true), E_USER_WARNING);
|
|
||||||
header("HTTP/1.1 400 Eh", true, 400);
|
|
||||||
var_dump($e);
|
|
||||||
echo ob_get_clean();
|
|
||||||
} catch (\Exception $e) {
|
|
||||||
trigger_error(print_r($e, true), E_USER_WARNING);
|
|
||||||
header("HTTP/1.1 400 Meh", true, 400);
|
|
||||||
var_dump(get_class($e));
|
|
||||||
echo ob_get_clean();
|
|
||||||
}
|
|
Loading…
Reference in a new issue