check for services_libravatar
[phorkie.git] / src / phorkie / SetupCheck.php
index 959ff428c10e9b3078833cb610c949e497120aaf..ba52d4261313b4fe3b4b972773d6bd306b862318 100644 (file)
@@ -4,9 +4,10 @@ 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/Services_Libravatar' => 'Services_Libravatar',
     );
 
     protected $writableDirs;
@@ -26,6 +27,7 @@ class SetupCheck
         $sc = new self();
         $sc->checkDeps();
         $sc->checkDirs();
+        $sc->checkGit();
     }
 
     public function checkDeps()
@@ -49,6 +51,22 @@ 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 fail($msg)
     {
         throw new Exception($msg);