]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/galleryaction.php
Debug some of the subscriptions+tags problems
[quix0rs-gnu-social.git] / lib / galleryaction.php
1 <?php
2 /**
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, 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('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 class GalleryAction extends Action
31 {
32     var $profile = null;
33     var $user = 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('subscriptions', $args), 301);
54             return false;
55         }
56
57         $this->user = User::staticGet('nickname', $nickname);
58
59         if (!$this->user) {
60             $this->clientError(_('No such user.'), 404);
61             return false;
62         }
63
64         $this->profile = $this->user->getProfile();
65
66         if (!$this->profile) {
67             $this->serverError(_('User has no profile.'));
68             return false;
69         }
70
71         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
72
73         $this->tag = $this->trimmed('tag');
74
75         return true;
76     }
77
78     function isReadOnly()
79     {
80         return true;
81     }
82
83     function handle($args)
84     {
85         parent::handle($args);
86
87                 # Post from the tag dropdown; redirect to a GET
88
89                 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
90                     common_redirect($this->selfUrl(), 307);
91             return;
92                 }
93
94         $this->showPage();
95     }
96
97     function showLocalNav()
98     {
99         $nav = new SubGroupNav($this, $this->user);
100         $nav->show();
101     }
102
103     function showContent()
104     {
105         $this->showTagsDropdown();
106     }
107
108     function showTagsDropdown()
109     {
110         $tag = $this->trimmed('tag');
111
112         $tags = $this->getAllTags();
113
114         $content = array();
115
116         foreach ($tags as $t) {
117             $content[$t] = $t;
118         }
119         if ($tags) {
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'));
126             $this->element('a',
127                            array('href' =>
128                                  common_local_url($this->trimmed('action'),
129                                                   array('nickname' =>
130                                                         $this->user->nickname))),
131                            _('All'));
132             $this->elementEnd('li');
133             $this->elementStart('li', array('id'=>'filter_tags_item'));
134             $this->elementStart('form', array('name' => 'bytag',
135                                                'id' => 'bytag',
136                                                'method' => 'post'));
137             $this->dropdown('tag', _('Tag'), $content,
138                             _('Choose a tag to narrow list'), false, $tag);
139             $this->submit('go', _('Go'));
140             $this->elementEnd('form');
141             $this->elementEnd('li');
142             $this->elementEnd('ul');
143             $this->elementEnd('dd');
144             $this->elementEnd('dl');
145         }
146     }
147
148     // Get list of tags we tagged other users with
149
150     function getTags($lst, $usr)
151     {
152         $profile_tag = new Notice_tag();
153         $profile_tag->query('SELECT DISTINCT(tag) ' .
154                             'FROM profile_tag, subscription ' .
155                             'WHERE tagger = ' . $this->profile->id . ' ' .
156                             'AND ' . $usr . ' = ' . $this->profile->id . ' ' .
157                             'AND ' . $lst . ' = tagged ' .
158                             'AND tagger != tagged');
159         $tags = array();
160         while ($profile_tag->fetch()) {
161             $tags[] = $profile_tag->tag;
162         }
163         $profile_tag->free();
164         return $tags;
165     }
166
167     function getAllTags()
168     {
169         return array();
170     }
171 }