]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/GNUsocialPhotos/actions/photos.php
Merge branch 'master' into social-master
[quix0rs-gnu-social.git] / plugins / GNUsocialPhotos / actions / photos.php
index 37ec8ce32f7961a5e11b2cc2075e69dfbe41d025..a180be8c12098295c3724287184dc8d5c218681a 100644 (file)
@@ -23,6 +23,7 @@
  * @package   GNU Social
  * @author    Ian Denhardt <ian@zenhack.net>
  * @author    Sean Corbett <sean@gnu.org>
+ * @author    Max Shinn    <trombonechamp@gmail.com>
  * @copyright 2010 Free Software Foundation, Inc.
  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
  */
@@ -31,25 +32,28 @@ if (!defined('STATUSNET')) {
     exit(1);
 }
 
+require_once INSTALLDIR.'/lib/personalgroupnav.php';
+
 class PhotosAction extends Action
 {
     var $user = null;
 
-    function prepare($args)
+    function prepare(array $args=array())
     {
         parent::prepare($args);
 
         $args = $this->returnToArgs();
         $username = $args[1]['nickname'];
+        $this->albumid = $args[1]['albumid'];
         if (common_valid_profile_tag($username) == 0) {
             $this->user = null;
         } else {
-            $this->user = Profile::staticGet('nickname', $username);
+            $this->user = Profile::getKV('nickname', $username);
         }
         return true;
     }
 
-    function handle($args)
+    function handle(array $args=array())
     {
         parent::handle($args);
         $this->showPage();
@@ -66,39 +70,105 @@ class PhotosAction extends Action
 
     function showLocalNav()
     {
-        $nav = new GNUsocialPhotoNav($this);
+        $nav = new PersonalGroupNav($this);
         $nav->show();
     }
 
-    function showContent()
+    function showResizeImagesBox()
+    {
+        $this->elementStart('select', array('onchange' => 'return scalePhotosToSize(this.value)'));
+        $this->element('option', array('value' => ''), "");
+        $this->element('option', array('value' => '60'), _("Thumbnail"));
+        $this->element('option', array('value' => '120'), _("Medium"));
+        $this->element('option', array('value' => '400'), _("Normal"));
+        $this->elementEnd('select');
+    }
+
+    function showAlbums()
+    {
+        $album = new GNUsocialPhotoAlbum();
+        $album->profile_id = $this->user->id;
+
+        $albums = array();
+        if (!$album->find()) {
+            GNUsocialPhotoAlbum::newAlbum($this->user->id, 'Default');
+        }
+
+        $this->elementStart('div', array('class' => 'galleryheader'));
+        //$this->element('a', array('href' => '#',
+        //                          'onclick' => 'return increasePhotoSize()'), '+');
+        //$this->raw(' | ');
+        //$this->element('a', array('href' => '#',
+        //                          'onclick' => 'return decreasePhotoSize()'), '-');
+
+        $this->showResizeImagesBox();
+        $this->elementEnd('div');
+
+
+
+        while ($album->fetch()) {
+            $this->elementStart('div', array('class' => 'photocontainer'));
+            $this->elementStart('a', array('href' => $album->getPageLink()));
+            $this->element('img', array('src' => $album->getThumbUri(),
+                                        'class' => 'albumingallery'));
+            $this->elementEnd('a');
+            $this->element('h3', array(), $album->album_name);
+            $this->elementEnd('div');
+        }
+        
+    }
+    
+    function showAlbum($album_id)
     {
-        if(empty($this->user)) {
+        $album = GNUsocialPhotoAlbum::getKV('album_id', $album_id);
+        if (!$album) {
             return;
         }
+
         $page = $_GET['pageid'];
         if (!filter_var($page, FILTER_VALIDATE_INT)){
             $page = 1;
         }
-   
+
+        $photos = GNUsocialPhoto::getGalleryPage($page, $album->album_id, 9);
+        $this->elementStart('div', array('class' => 'galleryheader'));
         if ($page > 1) { 
-            $this->element('a', array('href' => 'photos?pageid=' . ($page-1)), 'Previous page');
+            $this->element('a', array('href' => $album->getPageLink() . '?pageid=' . ($page-1)), 'Previous page');
+            $this->raw(' | ');
+        }
+        if (GNUsocialPhoto::getGalleryPage($page+1, $album->album_id, 9)) {
+            $this->element('a', array('href' => $album->getPageLink() . '?pageid=' . ($page+1) ), 'Next page');
+            $this->raw(' | ');
         }
-        $this->element('a', array('href' => 'photos?pageid=' . ($page+1) ), 'Next page');
 
-        //TODO choice of available albums by user.
-        //Currently based on fact that each user can only have one album.
-        $album = GNUSocialPhotoAlbum::staticGet('profile_id', $this->user->id);
-        $photos = GNUsocialPhoto::getGalleryPage($page, $album->album_id, 9);
+        //$this->element('a', array('href' => '#',
+        //                          'onclick' => 'return increasePhotoSize()'), '+');
+        //$this->raw(' | ');
+        //$this->element('a', array('href' => '#',
+        //                          'onclick' => 'return decreasePhotoSize()'), '-');
+        //$this->raw(' | ');
+
+        $this->showResizeImagesBox();
+        $this->elementEnd('div');
 
-        $this->elementStart('ul', array('class' => 'photothumbs'));
         foreach ($photos as $photo) {
-            $this->elementStart('li');
-                       $photolink = '/' . $this->user->nickname . '/photo/' . $photo->notice_id;
-            $this->elementStart('a', array('href' => $photolink));
-            $this->element('img', array('src' => $photo->thumb_uri));
+            $this->elementStart('a', array('href' => $photo->getPageLink()));
+            $this->elementStart('div', array('class' => 'photocontainer'));
+            $this->element('img', array('src' => $photo->thumb_uri,
+                                        'class' => 'photoingallery'));
+            $this->element('div', array('class' => 'phototitle'), $photo->title);
+            $this->elementEnd('div');
             $this->elementEnd('a');
-            $this->elementEnd('li');
         }
-        $this->elementEnd('ul');
+
+    }
+
+
+    function showContent()
+    {
+        if (!empty($this->albumid))
+            $this->showAlbum($this->albumid);
+        else
+            $this->showAlbums();
     }
 }