X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/494f8ffb69ff251b3448a5027a5e6b39f7dfd77b..aded6cfacd4a0aea061a120997880c3e3d5a9aed:/src/phorkie/SetupCheck.php diff --git a/src/phorkie/SetupCheck.php b/src/phorkie/SetupCheck.php index f1fbc0f..32fb79e 100644 --- a/src/phorkie/SetupCheck.php +++ b/src/phorkie/SetupCheck.php @@ -8,20 +8,24 @@ class SetupCheck '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 $messages = array(); + public function __construct() { $cfg = $GLOBALS['phorkie']['cfg']; $this->writableDirs = array( - 'gitdir' => $cfg['gitdir'], - 'workdir' => $cfg['workdir'], + 'gitdir' => Tools::foldPath($cfg['gitdir']), + 'workdir' => Tools::foldPath($cfg['workdir']), ); $this->elasticsearch = $cfg['elasticsearch']; } @@ -29,11 +33,35 @@ class SetupCheck public static function run() { $sc = new self(); + $sc->checkConfigFiles(); $sc->checkDeps(); $sc->checkDirs(); $sc->checkGit(); - if ($this->elasticsearch != '') { - $sc->checkDatabase(); + $sc->checkDatabase(); + $sc->checkMimeTypeDetection(); + $sc->checkRemoteForking(); + + return $sc->messages; + } + + public function checkConfigFiles() + { + if (!isset($GLOBALS['phorkie']['cfgfiles']) + || count($GLOBALS['phorkie']['cfgfiles']) == 0 + ) { + $this->info('No config files registered'); + return; + } + + foreach ($GLOBALS['phorkie']['cfgfiles'] as $file => $loaded) { + if ($loaded) { + $this->ok('Loaded config file: ' . Tools::foldPath($file)); + } else { + $this->info( + 'Possible config file: ' . Tools::foldPath($file) + . ' (not loaded)' + ); + } } } @@ -44,6 +72,23 @@ class SetupCheck $this->fail('PEAR package not installed: ' . $package); } } + + if (!class_exists('geshi', true)) { + $geshi = stream_resolve_include_path( + $GLOBALS['phorkie']['cfg']['geshi'] + ); + if ($geshi === false) { + $this->fail('GeSHi not available'); + } + } + + 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() @@ -51,8 +96,7 @@ class SetupCheck foreach ($this->writableDirs as $name => $dir) { if (!is_dir($dir)) { $this->fail($name . ' directory does not exist at ' . $dir); - } - if (!is_writable($dir)) { + } else if (!is_writable($dir)) { $this->fail($name . ' directory is not writable at ' . $dir); } } @@ -64,8 +108,9 @@ 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]+)?)(?: \(Apple Git-\d+\))?$#', $line, $matches)) { $this->fail('git version output format unexpected: ' . $line); + return; } if (version_compare($matches[1], '1.7.5') < 0) { $this->fail( @@ -76,18 +121,60 @@ class SetupCheck 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/)'); + $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(); + $type = $rp->getType('', true); + if ($type != 'php') { + $msg = 'MIME type detection fails'; + if ($type instanceof \PEAR_Error) { + $msg .= '. Error: ' . $type->getMessage(); + } + $this->fail($msg); + } + } + + public function checkRemoteForking() + { + if (!isset($GLOBALS['phorkie']['cfg']['git']['public']) + || $GLOBALS['phorkie']['cfg']['git']['public'] == '' + ) { + $this->fail( + 'No public git URL prefix configured.' + . ' Remote forking will not work' + ); + } + } + public function fail($msg) { - throw new Exception($msg); + $this->messages[] = array('error', $msg); + } + + public function info($msg) + { + $this->messages[] = array('info', $msg); + } + + public function ok($msg) + { + $this->messages[] = array('ok', $msg); } }