gnu-social/plugins/GNUsocialPhotos/actions/photos.php

175 lines
5.5 KiB
PHP
Raw Normal View History

<?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>
2010-12-28 14:31:34 +00:00
* @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);
}
2010-12-27 02:42:45 +00:00
require_once INSTALLDIR.'/lib/personalgroupnav.php';
class PhotosAction extends Action
{
var $user = null;
function prepare(array $args = array())
{
parent::prepare($args);
$args = $this->returnToArgs();
$username = $args[1]['nickname'];
2010-12-28 14:31:34 +00:00
$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()
{
parent::handle();
$this->showPage();
}
function title()
{
if (empty($this->user)) {
return _m('No such user.');
} else {
return sprintf(_m("%s's Photos."), $this->user->nickname);
}
}
2010-12-21 21:25:11 +00:00
function showLocalNav()
{
2010-12-27 02:42:45 +00:00
$nav = new PersonalGroupNav($this);
2010-12-21 21:25:11 +00:00
$nav->show();
}
2010-12-29 01:45:25 +00:00
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');
}
2010-12-28 14:31:34 +00:00
function showAlbums()
{
$album = new GNUsocialPhotoAlbum();
2010-12-29 03:14:19 +00:00
$album->profile_id = $this->user->id;
2010-12-28 14:31:34 +00:00
$albums = array();
if (!$album->find()) {
2010-12-29 03:14:19 +00:00
GNUsocialPhotoAlbum::newAlbum($this->user->id, 'Default');
2010-12-28 14:31:34 +00:00
}
2010-12-28 15:38:50 +00:00
$this->elementStart('div', array('class' => 'galleryheader'));
2010-12-29 01:45:25 +00:00
//$this->element('a', array('href' => '#',
// 'onclick' => 'return increasePhotoSize()'), '+');
//$this->raw(' | ');
//$this->element('a', array('href' => '#',
// 'onclick' => 'return decreasePhotoSize()'), '-');
$this->showResizeImagesBox();
2010-12-28 15:38:50 +00:00
$this->elementEnd('div');
2010-12-29 01:45:25 +00:00
2010-12-28 14:31:34 +00:00
while ($album->fetch()) {
2010-12-28 14:57:28 +00:00
$this->elementStart('div', array('class' => 'photocontainer'));
2010-12-28 14:31:34 +00:00
$this->elementStart('a', array('href' => $album->getPageLink()));
2010-12-28 15:38:50 +00:00
$this->element('img', array('src' => $album->getThumbUri(),
'class' => 'albumingallery'));
2010-12-28 14:31:34 +00:00
$this->elementEnd('a');
2010-12-28 14:57:28 +00:00
$this->element('h3', array(), $album->album_name);
$this->elementEnd('div');
2010-12-28 14:31:34 +00:00
}
}
function showAlbum($album_id)
{
2013-10-14 23:20:36 +01:00
$album = GNUsocialPhotoAlbum::getKV('album_id', $album_id);
2010-12-28 14:31:34 +00:00
if (!$album) {
return;
}
2010-12-28 14:31:34 +00:00
$page = $_GET['pageid'];
if (!filter_var($page, FILTER_VALIDATE_INT)){
$page = 1;
}
2010-12-28 14:31:34 +00:00
$photos = GNUsocialPhoto::getGalleryPage($page, $album->album_id, 9);
2010-12-28 15:38:50 +00:00
$this->elementStart('div', array('class' => 'galleryheader'));
2010-12-27 02:42:45 +00:00
if ($page > 1) {
2010-12-28 14:31:34 +00:00
$this->element('a', array('href' => $album->getPageLink() . '?pageid=' . ($page-1)), 'Previous page');
2010-12-28 15:38:50 +00:00
$this->raw(' | ');
2010-12-27 02:42:45 +00:00
}
if (GNUsocialPhoto::getGalleryPage($page+1, $album->album_id, 9)) {
2010-12-28 14:31:34 +00:00
$this->element('a', array('href' => $album->getPageLink() . '?pageid=' . ($page+1) ), 'Next page');
2010-12-28 15:38:50 +00:00
$this->raw(' | ');
2010-12-27 02:42:45 +00:00
}
2010-12-29 01:45:25 +00:00
//$this->element('a', array('href' => '#',
// 'onclick' => 'return increasePhotoSize()'), '+');
//$this->raw(' | ');
//$this->element('a', array('href' => '#',
// 'onclick' => 'return decreasePhotoSize()'), '-');
//$this->raw(' | ');
$this->showResizeImagesBox();
2010-12-28 15:38:50 +00:00
$this->elementEnd('div');
2010-12-27 02:42:45 +00:00
foreach ($photos as $photo) {
2010-12-27 02:42:45 +00:00
$this->elementStart('a', array('href' => $photo->getPageLink()));
2010-12-28 14:57:28 +00:00
$this->elementStart('div', array('class' => 'photocontainer'));
2010-12-28 15:38:50 +00:00
$this->element('img', array('src' => $photo->thumb_uri,
'class' => 'photoingallery'));
2010-12-28 14:57:28 +00:00
$this->element('div', array('class' => 'phototitle'), $photo->title);
$this->elementEnd('div');
$this->elementEnd('a');
2010-08-03 22:07:07 +01:00
}
2010-12-28 14:57:28 +00:00
2010-08-03 22:07:07 +01:00
}
2010-12-28 14:31:34 +00:00
function showContent()
{
if (!empty($this->albumid))
$this->showAlbum($this->albumid);
else
$this->showAlbums();
}
}