diff --git a/PHPCI/Application.php b/PHPCI/Application.php index 3378a050..d7d0a4fe 100644 --- a/PHPCI/Application.php +++ b/PHPCI/Application.php @@ -32,7 +32,7 @@ class Application extends b8\Application // Validate the user's session unless it is a login/logout action or a web hook: $sessionAction = ($this->controllerName == 'Session' && in_array($this->action, array('login', 'logout'))); - $externalAction = in_array($this->controllerName, array('Bitbucket', 'Github', 'BuildStatus')); + $externalAction = in_array($this->controllerName, array('Bitbucket', 'Github', 'Gitlab', 'BuildStatus')); $skipValidation = ($externalAction || $sessionAction); if($skipValidation || $this->validateSession()) { diff --git a/PHPCI/Controller/GitlabController.php b/PHPCI/Controller/GitlabController.php new file mode 100644 index 00000000..f3c1dd35 --- /dev/null +++ b/PHPCI/Controller/GitlabController.php @@ -0,0 +1,61 @@ +, Dan Cryer +* @package PHPCI +* @subpackage Web +*/ +class GitlabController extends \PHPCI\Controller +{ + public function init() + { + $this->_buildStore = Store\Factory::getStore('Build'); + } + + /** + * Called by Gitlab Webhooks: + */ + public function webhook($project) + { + $payload = json_decode(file_get_contents("php://input"), true); + + try { + $build = new Build(); + $build->setProjectId($project); + $build->setCommitId($payload['after']); + $build->setStatus(0); + $build->setLog(''); + $build->setCreated(new \DateTime()); + $build->setBranch(str_replace('refs/heads/', '', $payload['ref'])); + } catch (\Exception $ex) { + header('HTTP/1.1 400 Bad Request'); + header('Ex: ' . $ex->getMessage()); + die('FAIL'); + } + + try { + $build = $this->_buildStore->save($build); + $build->sendStatusPostback(); + } catch (\Exception $ex) { + header('HTTP/1.1 500 Internal Server Error'); + header('Ex: ' . $ex->getMessage()); + die('FAIL'); + } + + die('OK'); + } +}