]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/subscribed.php
61cb8dac668b97b82b99fd1876ec1606117d6a48
[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                 common_show_header($profile->nickname . ": " . _t('Subscribers'));
40                 $this->show_subscribed($profile, $page);
41                 common_show_footer();
42         }
43
44         function show_subscribed($profile, $page) {
45
46                 $subs = DB_DataObject::factory('subscription');
47                 $subs->subscribed = $profile->id;
48                 
49                 # We ask for an extra one to know if we need to do another page
50                 
51                 $subs->limit((($page-1)*SUBSCRIPTIONS_PER_PAGE)+1, SUBSCRIPTIONS_PER_PAGE + 1);
52
53                 $subs_count = $subs->find();
54                 
55                 common_element_start('div', 'subscriptions');
56                 
57                 $idx = 0;
58                 
59                 while ($subs->fetch()) {
60                         $idx++;
61                         if ($idx % SUBSCRIPTIONS_PER_ROW == 1) {
62                                 common_element_start('div', 'row');
63                         }
64
65                         common_element_start('a', array('title' => $subs->fullname ||
66                                                                                                    $subs->nickname,
67                                                                                         'href' => $subs->profileurl,
68                                                                                         'class' => 'subscription'));
69                         $avatar = $subs->getAvatar(AVATAR_STREAM_SIZE);
70                         common_element('img', array('src' => (($avatar) ? $avatar->url : DEFAULT_STREAM_AVATAR),
71                                                                                 'width' => AVATAR_STREAM_SIZE,
72                                                                                 'height' => AVATAR_STREAM_SIZE,
73                                                                                 'class' => 'avatar stream'));
74                         common_element_end('a');
75
76                         # XXX: subscribe form here
77                         
78                         if ($idx % SUBSCRIPTIONS_PER_ROW == 0) {
79                                 common_element_end('div');
80                         }
81                         
82                         if ($idx == SUBSCRIPTIONS_PER_PAGE) {
83                                 break;
84                         }
85                 }
86
87                 if ($page > 1) {
88                         common_element('a', array('href' => 
89                                                                           common_local_url('subscriptions',
90                                                                                                            array('nickname' => $profile->nickname,
91                                                                                                                          'page' => $page - 1)),
92                                                                           'class' => 'prev'),
93                                            _t('Previous'));
94                 }
95                 
96                 if ($subs_count > SUBSCRIPTIONS_PER_PAGE) {
97                         common_element('a', array('href' => 
98                                                                           common_local_url('subscriptions',
99                                                                                                            array('nickname' => $profile->nickname,
100                                                                                                                          'page' => $page + 1)),
101                                                                           'class' => 'next'),
102                                            _t('Next'));
103                 }
104                 common_element_end('div');
105         }
106 }