]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/GroupFavorited/groupfavoritedaction.php
GroupFavorited plugin: adds 'Popular' tab to group navigation showing a popular pages...
[quix0rs-gnu-social.git] / plugins / GroupFavorited / groupfavoritedaction.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * List of popular notices
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
36 class GroupFavoritedAction extends ShowgroupAction
37 {
38
39     /**
40      * Title of the page
41      *
42      * @return string page title, with page number
43      */
44
45     function title()
46     {
47         if (!empty($this->group->fullname)) {
48             $base = $this->group->fullname . ' (' . $this->group->nickname . ')';
49         } else {
50             $base = $this->group->nickname;
51         }
52
53         if ($this->page == 1) {
54             return sprintf(_m('Popular posts in %s group'), $base);
55         } else {
56             return sprintf(_m('Popular posts in %1$s group, page %2$d'),
57                            $base,
58                            $this->page);
59         }
60     }
61
62     /**
63      * Content area
64      *
65      * Shows the list of popular notices
66      *
67      * @return void
68      */
69
70     function showContent()
71     {
72         $groupId = intval($this->group->id);
73         $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff'));
74         $cutoff = sprintf("fave.modified > '%s'",
75                           common_sql_date(time() - common_config('popular', 'cutoff')));
76
77         $qry = 'SELECT notice.*, '.
78           $weightexpr . ' as weight ' .
79           'FROM notice ' .
80           "JOIN group_inbox ON notice.id = group_inbox.notice_id " .
81           'JOIN fave ON notice.id = fave.notice_id ' .
82           "WHERE $cutoff AND group_id = $groupId " .
83           'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' .
84           'ORDER BY weight DESC';
85
86         $offset = ($this->page - 1) * NOTICES_PER_PAGE;
87         $limit  = NOTICES_PER_PAGE + 1;
88
89         if (common_config('db', 'type') == 'pgsql') {
90             $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
91         } else {
92             $qry .= ' LIMIT ' . $offset . ', ' . $limit;
93         }
94
95         $notice = Memcached_DataObject::cachedQuery('Notice',
96                                                     $qry,
97                                                     600);
98
99         $nl = new NoticeList($notice, $this);
100
101         $cnt = $nl->show();
102
103         if ($cnt == 0) {
104             //$this->showEmptyList();
105         }
106
107         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
108                           $this->page, 'groupfavorited',
109                           array('nickname' => $this->group->nickname));
110     }
111 }