include geshi only once
[phorkie.git] / src / Phorkie / File.php
index 729cbd6aaaf6293bf3e65cc309717915a8df6c29..44970ed9ffd681e7a5aa2c16f5af2f92de189bb0 100644 (file)
@@ -17,6 +17,11 @@ class File
      */
     public $repo;
 
+    /**
+     * Maps file extensions to MIME Types
+     *
+     * @var array
+     */
     public static $arMimeTypeMap = array(
         'css'  => 'text/css',
         'htm'  => 'text/html',
@@ -27,7 +32,17 @@ class File
         'xml'  => 'text/xml',
     );
 
-    public function __construct($path, Repository $repo)
+    /**
+     * Maps file extensions to geshi types
+     *
+     * @var array
+     */
+    public static $arTypeMap = array(
+        'htm'  => 'xml',
+        'html' => 'xml',
+    );
+
+    public function __construct($path, Repository $repo = null)
     {
         $this->path = $path;
         $this->repo = $repo;
@@ -44,15 +59,40 @@ class File
     }
 
     /**
-     * Returns the type of the file, as used internally by Phorkie
+     * Return the full path to the file
      *
      * @return string
      */
-    public function getType()
+    public function getPath()
+    {
+        return $this->path;
+    }
+
+    /**
+     * Get file extension without dot
+     *
+     * @return string
+     */
+    public function getExt()
     {
         return substr($this->path, strrpos($this->path, '.') + 1);
     }
 
+    /**
+     * Returns the type of the file, as used by Geshi
+     *
+     * @return string
+     */
+    public function getType()
+    {
+        $ext = $this->getExt();
+        if (isset(static::$arTypeMap[$ext])) {
+            $ext = static::$arTypeMap[$ext];
+        }
+
+        return $ext;
+    }
+
     public function getContent()
     {
         return file_get_contents($this->path);
@@ -64,7 +104,7 @@ class File
          * Yes, geshi needs to be in your include path
          * We use the mediawiki geshi extension package.
          */
-        require 'MediaWiki/geshi/geshi/geshi.php';
+        require_once 'MediaWiki/geshi/geshi/geshi.php';
         $geshi = new \GeSHi($this->getContent(), $this->getType());
         $geshi->enable_line_numbers(GESHI_NORMAL_LINE_NUMBERS);
         $geshi->set_header_type(GESHI_HEADER_DIV);
@@ -73,11 +113,11 @@ class File
 
     public function getMimeType()
     {
-        $type = $this->getType();
-        if (!isset(static::$arMimeTypeMap[$type])) {
+        $ext = $this->getExt();
+        if (!isset(static::$arMimeTypeMap[$ext])) {
             return null;
         }
-        return static::$arMimeTypeMap[$type];
+        return static::$arMimeTypeMap[$ext];
     }
 
     /**