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;
}
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)));
}
{
$m->connect(':nickname/photos', array('action' => 'photos'));
$m->connect('main/uploadphoto', array('action' => 'photoupload'));
+ $m->connect(':nickname/photo/:photoid', array('action' => 'photo'));
return true;
}
--- /dev/null
+<?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();
+ }
+}
$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');
}
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);
// 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);
}
}
public $album_id; // int(11)
public $uri; // varchar(512)
public $thumb_uri; // varchar(512)
+ public $title; // varchar(512)
+ public $photo_description; // text
/**
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()
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);