]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/favoritedrss.php
moving delete profile to its own space.
[quix0rs-gnu-social.git] / actions / favoritedrss.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/rssaction.php');
23
24 // Formatting of RSS handled by Rss10Action
25
26 class FavoritedrssAction extends Rss10Action {
27
28         function init() {
29                 return true;
30         }
31
32         function get_notices($limit=0) {
33
34                 $qry =
35                         'SELECT notice_id, sum(exp(-(now() - modified)/864000)) as weight ' .
36                         'FROM fave GROUP BY notice_id ' .
37                         'ORDER BY weight DESC';
38
39                 $offset = 0;
40                 $total = ($limit == 0) ? 48 : $limit;
41
42                 if (common_config('db','type') == 'pgsql') {
43                         $qry .= ' LIMIT ' . $total . ' OFFSET ' . $offset;
44                 } else {
45                         $qry .= ' LIMIT ' . $offset . ', ' . $limit;
46                 }
47
48                 $fave = new Fave;
49                 $fave->query($qry);
50
51                 $notice_list = array();
52
53                 while ($fave->fetch()) {
54                   array_push($notice_list, $fave->notice_id);
55                 }
56
57                 $notice = new Notice();
58
59                 $notice->query(sprintf('SELECT * FROM notice WHERE id in (%s)',
60                         implode($notice_list, ',')));
61
62                 $notices = array();
63
64                 while ($notice->fetch()) {
65                         $notices[] = clone($notice);
66                 }
67
68                 return $notices;
69         }
70
71         function get_channel() {
72                 global $config;
73                 $c = array('url' => common_local_url('favoritedrss'),
74                                    'title' => sprintf(_('%s Most Favorited Stream'), $config['site']['name']),
75                                    'link' => common_local_url('favorited'),
76                                    'description' => sprintf(_('Most favorited updates for %s'), $config['site']['name']));
77                 return $c;
78         }
79
80         function get_image() {
81                 return NULL;
82         }
83 }