]> 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 bc54ae9937b572c434b526e0b3c78ec8dc22db1f..a180be8c12098295c3724287184dc8d5c218681a 100644 (file)
@@ -22,6 +22,8 @@
  * @category  Widget
  * @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
  */
@@ -30,21 +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);
 
-        $this->user = common_current_user();
-        common_log(LOG_INFO, "finishing prepare. user : ");
-        common_log(LOG_INFO, $this->user->nickname);
+        $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::getKV('nickname', $username);
+        }
         return true;
     }
 
-    function handle($args)
+    function handle(array $args=array())
     {
         parent::handle($args);
         $this->showPage();
@@ -53,63 +62,113 @@ class PhotosAction extends Action
     function title()
     {
         if (empty($this->user)) {
-            return _m('Hello');
+            return _m('No such user.');
         } else {
-            return sprintf(_m('Hello, %s'), $this->user->nickname);
+            return sprintf(_m("%s's Photos."), $this->user->nickname);
         }
     }
 
+    function showLocalNav()
+    {
+        $nav = new PersonalGroupNav($this);
+        $nav->show();
+    }
 
-    function showContent()
+    function showResizeImagesBox()
     {
-        common_log(LOG_INFO, "getting to show content.\n");
-        if (empty($this->user)) {
-            // TODO: should just redirect to the login page.
-            $this->element('p', array(), 'You are not logged in');
-        } else {
-            common_log(LOG_INFO, 'fileroot : ' . $_SERVER['DOCUMENT_ROOT'] . '/file/');
-            $dir = opendir($_SERVER['DOCUMENT_ROOT'] . '/file/');
-            if ($dir === false) {
-                $err = error_get_last();
-                common_log(LOG_INFO, 'Error opening dir : ' . $err['message']);
-                return;
-            }
-            $args = $this->returnToArgs();
-            foreach (array_keys($args) as $key) {
-                common_log(LOG_INFO, $key . ' => ' . $args[$key]);
-                if (is_array($args[$key])) {
-                    foreach (array_keys($args[$key]) as $skey) {
-                        common_log(LOG_INFO, '   ' . $skey . ' => ' . $args[$key][$skey]);
-                    }
-                }
-            }
-            $pathparts = explode('/', $args[1]['nickname']);
-            $username = $pathparts[0];
-            $this->elementStart('ul', array('class' => 'photothumbs'));
-
-                       //scorbett
-                       $photo_obj = new GNUsocialPhoto();
-                       $photo_obj->getGalleryPage(1, 0, 9);
-
-            while (false !== ($file = readdir($dir))) {
-                $fparts = explode('-', $file);
-                if ($fparts[0] == $username // uploaded by this user
-                    && ((substr($file, -4) == '.png') 
-                        || (substr($file, -4) == '.jpg') // XXX: is this needed? status.net seems to save jpgs as .jpeg
-                        || (substr($file, -5) == '.jpeg')
-                        || (substr($file, -4) == '.gif'))) { // and it's an image
-                        common_log(LOG_INFO, 'file : ' . $file);
-                        $this->elementStart('li');
-                        $this->elementStart('a', array('href' => 'http://' . common_config('site', 'server') . '/file/' . $file));
-                        if (!file_exists(INSTALLDIR . '/file/thumb.' . $file)) {
-                            photo_make_thumbnail($file);
-                        }
-                        $this->element('img', array('src' => 'http://' . common_config('site', 'server') . '/file/' . 'thumb.' .  $file));
-                        $this->elementEnd('a');
-                        $this->elementEnd('li');
-                }
-            }
-            $this->elementEnd('ul');
+        $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)
+    {
+        $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' => $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' => '#',
+        //                          'onclick' => 'return increasePhotoSize()'), '+');
+        //$this->raw(' | ');
+        //$this->element('a', array('href' => '#',
+        //                          'onclick' => 'return decreasePhotoSize()'), '-');
+        //$this->raw(' | ');
+
+        $this->showResizeImagesBox();
+        $this->elementEnd('div');
+
+        foreach ($photos as $photo) {
+            $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');
+        }
+
+    }
+
+
+    function showContent()
+    {
+        if (!empty($this->albumid))
+            $this->showAlbum($this->albumid);
+        else
+            $this->showAlbums();
     }
 }