2010-08-03 00:22:55 +01:00
|
|
|
<?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>
|
2010-09-04 23:21:03 +01:00
|
|
|
* @author Sean Corbett <sean@gnu.org>
|
2010-08-03 00:22:55 +01:00
|
|
|
* @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';
|
|
|
|
|
2010-08-03 00:22:55 +01:00
|
|
|
class PhotosAction extends Action
|
|
|
|
{
|
|
|
|
var $user = null;
|
|
|
|
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
2010-12-21 19:54:02 +00:00
|
|
|
$args = $this->returnToArgs();
|
|
|
|
$username = $args[1]['nickname'];
|
|
|
|
if (common_valid_profile_tag($username) == 0) {
|
|
|
|
$this->user = null;
|
|
|
|
} else {
|
|
|
|
$this->user = Profile::staticGet('nickname', $username);
|
|
|
|
}
|
2010-08-03 00:22:55 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
|
|
|
function title()
|
|
|
|
{
|
|
|
|
if (empty($this->user)) {
|
2010-12-21 19:54:02 +00:00
|
|
|
return _m('No such user.');
|
2010-08-03 00:22:55 +01:00
|
|
|
} else {
|
2010-12-21 19:54:02 +00:00
|
|
|
return sprintf(_m("%s's Photos."), $this->user->nickname);
|
2010-08-03 00:22:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-08-03 00:22:55 +01:00
|
|
|
|
|
|
|
function showContent()
|
|
|
|
{
|
2010-12-21 19:54:02 +00:00
|
|
|
if(empty($this->user)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
$page = $_GET['pageid'];
|
|
|
|
if (!filter_var($page, FILTER_VALIDATE_INT)){
|
|
|
|
$page = 1;
|
|
|
|
}
|
2010-09-04 23:21:03 +01:00
|
|
|
|
2010-12-21 19:54:02 +00:00
|
|
|
//TODO choice of available albums by user.
|
|
|
|
//Currently based on fact that each user can only have one album.
|
|
|
|
$album = GNUSocialPhotoAlbum::staticGet('profile_id', $this->user->id);
|
|
|
|
$photos = GNUsocialPhoto::getGalleryPage($page, $album->album_id, 9);
|
2010-09-04 22:17:52 +01:00
|
|
|
|
2010-12-27 02:42:45 +00:00
|
|
|
if ($page > 1) {
|
|
|
|
$this->element('a', array('href' => 'photos?pageid=' . ($page-1)), 'Previous page');
|
|
|
|
}
|
|
|
|
if (GNUsocialPhoto::getGalleryPage($page+1, $album->album_id, 9)) {
|
|
|
|
$this->element('a', array('href' => 'photos?pageid=' . ($page+1) ), 'Next page');
|
|
|
|
}
|
|
|
|
|
2010-12-21 19:54:02 +00:00
|
|
|
$this->elementStart('ul', array('class' => 'photothumbs'));
|
|
|
|
foreach ($photos as $photo) {
|
|
|
|
$this->elementStart('li');
|
2010-12-27 02:42:45 +00:00
|
|
|
$this->elementStart('a', array('href' => $photo->getPageLink()));
|
2010-12-21 19:54:02 +00:00
|
|
|
$this->element('img', array('src' => $photo->thumb_uri));
|
|
|
|
$this->elementEnd('a');
|
|
|
|
$this->elementEnd('li');
|
2010-08-03 22:07:07 +01:00
|
|
|
}
|
2010-12-21 19:54:02 +00:00
|
|
|
$this->elementEnd('ul');
|
2010-08-03 22:07:07 +01:00
|
|
|
}
|
2010-08-03 00:22:55 +01:00
|
|
|
}
|