]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/featured.php
change function headers to K&R style
[quix0rs-gnu-social.git] / actions / featured.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 require_once(INSTALLDIR.'/lib/stream.php');
23 require_once(INSTALLDIR.'/lib/profilelist.php');
24
25 class FeaturedAction extends StreamAction {
26
27     function handle($args)
28     {
29         parent::handle($args);
30
31         $page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
32
33         common_show_header(_('Featured users'),
34                            array($this, 'show_header'), null,
35                            array($this, 'show_top'));
36
37         $this->show_notices($page);
38
39         common_show_footer();
40     }
41
42     function show_top()
43     {
44         $instr = $this->get_instructions();
45         $output = common_markup_to_html($instr);
46         common_element_start('div', 'instructions');
47         common_raw($output);
48         common_element_end('div');
49         $this->public_views_menu();
50     }
51
52     function show_header()
53     {
54     }
55
56     function get_instructions()
57     {
58         return _('Featured users');
59     }
60
61     function show_notices($page)
62     {
63
64         // XXX: Note I'm doing it this two-stage way because a raw query
65         // with a JOIN was *not* working. --Zach
66
67         $featured_nicks = common_config('nickname', 'featured');
68
69         if (count($featured_nicks) > 0) {
70
71             $quoted = array();
72
73             foreach ($featured_nicks as $nick) {
74                 $quoted[] = "'$nick'";
75             }
76
77             $user = new User;
78             $user->whereAdd(sprintf('nickname IN (%s)', implode(',', $quoted)));
79             $user->limit(($page - 1) * PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1);
80             $user->orderBy('user.nickname ASC');
81
82             $user->find();
83
84             $profile_ids = array();
85
86             while ($user->fetch()) {
87                 $profile_ids[] = $user->id;
88             }
89
90             $profile = new Profile;
91             $profile->whereAdd(sprintf('profile.id IN (%s)', implode(',', $profile_ids)));
92             $profile->orderBy('nickname ASC');
93
94             $cnt = $profile->find();
95
96             if ($cnt > 0) {
97                 $featured = new ProfileList($profile);
98                 $featured->show_list();
99             }
100
101             $profile->free();
102
103             common_pagination($page > 1, $cnt > PROFILES_PER_PAGE, $page, 'featured');
104         }
105     }
106
107 }