]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/galleryaction.php
i18n/L10n updates.
[quix0rs-gnu-social.git] / lib / galleryaction.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
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.
10  *
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.
15  *
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/>.
18  */
19
20 if (!defined('STATUSNET') && !defined('LACONICA')) {
21     exit(1);
22 }
23
24 require_once INSTALLDIR.'/lib/profilelist.php';
25
26 // 10x8
27
28 define('AVATARS_PER_PAGE', 80);
29
30 // @todo FIXME: Class documentation missing.
31 class GalleryAction extends OwnerDesignAction
32 {
33     var $profile = null;
34     var $page = null;
35     var $tag = null;
36
37     function prepare($args)
38     {
39         parent::prepare($args);
40
41         // FIXME very similar code below
42
43         $nickname_arg = $this->arg('nickname');
44         $nickname = common_canonical_nickname($nickname_arg);
45
46         // Permanent redirect on non-canonical nickname
47
48         if ($nickname_arg != $nickname) {
49             $args = array('nickname' => $nickname);
50             if ($this->arg('page') && $this->arg('page') != 1) {
51                 $args['page'] = $this->arg['page'];
52             }
53             common_redirect(common_local_url($this->trimmed('action'), $args), 301);
54             return false;
55         }
56
57         $this->user = User::staticGet('nickname', $nickname);
58
59         if (!$this->user) {
60             // TRANS: Client error displayed when trying to perform a gallery action with an unknown user.
61             $this->clientError(_('No such user.'), 404);
62             return false;
63         }
64
65         $this->profile = $this->user->getProfile();
66
67         if (!$this->profile) {
68             // TRANS: Server error displayed when trying to perform a gallery action with a user without a profile.
69             $this->serverError(_('User has no profile.'));
70             return false;
71         }
72
73         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
74
75         $this->tag = $this->trimmed('tag');
76         $this->q   = $this->trimmed('q');
77
78         return true;
79     }
80
81     function isReadOnly($args)
82     {
83         return true;
84     }
85
86     function handle($args)
87     {
88         parent::handle($args);
89
90                 // Post from the tag dropdown; redirect to a GET
91
92                 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
93                     common_redirect($this->selfUrl(), 303);
94             return;
95                 }
96
97         $this->showPage();
98     }
99
100     function showObjectNav()
101     {
102         $nav = new SubGroupNav($this, $this->user);
103         $nav->show();
104     }
105
106     function showContent()
107     {
108         $this->showTagsDropdown();
109     }
110
111     function showTagsDropdown()
112     {
113         $tag = $this->trimmed('tag');
114
115         $tags = $this->getAllTags();
116
117         $content = array();
118
119         foreach ($tags as $t) {
120             $content[$t] = $t;
121         }
122         if ($tags) {
123             $this->elementStart('ul');
124             $this->elementStart('li', array('id' => 'filter_tags_all',
125                                              'class' => 'child_1'));
126             $this->element('a',
127                            array('href' =>
128                                  common_local_url($this->trimmed('action'),
129                                                   array('nickname' =>
130                                                         $this->user->nickname))),
131                            // TRANS: List element on gallery action page to show all tags.
132                            _m('TAGS','All'));
133             $this->elementEnd('li');
134             $this->elementStart('li', array('id'=>'filter_tags_item'));
135             $this->elementStart('form', array('name' => 'bytag',
136                                                'id' => 'form_filter_bytag',
137                                               'action' => common_path('?action=' . $this->trimmed('action')),
138                                                'method' => 'post'));
139             $this->elementStart('fieldset');
140             // TRANS: Fieldset legend on gallery action page.
141             $this->element('legend', null, _('Select tag to filter'));
142             // TRANS: Dropdown field label on gallery action page for a list containing tags.
143             $this->dropdown('tag', _('Tag'), $content,
144                             // TRANS: Dropdown field title on gallery action page for a list containing tags.
145                             _('Choose a tag to narrow list.'), false, $tag);
146             $this->hidden('nickname', $this->user->nickname);
147             // TRANS: Submit button text on gallery action page.
148             $this->submit('submit', _m('BUTTON','Go'));
149             $this->elementEnd('fieldset');
150             $this->elementEnd('form');
151             $this->elementEnd('li');
152             $this->elementEnd('ul');
153         }
154     }
155
156     // Get list of tags we tagged other users with
157     function getTags($lst, $usr)
158     {
159         $profile_tag = new Notice_tag();
160         $profile_tag->query('SELECT DISTINCT(tag) ' .
161                             'FROM profile_tag, subscription ' .
162                             'WHERE tagger = ' . $this->profile->id . ' ' .
163                             'AND ' . $usr . ' = ' . $this->profile->id . ' ' .
164                             'AND ' . $lst . ' = tagged ' .
165                             'AND tagger != tagged');
166         $tags = array();
167         while ($profile_tag->fetch()) {
168             $tags[] = $profile_tag->tag;
169         }
170         $profile_tag->free();
171         return $tags;
172     }
173
174     function getAllTags()
175     {
176         return array();
177     }
178
179     function showProfileBlock()
180     {
181         $block = new AccountProfileBlock($this, $this->profile);
182         $block->show();
183     }
184 }