]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/noticesearchrss.php
*** Privacy Leak fixed: ***
[quix0rs-gnu-social.git] / actions / noticesearchrss.php
1 <?php
2 /**
3  * RSS feed for notice search action class.
4  *
5  * PHP version 5
6  *
7  * @category Action
8  * @package  StatusNet
9  * @author   Evan Prodromou <evan@status.net>
10  * @author   Robin Millette <millette@status.net>
11  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12  * @link     http://status.net/
13  *
14  * StatusNet - the distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, StatusNet, Inc.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU Affero General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU Affero General Public License for more details.
26  *
27  * You should have received a copy of the GNU Affero General Public License
28  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
29  */
30
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
32     exit(1);
33 }
34
35 require_once INSTALLDIR.'/lib/rssaction.php';
36
37 /**
38  * RSS feed for notice search action class.
39  *
40  * Formatting of RSS handled by Rss10Action
41  *
42  * @category Action
43  * @package  StatusNet
44  * @author   Evan Prodromou <evan@status.net>
45  * @author   Robin Millette <millette@status.net>
46  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
47  * @link     http://status.net/
48  */
49 class NoticesearchrssAction extends Rss10Action
50 {
51     function init()
52     {
53         return true;
54     }
55
56     function prepare(array $args=array())
57     {
58         parent::prepare($args);
59         $this->notices = $this->getNotices();
60         return true;
61     }
62
63     function getNotices($limit=0)
64     {
65         $q = $this->trimmed('q');
66         $notices = array();
67
68         $notice = new Notice();
69
70         $search_engine = $notice->getSearchEngine('notice');
71         $search_engine->set_sort_mode('chron');
72
73         if (!$limit) $limit = 20;
74         $search_engine->limit(0, $limit, true);
75         if (false === $search_engine->query($q)) {
76             $cnt = 0;
77         } else {
78             $cnt = $notice->find();
79         }
80
81         if ($cnt > 0) {
82             while ($notice->fetch()) {
83                 // Check scope of notice to current profile (including guests)
84                 if ($notice->isCurrentProfileInScope()) {
85                     // Is in scope
86                     $notices[] = clone($notice);
87                 }
88             }
89         }
90
91         return $notices;
92     }
93
94     function getChannel()
95     {
96         $q = $this->trimmed('q');
97         $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)),
98                    // TRANS: RSS notice search feed title. %s is the query.
99                    'title' => sprintf(_('Updates with "%s"'), $q),
100                    'link' => common_local_url('noticesearch', array('q' => $q)),
101                    // TRANS: RSS notice search feed description.
102                    // TRANS: %1$s is the query, %2$s is the StatusNet site name.
103                    'description' => sprintf(_('Updates matching search term "%1$s" on %2$s.'),
104                                             $q, common_config('site', 'name')));
105         return $c;
106     }
107
108     function getImage()
109     {
110         return null;
111     }
112
113     function isReadOnly(array $args=array())
114     {
115         return true;
116     }
117 }