X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/add0708f631532b284b11d5507c5efefce36b7c1..94b076f028c2a12f522887caf02b6289957cf4fe:/src/phorkie/SetupCheck.php diff --git a/src/phorkie/SetupCheck.php b/src/phorkie/SetupCheck.php index 959ff42..fbc99c7 100644 --- a/src/phorkie/SetupCheck.php +++ b/src/phorkie/SetupCheck.php @@ -4,13 +4,19 @@ 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/OpenID' => 'OpenID', + 'pear.php.net/Pager' => 'Pager', + 'pear.php.net/Services_Libravatar' => 'Services_Libravatar', + 'pear2.php.net/PEAR2_Services_Linkback' => '\\PEAR2\\Services\\Linkback\\Client', + 'zustellzentrum.cweiske.de/MIME_Type_PlainDetect' => 'MIME_Type_PlainDetect', ); protected $writableDirs; - + protected $elasticsearch; public function __construct() { @@ -19,6 +25,7 @@ class SetupCheck 'gitdir' => $cfg['gitdir'], 'workdir' => $cfg['workdir'], ); + $this->elasticsearch = $cfg['elasticsearch']; } public static function run() @@ -26,6 +33,9 @@ class SetupCheck $sc = new self(); $sc->checkDeps(); $sc->checkDirs(); + $sc->checkGit(); + $sc->checkDatabase(); + $sc->checkMimeTypeDetection(); } public function checkDeps() @@ -35,6 +45,21 @@ class SetupCheck $this->fail('PEAR package not installed: ' . $package); } } + + if (!class_exists('GeSHi', true)) { + @include_once 'geshi.php'; + if (!class_exists('GeSHi', false)) { + $this->fail('PEAR package not installed: pear.geshi.org/geshi'); + } + } + + if (!class_exists('\\Michelf\\Markdown', true)) { + //PEAR-installed version 1.0.2 has a different API + $markdown = stream_resolve_include_path('markdown.php'); + if ($markdown === false) { + $this->fail('Markdown renderer not available'); + } + } } public function checkDirs() @@ -49,6 +74,48 @@ 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.]+(rc[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() + { + if ($this->elasticsearch == '') { + return; + } + + $es = parse_url($this->elasticsearch); + if (!preg_match("#/.+/#", $es['path'], $matches)) { + $this->fail( + 'Improper elasticsearch url. Elasticsearch requires a' + . ' search domain to store your data.' + . ' (e.g. http://localhost:9200/phorkie/)' + ); + } + $dbs = new Database(); + $dbs->getSetup()->setup(); + } + + public function checkMimeTypeDetection() + { + $rp = new Repository_Post(); + if ($rp->getType('') != 'php') { + $this->fail('MIME type detection fails'); + } + } + public function fail($msg) { throw new Exception($msg);