]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/featured.php
Merge branch 'locshunt2' into 0.9.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
49 class FeaturedAction extends Action
50 {
51     var $page = null;
52
53     function isReadOnly($args)
54     {
55         return true;
56     }
57
58     function prepare($args)
59     {
60         parent::prepare($args);
61         $this->page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
62
63         return true;
64     }
65
66     function title()
67     {
68         if ($this->page == 1) {
69             return _('Featured users');
70         } else {
71             return sprintf(_('Featured users, page %d'), $this->page);
72         }
73     }
74
75     function handle($args)
76     {
77         parent::handle($args);
78
79         $this->showPage();
80     }
81
82     function showPageNotice()
83     {
84         $instr = $this->getInstructions();
85         $output = common_markup_to_html($instr);
86         $this->elementStart('div', 'instructions');
87         $this->raw($output);
88         $this->elementEnd('div');
89     }
90
91     function showLocalNav()
92     {
93         $nav = new PublicGroupNav($this);
94         $nav->show();
95     }
96
97     function getInstructions()
98     {
99         return sprintf(_('A selection of some great users on %s'),
100                        common_config('site', 'name'));
101     }
102
103     function showContent()
104     {
105         // XXX: Note I'm doing it this two-stage way because a raw query
106         // with a JOIN was *not* working. --Zach
107
108         $featured_nicks = common_config('nickname', 'featured');
109
110         if (count($featured_nicks) > 0) {
111
112             $quoted = array();
113
114             foreach ($featured_nicks as $nick) {
115                 $quoted[] = "'$nick'";
116             }
117
118             $user = new User;
119             $user->whereAdd(sprintf('nickname IN (%s)', implode(',', $quoted)));
120             $user->limit(($this->page - 1) * PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1);
121             $user->orderBy(common_database_tablename('user') .'.nickname ASC');
122
123             $user->find();
124
125             $profile_ids = array();
126
127             while ($user->fetch()) {
128                 $profile_ids[] = $user->id;
129             }
130
131             $profile = new Profile;
132             $profile->whereAdd(sprintf('profile.id IN (%s)', implode(',', $profile_ids)));
133             $profile->orderBy('nickname ASC');
134
135             $cnt = $profile->find();
136
137             if ($cnt > 0) {
138                 $featured = new ProfileList($profile, $this);
139                 $featured->show();
140             }
141
142             $profile->free();
143
144             $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
145                               $this->page, 'featured');
146         }
147     }
148 }