3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, Inc.
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 if (!defined('STATUSNET') && !defined('LACONICA')) {
24 require_once INSTALLDIR.'/lib/profilelist.php';
28 define('AVATARS_PER_PAGE', 80);
30 class GalleryAction extends OwnerDesignAction
36 function prepare($args)
38 parent::prepare($args);
40 // FIXME very similar code below
42 $nickname_arg = $this->arg('nickname');
43 $nickname = common_canonical_nickname($nickname_arg);
45 // Permanent redirect on non-canonical nickname
47 if ($nickname_arg != $nickname) {
48 $args = array('nickname' => $nickname);
49 if ($this->arg('page') && $this->arg('page') != 1) {
50 $args['page'] = $this->arg['page'];
52 common_redirect(common_local_url($this->trimmed('action'), $args), 301);
56 $this->user = User::staticGet('nickname', $nickname);
59 $this->clientError(_('No such user.'), 404);
63 $this->profile = $this->user->getProfile();
65 if (!$this->profile) {
66 $this->serverError(_('User has no profile.'));
70 $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
72 $this->tag = $this->trimmed('tag');
73 $this->q = $this->trimmed('q');
78 function isReadOnly($args)
83 function handle($args)
85 parent::handle($args);
87 # Post from the tag dropdown; redirect to a GET
89 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
90 common_redirect($this->selfUrl(), 303);
97 function showLocalNav()
99 $nav = new SubGroupNav($this, $this->user);
103 function showContent()
105 $this->showTagsDropdown();
108 function showTagsDropdown()
110 $tag = $this->trimmed('tag');
112 $tags = $this->getAllTags();
116 foreach ($tags as $t) {
120 $this->elementStart('dl', array('id'=>'filter_tags'));
121 $this->element('dt', null, _('Filter tags'));
122 $this->elementStart('dd');
123 $this->elementStart('ul');
124 $this->elementStart('li', array('id' => 'filter_tags_all',
125 'class' => 'child_1'));
128 common_local_url($this->trimmed('action'),
130 $this->user->nickname))),
132 $this->elementEnd('li');
133 $this->elementStart('li', array('id'=>'filter_tags_item'));
134 $this->elementStart('form', array('name' => 'bytag',
135 'id' => 'form_filter_bytag',
136 'action' => common_path('?action=' . $this->trimmed('action')),
137 'method' => 'post'));
138 $this->elementStart('fieldset');
139 $this->element('legend', null, _('Select tag to filter'));
140 $this->dropdown('tag', _('Tag'), $content,
141 _('Choose a tag to narrow list'), false, $tag);
142 $this->hidden('nickname', $this->user->nickname);
143 $this->submit('submit', _('Go'));
144 $this->elementEnd('fieldset');
145 $this->elementEnd('form');
146 $this->elementEnd('li');
147 $this->elementEnd('ul');
148 $this->elementEnd('dd');
149 $this->elementEnd('dl');
153 // Get list of tags we tagged other users with
155 function getTags($lst, $usr)
157 $profile_tag = new Notice_tag();
158 $profile_tag->query('SELECT DISTINCT(tag) ' .
159 'FROM profile_tag, subscription ' .
160 'WHERE tagger = ' . $this->profile->id . ' ' .
161 'AND ' . $usr . ' = ' . $this->profile->id . ' ' .
162 'AND ' . $lst . ' = tagged ' .
163 'AND tagger != tagged');
165 while ($profile_tag->fetch()) {
166 $tags[] = $profile_tag->tag;
168 $profile_tag->free();
172 function getAllTags()