]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/subscribed.php
924e2b67b3b6c4829bf00c781d1fe9b8c247c27c
[quix0rs-gnu-social.git] / actions / subscribed.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')) { exit(1) }
21
22 class SubscribedAction extends Action {
23
24         # Who is subscribed to a given user?
25         
26         function handle($args) {
27                 parent::handle($args);
28                 $nickname = $this->arg('nickname');
29                 $profile = Profile::staticGet('nickname', $nickname);
30                 if (!$profile) {
31                         $this->no_such_user();
32                 }
33                 $user = User::staticGet($profile->id);
34                 if (!$user) {
35                         $this->no_such_user();
36                 }
37                 
38                 $page = $this->arg('page') || 1;
39                 $this->show_subscribed($profile, $page);
40         }
41
42         function show_subscribed($profile, $page) {
43
44                 $sub = DB_DataObject::factory('subscriptions');
45                 $sub->subscribed = $profile->id;
46                 
47                 # We ask for an extra one to know if we need to do another page
48                 
49                 $sub->limit((($page-1)*SUBSCRIPTIONS_PER_PAGE)+1, SUBSCRIPTIONS_PER_PAGE + 1);
50
51                 $subs_count = $subs->find();
52                 
53                 common_start_element('div', 'subscriptions');
54                 
55                 $idx = 0;
56                 
57                 while ($subs->fetch()) {
58                         $idx++;
59                         if ($idx % SUBSCRIPTIONS_PER_ROW == 1) {
60                                 common_start_element('div', 'row');
61                         }
62
63                         common_start_element('a', array('title' => $subs->fullname ||
64                                                                                                    $subs->nickname,
65                                                                                         'href' => $subs->profileurl,
66                                                                                         'class' => 'subscription'));
67                         common_element('img', array('src' => $subs->avatar,
68                                                                                 'class' => 'avatar'));
69                         common_end_element('a');
70                         
71                         if ($idx % SUBSCRIPTIONS_PER_ROW == 0) {
72                                 common_end_element('div');
73                         }
74                         
75                         if ($idx == SUBSCRIPTIONS_PER_PAGE) {
76                                 break;
77                         }
78                 }
79
80                 if ($page > 1) {
81                         common_element('a', array('href' => 
82                                                                           common_local_url('subscriptions',
83                                                                                                            array('nickname' => $profile->nickname,
84                                                                                                                          'page' => $page - 1)),
85                                                                           'class' => 'prev'),
86                                            _t('Previous'));
87                 }
88                 
89                 if ($subs_count > SUBSCRIPTIONS_PER_PAGE) {
90                         common_element('a', array('href' => 
91                                                                           common_local_url('subscriptions',
92                                                                                                            array('nickname' => $profile->nickname,
93                                                                                                                          'page' => $page + 1)),
94                                                                           'class' => 'next'),
95                                            _t('Next'));
96                 }
97                 common_end_element('div');
98         }
99 }