]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Individual photo page
authorMax Shinn <max@zeus.(none)>
Sat, 25 Dec 2010 14:02:06 +0000 (08:02 -0600)
committerMax Shinn <max@zeus.(none)>
Sat, 25 Dec 2010 14:02:06 +0000 (08:02 -0600)
plugins/GNUsocialPhotos/GNUsocialPhotosPlugin.php
plugins/GNUsocialPhotos/actions/photo.php [new file with mode: 0644]
plugins/GNUsocialPhotos/actions/photoupload.php
plugins/GNUsocialPhotos/classes/gnusocialphoto.php

index deddd502aa0f3dc2f4ae931b0c2ab920326d5645..48431195571d02c43212579e7843646af907ae69 100644 (file)
@@ -51,6 +51,10 @@ class GNUsocialPhotosPlugin extends Plugin
             include_once $dir . '/lib/photolib.php';
             include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
             break;
+               case 'PhotoAction':
+               include_once $dir . '/lib/photolib.php';
+                       include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
+                       break;
         default:
             break;
         }
@@ -66,11 +70,14 @@ class GNUsocialPhotosPlugin extends Plugin
                                 array(new ColumnDef('notice_id', 'int(11)', null, false),
                                       new ColumnDef('album_id', 'int(11)', null, false),
                                       new ColumnDef('uri', 'varchar(512)', null, false),
-                                      new ColumnDef('thumb_uri', 'varchar(512)', null, false)));
+                                      new ColumnDef('thumb_uri', 'varchar(512)', null, false),
+                                                                         new ColumnDef('title', 'varchar(512)', null, false),
+                                                                         new ColumnDef('photo_description', 'text', null, false)));
         $schema->ensureTable('GNUsocialPhotoAlbum',
                                 array(new ColumnDef('album_id', 'int(11)', null, false, 'PRI', null, null, true),
                                       new ColumnDef('profile_id', 'int(11)', null, false),
-                                      new ColumnDef('album_name', 'varchar(256)', null, false)));
+                                      new ColumnDef('album_name', 'varchar(256)', null, false),
+                                                                         new ColumnDef('album_description', 'text', null, false)));
                                           
     }
 
@@ -78,6 +85,7 @@ class GNUsocialPhotosPlugin extends Plugin
     {
         $m->connect(':nickname/photos', array('action' => 'photos'));
         $m->connect('main/uploadphoto', array('action' => 'photoupload'));
+               $m->connect(':nickname/photo/:photoid', array('action' => 'photo'));
         return true;
     }
 
diff --git a/plugins/GNUsocialPhotos/actions/photo.php b/plugins/GNUsocialPhotos/actions/photo.php
new file mode 100644 (file)
index 0000000..3c2014e
--- /dev/null
@@ -0,0 +1,103 @@
+<?php
+/**
+ * GNU Social
+ * Copyright (C) 2010, Free Software Foundation, Inc.
+ *
+ * PHP version 5
+ *
+ * LICENCE:
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * @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
+ */
+
+if (!defined('STATUSNET')) {
+    exit(1);
+}
+
+include_once INSTALLDIR . '/actions/conversation.php';
+include_once INSTALLDIR . '/classes/Notice.php';
+
+class PhotoAction extends Action
+{
+    var $user = null;
+
+    function prepare($args)
+    {
+        parent::prepare($args);
+
+        $args = $this->returnToArgs();
+        $username = $args[1]['nickname'];
+               $this->photoid = $args[1]['photoid'];
+        if (common_valid_profile_tag($username) == 0) {
+            $this->user = null;
+        } else {
+            $this->user = Profile::staticGet('nickname', $username);
+        }
+               $this->photo = GNUsocialPhoto::staticGet('notice_id', $this->photoid);
+               
+               $this->notice = Notice::staticGet('id', $this->photoid);
+        $notices = Notice::conversationStream((int)$this->photoid-1, null, null); //Why do I have to do -1?
+
+        $this->conversation = new ConversationTree($notices, $this);
+        return true;
+
+    }
+
+    function handle($args)
+    {
+        parent::handle($args);
+        $this->showPage();
+    }
+
+    function title()
+    {
+        if (empty($this->user)) {
+            return _m('No such user.');
+        } else if (empty($this->photo)) {
+                   return _m('No such photo.');
+               } else if (!empty($this->photo->title)) {
+            return $this->photo->title;
+               } else {
+            return sprintf(_m("%s's Photo."), $this->user->nickname);
+        }
+    }
+
+    function showLocalNav()
+    {
+        $nav = new GNUsocialPhotoNav($this);
+        $nav->show();
+    }
+
+    function showContent()
+    {
+        if(empty($this->user)) {
+            return;
+        }
+
+        $this->elementStart('a', array('href' => $this->photo->uri));
+        $this->element('img', array('src' => $this->photo->uri));
+        $this->elementEnd('a');
+               $this->element('p', array(), $this->photo->photo_description);
+               //This is a hack to hide the top-level comment
+               //$this->element('style', array(), "#notice-{$this->photoid} div { display: none } #notice-{$this->photoid} ol li div { display: inline }");
+               $this->conversation->show();
+    }
+}
index b4e7771a18ff1b39e93df113be5bf3fb30d47fc3..358c99f49c22a7450ae2530d441def34c8493475 100644 (file)
@@ -64,9 +64,20 @@ class PhotouploadAction extends Action
             $this->elementStart('form', array('enctype' => 'multipart/form-data',
                                               'method' => 'post',
                                               'action' => common_local_url('photoupload')));
+                       $this->elementStart('ul', 'form_data');
+                       $this->elementStart('li');
             $this->element('input', array('name' => 'photofile',
                                           'type' => 'file',
                                           'id' => 'photofile'));
+                       $this->elementEnd('li');
+                       //$this->element('br');
+                       $this->elementStart('li');
+                       $this->input('phototitle', "Title", $this->trimmed('phototitle'), "The title of the photo. (Optional)");
+                       $this->elementEnd('li');
+                       $this->elementStart('li');
+                       $this->textarea('photo_description', "Description", $this->trimmed('photo_description'), "A description of the photo. (Optional)");
+                       $this->elementEnd('li');
+                       $this->elementEnd('ul');
             $this->submit('upload', _('Upload'));
             $this->elementEnd('form');
         }
@@ -129,6 +140,9 @@ class PhotouploadAction extends Action
             return;
         }
 
+               $title = $this->trimmed('phototitle');
+               $photo_description = $this->trimmed('photo_description');
+
         common_log(LOG_INFO, 'upload path : ' . $imagefile->filepath);
 
         $filename = $cur->nickname . '-' . common_timestamp() . sha1_file($imagefile->filepath) .  image_type_to_extension($imagefile->type);
@@ -140,12 +154,9 @@ class PhotouploadAction extends Action
        
         // TODO: proper multiple album support 
         $album = GNUsocialPhotoAlbum::staticGet('profile_id', $profile_id);
-        if(!$album) {
+        if(!$album)
             $album = GNUsocialPhotoAlbum::newAlbum($profile_id, 'Default');
-            GNUsocialPhoto::saveNew($profile_id, $album->album_id, $thumb_uri, $uri, 'web', false);
-        } else {
-            GNUsocialPhoto::saveNew($profile_id, $album->album_id, $thumb_uri, $uri, 'web', false);
-        }
+        GNUsocialPhoto::saveNew($profile_id, $album->album_id, $thumb_uri, $uri, 'web', false, $title, $photo_description);
     }
 
 }
index 3df160822b3596f461b34b9690b3e1b478906289..5e6a63b44caebaa0dd369de7f5032fe2d986d063 100644 (file)
@@ -39,6 +39,8 @@ class GNUsocialPhoto extends Memcached_DataObject
     public $album_id;   // int(11)
     public $uri;        // varchar(512)
     public $thumb_uri;  // varchar(512)
+       public $title;      // varchar(512)
+       public $photo_description; // text
     
 
     /**
@@ -71,7 +73,9 @@ class GNUsocialPhoto extends Memcached_DataObject
         return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
                      'album_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
                      'uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
-                     'thumb_uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL);
+                     'thumb_uri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
+                     'title' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
+                     'photo_description' => DB_DATAOBJECT_TXT + DB_DATAOBJECT_NOTNULL);
     }
     
     function keys()
@@ -89,12 +93,14 @@ class GNUsocialPhoto extends Memcached_DataObject
         return array(false, false, false);
     }
 
-    function saveNew($profile_id, $album_id, $thumb_uri, $uri, $source, $insert_now)
+    function saveNew($profile_id, $album_id, $thumb_uri, $uri, $source, $insert_now, $title = null, $photo_description = null)
     {
         $photo = new GNUsocialPhoto();
         $photo->thumb_uri = $thumb_uri;
         $photo->uri = $uri;
                $photo->album_id = $album_id;
+               if(!empty($title)) $photo->title = $title;
+               if(!empty($photo_description)) $photo->photo_description = $photo_description;
 
         if($insert_now) {
             $notice = Notice::saveNew($profile_id, $uri, $source);