X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/add0708f631532b284b11d5507c5efefce36b7c1..925eaabf42cbbbe2ceac8e1bb95c11ec8be5f375:/src/phorkie/SetupCheck.php diff --git a/src/phorkie/SetupCheck.php b/src/phorkie/SetupCheck.php index 959ff42..39c386e 100644 --- a/src/phorkie/SetupCheck.php +++ b/src/phorkie/SetupCheck.php @@ -4,9 +4,12 @@ namespace phorkie; class SetupCheck { protected $deps = array( - 'pear.php.net/VersionControl_Git' => 'VersionControl_Git', - 'pear.twig-project.org/Twig' => 'Twig_Autoloader', - 'pear.php.net/Date_HumanDiff' => 'Date_HumanDiff', + 'pear.php.net/VersionControl_Git' => 'VersionControl_Git', + 'pear.twig-project.org/Twig' => 'Twig_Autoloader', + 'pear.php.net/Date_HumanDiff' => 'Date_HumanDiff', + 'pear.php.net/HTTP_Request2' => 'HTTP_Request2', + 'pear.php.net/Pager' => 'Pager', + 'pear.php.net/Services_Libravatar' => 'Services_Libravatar', ); protected $writableDirs; @@ -26,6 +29,8 @@ class SetupCheck $sc = new self(); $sc->checkDeps(); $sc->checkDirs(); + $sc->checkGit(); + $sc->checkDatabase(); } public function checkDeps() @@ -49,6 +54,28 @@ class SetupCheck } } + public function checkGit() + { + $line = exec('git --version', $lines, $retval); + if ($retval !== 0) { + $this->fail('Running git executable failed.'); + } + if (!preg_match('#^git version ([0-9.]+)$#', $line, $matches)) { + $this->fail('git version output format unexpected: ' . $line); + } + if (version_compare($matches[1], '1.7.5') < 0) { + $this->fail( + 'git version needs to be at least 1.7.5, got: ' . $matches[1] + ); + } + } + + public function checkDatabase() + { + $dbs = new Database_Setup_Elasticsearch(); + $dbs->setup(); + } + public function fail($msg) { throw new Exception($msg);