forked from GNUsocial/gnu-social
Individual photo page
This commit is contained in:
parent
ce9f8eed27
commit
6cc0a910d2
@ -51,6 +51,10 @@ class GNUsocialPhotosPlugin extends Plugin
|
|||||||
include_once $dir . '/lib/photolib.php';
|
include_once $dir . '/lib/photolib.php';
|
||||||
include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
|
include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
|
||||||
break;
|
break;
|
||||||
|
case 'PhotoAction':
|
||||||
|
include_once $dir . '/lib/photolib.php';
|
||||||
|
include_once $dir . '/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -66,11 +70,14 @@ class GNUsocialPhotosPlugin extends Plugin
|
|||||||
array(new ColumnDef('notice_id', 'int(11)', null, false),
|
array(new ColumnDef('notice_id', 'int(11)', null, false),
|
||||||
new ColumnDef('album_id', 'int(11)', null, false),
|
new ColumnDef('album_id', 'int(11)', null, false),
|
||||||
new ColumnDef('uri', 'varchar(512)', 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',
|
$schema->ensureTable('GNUsocialPhotoAlbum',
|
||||||
array(new ColumnDef('album_id', 'int(11)', null, false, 'PRI', null, null, true),
|
array(new ColumnDef('album_id', 'int(11)', null, false, 'PRI', null, null, true),
|
||||||
new ColumnDef('profile_id', 'int(11)', null, false),
|
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(':nickname/photos', array('action' => 'photos'));
|
||||||
$m->connect('main/uploadphoto', array('action' => 'photoupload'));
|
$m->connect('main/uploadphoto', array('action' => 'photoupload'));
|
||||||
|
$m->connect(':nickname/photo/:photoid', array('action' => 'photo'));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
103
plugins/GNUsocialPhotos/actions/photo.php
Normal file
103
plugins/GNUsocialPhotos/actions/photo.php
Normal file
@ -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();
|
||||||
|
}
|
||||||
|
}
|
@ -64,9 +64,20 @@ class PhotouploadAction extends Action
|
|||||||
$this->elementStart('form', array('enctype' => 'multipart/form-data',
|
$this->elementStart('form', array('enctype' => 'multipart/form-data',
|
||||||
'method' => 'post',
|
'method' => 'post',
|
||||||
'action' => common_local_url('photoupload')));
|
'action' => common_local_url('photoupload')));
|
||||||
|
$this->elementStart('ul', 'form_data');
|
||||||
|
$this->elementStart('li');
|
||||||
$this->element('input', array('name' => 'photofile',
|
$this->element('input', array('name' => 'photofile',
|
||||||
'type' => 'file',
|
'type' => 'file',
|
||||||
'id' => 'photofile'));
|
'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->submit('upload', _('Upload'));
|
||||||
$this->elementEnd('form');
|
$this->elementEnd('form');
|
||||||
}
|
}
|
||||||
@ -129,6 +140,9 @@ class PhotouploadAction extends Action
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$title = $this->trimmed('phototitle');
|
||||||
|
$photo_description = $this->trimmed('photo_description');
|
||||||
|
|
||||||
common_log(LOG_INFO, 'upload path : ' . $imagefile->filepath);
|
common_log(LOG_INFO, 'upload path : ' . $imagefile->filepath);
|
||||||
|
|
||||||
$filename = $cur->nickname . '-' . common_timestamp() . sha1_file($imagefile->filepath) . image_type_to_extension($imagefile->type);
|
$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
|
// TODO: proper multiple album support
|
||||||
$album = GNUsocialPhotoAlbum::staticGet('profile_id', $profile_id);
|
$album = GNUsocialPhotoAlbum::staticGet('profile_id', $profile_id);
|
||||||
if(!$album) {
|
if(!$album)
|
||||||
$album = GNUsocialPhotoAlbum::newAlbum($profile_id, 'Default');
|
$album = GNUsocialPhotoAlbum::newAlbum($profile_id, 'Default');
|
||||||
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);
|
||||||
} else {
|
|
||||||
GNUsocialPhoto::saveNew($profile_id, $album->album_id, $thumb_uri, $uri, 'web', false);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -39,6 +39,8 @@ class GNUsocialPhoto extends Memcached_DataObject
|
|||||||
public $album_id; // int(11)
|
public $album_id; // int(11)
|
||||||
public $uri; // varchar(512)
|
public $uri; // varchar(512)
|
||||||
public $thumb_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,
|
return array('notice_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
|
||||||
'album_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
|
'album_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
|
||||||
'uri' => DB_DATAOBJECT_STR + 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()
|
function keys()
|
||||||
@ -89,12 +93,14 @@ class GNUsocialPhoto extends Memcached_DataObject
|
|||||||
return array(false, false, false);
|
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 = new GNUsocialPhoto();
|
||||||
$photo->thumb_uri = $thumb_uri;
|
$photo->thumb_uri = $thumb_uri;
|
||||||
$photo->uri = $uri;
|
$photo->uri = $uri;
|
||||||
$photo->album_id = $album_id;
|
$photo->album_id = $album_id;
|
||||||
|
if(!empty($title)) $photo->title = $title;
|
||||||
|
if(!empty($photo_description)) $photo->photo_description = $photo_description;
|
||||||
|
|
||||||
if($insert_now) {
|
if($insert_now) {
|
||||||
$notice = Notice::saveNew($profile_id, $uri, $source);
|
$notice = Notice::saveNew($profile_id, $uri, $source);
|
||||||
|
Loading…
Reference in New Issue
Block a user