]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GNUsocialPhotos/actions/photos.php
no longer have to be logged in to merely view a photo album.
[quix0rs-gnu-social.git] / plugins / GNUsocialPhotos / actions / photos.php
1 <?php
2 /**
3  * GNU Social
4  * Copyright (C) 2010, Free Software Foundation, Inc.
5  *
6  * PHP version 5
7  *
8  * LICENCE:
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Widget
23  * @package   GNU Social
24  * @author    Ian Denhardt <ian@zenhack.net>
25  * @author    Sean Corbett <sean@gnu.org>
26  * @copyright 2010 Free Software Foundation, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 class PhotosAction extends Action
35 {
36     var $user = null;
37
38     function prepare($args)
39     {
40         parent::prepare($args);
41
42         $args = $this->returnToArgs();
43         $username = $args[1]['nickname'];
44         if (common_valid_profile_tag($username) == 0) {
45             $this->user = null;
46         } else {
47             $this->user = Profile::staticGet('nickname', $username);
48         }
49         return true;
50     }
51
52     function handle($args)
53     {
54         parent::handle($args);
55         $this->showPage();
56     }
57
58     function title()
59     {
60         if (empty($this->user)) {
61             return _m('No such user.');
62         } else {
63             return sprintf(_m("%s's Photos."), $this->user->nickname);
64         }
65     }
66
67
68     function showContent()
69     {
70         if(empty($this->user)) {
71             return;
72         }
73         $page = $_GET['pageid'];
74         if (!filter_var($page, FILTER_VALIDATE_INT)){
75             $page = 1;
76         }
77    
78         if ($page > 1) { 
79             $this->element('a', array('href' => 'photos?pageid=' . ($page-1)), 'Previous page');
80         }
81         $this->element('a', array('href' => 'photos?pageid=' . ($page+1) ), 'Next page');
82
83         //TODO choice of available albums by user.
84         //Currently based on fact that each user can only have one album.
85         $album = GNUSocialPhotoAlbum::staticGet('profile_id', $this->user->id);
86         $photos = GNUsocialPhoto::getGalleryPage($page, $album->album_id, 9);
87
88         $this->elementStart('ul', array('class' => 'photothumbs'));
89         foreach ($photos as $photo) {
90             $this->elementStart('li');
91             $this->elementStart('a', array('href' => $photo->uri));
92             $this->element('img', array('src' => $photo->thumb_uri));
93             $this->elementEnd('a');
94             $this->elementEnd('li');
95         }
96         $this->elementEnd('ul');
97     }
98 }