e4db48d4143f11afc2a6c6bbd1ca5bb77d98521d
[phorkie.git] / src / phorkie / SetupCheck.php
1 <?php
2 namespace phorkie;
3
4 class SetupCheck
5 {
6     protected $deps = array(
7         'pear.php.net/VersionControl_Git'  => 'VersionControl_Git',
8         'pear.twig-project.org/Twig'       => 'Twig_Autoloader',
9         'pear.php.net/Date_HumanDiff'      => 'Date_HumanDiff',
10         'pear.php.net/HTTP_Request2'       => 'HTTP_Request2',
11         'pear.php.net/OpenID'              => 'OpenID',
12         'pear.php.net/Pager'               => 'Pager',
13         'pear.php.net/Services_Libravatar' => 'Services_Libravatar',
14         'pear2.php.net/Services_Linkback'  => '\\PEAR2\\Services\\Linkback\\Client',
15         'zustellzentrum.cweiske.de/MIME_Type_PlainDetect' => 'MIME_Type_PlainDetect',
16     );
17
18     protected $writableDirs;
19     protected $elasticsearch;
20
21     public function __construct()
22     {
23         $cfg = $GLOBALS['phorkie']['cfg'];
24         $this->writableDirs = array(
25             'gitdir' => $cfg['gitdir'],
26             'workdir' => $cfg['workdir'],
27         );
28         $this->elasticsearch = $cfg['elasticsearch'];
29     }
30
31     public static function run()
32     {
33         $sc = new self();
34         $sc->checkDeps();
35         $sc->checkDirs();
36         $sc->checkGit();
37         $sc->checkDatabase();
38     }
39
40     public function checkDeps()
41     {
42         foreach ($this->deps as $package => $class) {
43             if (!class_exists($class, true)) {
44                 $this->fail('PEAR package not installed: ' . $package);
45             }
46         }
47
48         $geshi = stream_resolve_include_path(
49             $GLOBALS['phorkie']['cfg']['geshi']
50         );
51         if ($geshi === false) {
52             $this->fail('GeSHi not available');
53         }
54
55         $markdown = stream_resolve_include_path('markdown.php');
56         if ($markdown === false) {
57             $this->fail('Markdown renderer not available');
58         }
59     }
60
61     public function checkDirs()
62     {
63         foreach ($this->writableDirs as $name => $dir) {
64             if (!is_dir($dir)) {
65                 $this->fail($name . ' directory does not exist at ' . $dir);
66             }
67             if (!is_writable($dir)) {
68                 $this->fail($name . ' directory is not writable at ' . $dir);
69             }
70         }
71     }
72
73     public function checkGit()
74     {
75         $line = exec('git --version', $lines, $retval);
76         if ($retval !== 0) {
77             $this->fail('Running git executable failed.');
78         }
79         if (!preg_match('#^git version ([0-9.]+)$#', $line, $matches)) {
80             $this->fail('git version output format unexpected: ' . $line);
81         }
82         if (version_compare($matches[1], '1.7.5') < 0) {
83             $this->fail(
84                 'git version needs to be at least 1.7.5, got: ' . $matches[1]
85             );
86         }
87     }
88
89     public function checkDatabase()
90     {
91         if ($this->elasticsearch == '') {
92             return;
93         }
94
95         $es = parse_url($this->elasticsearch);
96         if (!preg_match("#/.+/#", $es['path'], $matches)) {
97             $this->fail(
98                 'Improper elasticsearch url.  Elasticsearch requires a'
99                 . ' search domain to store your data.'
100                 . ' (e.g. http://localhost:9200/phorkie/)'
101             );
102         }
103         $dbs = new Database();
104         $dbs->getSetup()->setup();
105     }
106
107     public function fail($msg)
108     {
109         throw new Exception($msg);
110     }
111 }
112
113 ?>