X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/8668d95b319138d94792f3476a7b9098f667c7b6..898642aecf2bcff3a255bbcbba319d1d0458812d:/src/phorkie/SetupCheck.php diff --git a/src/phorkie/SetupCheck.php b/src/phorkie/SetupCheck.php index 93ec3ef..3762457 100644 --- a/src/phorkie/SetupCheck.php +++ b/src/phorkie/SetupCheck.php @@ -11,6 +11,7 @@ class SetupCheck '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', ); @@ -34,6 +35,7 @@ class SetupCheck $sc->checkDirs(); $sc->checkGit(); $sc->checkDatabase(); + $sc->checkMimeTypeDetection(); } public function checkDeps() @@ -43,6 +45,18 @@ class SetupCheck $this->fail('PEAR package not installed: ' . $package); } } + + $geshi = stream_resolve_include_path( + $GLOBALS['phorkie']['cfg']['geshi'] + ); + if ($geshi === false) { + $this->fail('GeSHi not available'); + } + + $markdown = stream_resolve_include_path('markdown.php'); + if ($markdown === false) { + $this->fail('Markdown renderer not available'); + } } public function checkDirs() @@ -63,7 +77,7 @@ class SetupCheck if ($retval !== 0) { $this->fail('Running git executable failed.'); } - if (!preg_match('#^git version ([0-9.]+)$#', $line, $matches)) { + 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) { @@ -91,6 +105,14 @@ class SetupCheck $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);