]> git.llucax.com Git - software/bife/bife-all.git/blobdiff - src/BIFE/Album.php
- Moved some Generic functionality to Widget (attrs property).
[software/bife/bife-all.git] / src / BIFE / Album.php
index 3b19ad44c2e34d37f7bee24467877f0b07298eae..b3fd40915dddfc889b836c4ddc0d7a337c4b6d0d 100644 (file)
 // +X2C includes
 require_once 'BIFE/Widget.php';
 // ~X2C
 // +X2C includes
 require_once 'BIFE/Widget.php';
 // ~X2C
-require_once 'Album.php';
+
+require_once 'Image/Transform.php';
 
 // +X2C Class 20 :Album
 /**
 
 // +X2C Class 20 :Album
 /**
- * Photo album widget.
-[TODO: Make a better explanation]
+ * Photo album widget. [TODO: Make a better explanation]
  *
  * @access public
  */
 class BIFE_Album extends BIFE_Widget {
  *
  * @access public
  */
 class BIFE_Album extends BIFE_Widget {
+    // ~X2C
+
+    // +X2C Operation 22
     /**
     /**
-     * Attributes.
+     * Constructor.
+     *
+     * @param  array $attrs Attributes.
      *
      *
-     * @var    array $attrs
+     * @return void
      * @access public
      */
      * @access public
      */
-    var $attrs;
-
-    // ~X2C
+    function BIFE_Album($attrs) // ~X2C
+    {
+        $this->__construct($attrs);
+    }
+    // -X2C
 
 
-    // +X2C Operation 22
+    // +X2C Operation 57
     /**
      * Constructor.
      *
     /**
      * Constructor.
      *
@@ -58,19 +65,25 @@ class BIFE_Album extends BIFE_Widget {
      * @return void
      * @access public
      */
      * @return void
      * @access public
      */
-    function BIFE_Album($attrs) // ~X2C
+    function __construct($attrs) // ~X2C
     {
     {
+        // TODO - get defaults from an INI file.
         $defaults = array(
             'DIR'           => '.',
             'RECURSIVE'     => true,
             'THUMBSFORMAT'  => 'jpeg',
             'THUMBSDIR'     => '.thumbs',
         $defaults = array(
             'DIR'           => '.',
             'RECURSIVE'     => true,
             'THUMBSFORMAT'  => 'jpeg',
             'THUMBSDIR'     => '.thumbs',
-            'EXTENSIONS'    => 'png,jpg,jpeg,gif',
-            'SELECTED'      => '',
+            'EXTENSIONS'    => 'png,jpg,jpeg,PNG,JPG,JPEG',
             'MAXROWS'       => 0,
             'COLUMNS'       => 4,
             'MAXROWS'       => 0,
             'COLUMNS'       => 4,
+            'LINK-BIFE'     => 'photo.xbf',
+            'LINK-URL'      => '',
+            // TODO - agregar atributo para el LINK, ver de hacer el
+            //        widget de un link.
         );
         );
-        $this->attrs = array_merge($defaults, $attrs);
+        $attrs = array_merge($defaults, $attrs);
+        $attrs['EXTENSIONS'] = explode(',', $attrs['EXTENSIONS']);
+        parent::__construct($attrs);
     }
     // -X2C
 
     }
     // -X2C
 
@@ -80,17 +93,179 @@ class BIFE_Album extends BIFE_Widget {
      *
      * @param  HTML_Template_Sigma &$template Template to use to render the widget.
      *
      *
      * @param  HTML_Template_Sigma &$template Template to use to render the widget.
      *
-     * @return void
+     * @return string
      * @access public
      */
     function render(&$template) // ~X2C
     {
      * @access public
      */
     function render(&$template) // ~X2C
     {
-        extract($this->attrs, EXTR_SKIP);
-        $album =& new Hook_Album($DIR, $RECURSIVE, $THUMBSFORMAT, $THUMBSDIR, $EXTENSIONS);
-        return $album->album($template, $SELECTED, $MAXROWS, $COLUMNS);
+        $template->loadTemplateFile('bife_album.html');
+        $root = $this->attrs['DIR'];
+        $list = $this->getList();
+        $tot  = count($list);
+        $rows = ceil($tot / $this->attrs['COLUMNS']);
+        for ($row = 0; $row < $rows; $row++) {
+            for ($col = 0; $col < $this->attrs['COLUMNS']; $col++) {
+                $cur = $row * $this->attrs['COLUMNS'] + $col;
+                if ($photo = @$list[$cur]) {
+                    if (is_null($photo['THUMB'])) {
+                        $photo['THUMB'] = $this->makeThumb($photo['FILE']);
+                    }
+                    // FIXME - Si no se pudo crear el thumb, devuelve null
+                    // (ver si se agrega otro template para indicar error
+                    // o algo asi).
+                    $photo['URL'] = $this->attrs['LINK-URL'] . '?BIFE_ALBUM_FILE=' .
+                        urlencode($photo['FILE']);
+                    if ($this->attrs['LINK-BIFE']) {
+                        $photo['URL'] .= '&BIFE=' . urlencode($this->attrs['LINK-BIFE']);
+                    }
+                    $template->setVariable($photo);
+                    $template->parse('ITEM');
+                } else {
+                    $template->touchBlock('EMPTY');
+                    $template->parse('EMPTY');
+                }
+            }
+            $template->parse('ROW');
+        }
+        $template->setVariable('DESC', $this->getDescription());
+        return $template->get();
+    }
+    // -X2C
+
+    // +X2C Operation 95
+    /**
+     * Gets a list of photos with their descriptions and thumbnails.
+Returns an array of associative arrays with this keys:
+<ul>
+<li><b>file:</b> Photo filename.</li>
+<li><b>desc:</b> Photo Description.</li>
+<li><b>thumb:</b> Photo thumbnail filename.</li>
+</ul>
+     *
+     * @return array
+     * @access protected
+     */
+    function getList() // ~X2C
+    {
+        $root = $this->attrs['DIR'];
+        $exts = $this->attrs['EXTENSIONS'];
+        $format = $this->attrs['THUMBSFORMAT'];
+        $return = array();
+        $d = dir($root);
+        if ($d) {
+            while (($file = $d->read()) !== false) {
+                list($path, $name, $ext) = $this->splitFilename("$root/$file");
+                if (is_readable("$root/$file") and in_array($ext, $exts)) {
+                    $thumb = $this->getThumbFilename("$root/$file");
+                    $return[] = array(
+                        'FILE'  => "$root/$name",
+                        'DESC'  => $name,
+                        'THUMB' => is_readable($thumb) ? $thumb : null,
+                    );
+                }              
+            }
+            $d->close();
+        }
+        return $return;
+    }
+    // -X2C
+
+    // +X2C Operation 97
+    /**
+     * Creates an image thumbnail, returning his filename.
+     *
+     * @param  string $filename Filename of the image to create the thumb.
+     * @param  int $size Maximum thumbnail size.
+     *
+     * @return string
+     * @access protected
+     */
+    function makeThumb($filename, $size = 100) // ~X2C
+    {
+        $format = $this->attrs['THUMBSFORMAT'];
+        $thumb = $this->getThumbFilename($filename);
+        list($path, $name, $ext) = $this->splitFilename($thumb);
+        $img =& Image_Transform::factory('GD');
+        $img->load($filename);
+        // If image is larger than the maximum size, we resize it.
+        if ($img->img_x > $size or $img->img_y > $size ) {
+            if (!@is_dir($path) and !@mkdir($path)) {
+                return null;
+            }
+            if (PEAR::isError($img)) {
+                return null;
+            }
+            if (!$img->scale($size)) {
+                return null;
+            }
+        }
+        $img->save("$path/$name.$format", $format);
+        $img->free();
+
+        return $thumb;
+    }
+    // -X2C
+
+    // +X2C Operation 98
+    /**
+     * Returns the filename of an image thumb.
+     *
+     * @param  string $filename Filename of the image to get the thumb name.
+     *
+     * @return string
+     * @access protected
+     */
+    function getThumbFilename($filename) // ~X2C
+    {
+        $root = $this->attrs['DIR'];
+        $format = $this->attrs['THUMBSFORMAT'];
+        $thumbsdir = $this->attrs['THUMBSDIR'];
+
+        list($path, $name, $ext) = $this->splitFilename($filename);
+
+        return "$root/$thumbsdir/$name.$format";
+    }
+    // -X2C
+
+    // +X2C Operation 102
+    /**
+     * Returns the description of the album.
+     *
+     * @return string
+     * @access protected
+     */
+    function getDescription() // ~X2C
+    {
+        $root = $this->attrs['DIR'];
+        return @join('', file($file));
+    }
+    // -X2C
+
+    // +X2C Operation 100
+    /**
+     * Splits a filename returning an array with the path, name and extension.
+     *
+     * @param  string $filename Filename to split.
+     *
+     * @return array
+     * @access public
+     * @static
+     */
+    function splitFilename($filename) // ~X2C
+    {
+        $path = explode('/', $filename);
+        $file = array_pop($path);
+        $ext  = '';
+        if (strstr($file, '.')) {
+            preg_match('|([^/]+?)(\.([^\.]*))?$|', $file, $m);
+            $file = @$m[1] . ((@$m[2] == '.' ) ? '.' : '');
+            $ext  = @$m[3];
+        }
+        $dir = count($path) ? join('/', $path) : '';
+        return array($dir, $file, $ext);
     }
     // -X2C
 
 } // -X2C Class :Album
 
     }
     // -X2C
 
 } // -X2C Class :Album
 
-?>
\ No newline at end of file
+?>