]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/featured.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / actions / featured.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * List of featured users
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Public
23  * @package   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @author    Evan Prodromou <evan@status.net>
26  * @copyright 2008-2009 StatusNet, Inc.
27  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28  * @link      http://status.net/
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/profilelist.php';
36 require_once INSTALLDIR.'/lib/publicgroupnav.php';
37
38 /**
39  * List of featured users
40  *
41  * @category Public
42  * @package  StatusNet
43  * @author   Zach Copley <zach@status.net>
44  * @author   Evan Prodromou <evan@status.net>
45  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
46  * @link     http://status.net/
47  */
48 class FeaturedAction extends Action
49 {
50     var $page = null;
51
52     function isReadOnly($args)
53     {
54         return true;
55     }
56
57     function prepare($args)
58     {
59         parent::prepare($args);
60         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
61
62         return true;
63     }
64
65     function title()
66     {
67         if ($this->page == 1) {
68             // TRANS: Page title for first page of featured users.
69             return _('Featured users');
70         } else {
71             // TRANS: Page title for all but first page of featured users.
72             // TRANS: %d is the page number being displayed.
73             return sprintf(_('Featured users, page %d'), $this->page);
74         }
75     }
76
77     function handle($args)
78     {
79         parent::handle($args);
80
81         $this->showPage();
82     }
83
84     function showPageNotice()
85     {
86         $instr = $this->getInstructions();
87         $output = common_markup_to_html($instr);
88         $this->elementStart('div', 'instructions');
89         $this->raw($output);
90         $this->elementEnd('div');
91     }
92
93     function showLocalNav()
94     {
95         $nav = new PublicGroupNav($this);
96         $nav->show();
97     }
98
99     function getInstructions()
100     {
101         // TRANS: Description on page displaying featured users.
102         return sprintf(_('A selection of some great users on %s.'),
103                        common_config('site', 'name'));
104     }
105
106     function showContent()
107     {
108         // XXX: Note I'm doing it this two-stage way because a raw query
109         // with a JOIN was *not* working. --Zach
110
111         $featured_nicks = common_config('nickname', 'featured');
112
113         if (count($featured_nicks) > 0) {
114
115             $quoted = array();
116
117             foreach ($featured_nicks as $nick) {
118                 $quoted[] = "'$nick'";
119             }
120
121             $user = new User;
122             $user->whereAdd(sprintf('nickname IN (%s)', implode(',', $quoted)));
123             $user->limit(($this->page - 1) * PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1);
124             $user->orderBy(common_database_tablename('user') .'.nickname ASC');
125
126             $user->find();
127
128             $profile_ids = array();
129
130             while ($user->fetch()) {
131                 $profile_ids[] = $user->id;
132             }
133
134             $profile = new Profile;
135             $profile->whereAdd(sprintf('profile.id IN (%s)', implode(',', $profile_ids)));
136             $profile->orderBy('nickname ASC');
137
138             $cnt = $profile->find();
139
140             if ($cnt > 0) {
141                 $featured = new ProfileList($profile, $this);
142                 $featured->show();
143             }
144
145             $profile->free();
146
147             $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
148                               $this->page, 'featured');
149         }
150     }
151 }