]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/noticesearchrss.php
Rss10Action now in an autodetected file.
[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('GNUSOCIAL')) { exit(1); }
32
33 /**
34  * RSS feed for notice search action class.
35  *
36  * Formatting of RSS handled by Rss10Action
37  *
38  * @category Action
39  * @package  StatusNet
40  * @author   Evan Prodromou <evan@status.net>
41  * @author   Robin Millette <millette@status.net>
42  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
43  * @link     http://status.net/
44  */
45 class NoticesearchrssAction extends Rss10Action
46 {
47     function init()
48     {
49         return true;
50     }
51
52     function prepare($args)
53     {
54         parent::prepare($args);
55         $this->notices = $this->getNotices();
56         return true;
57     }
58
59     function getNotices($limit=0)
60     {
61         $q = $this->trimmed('q');
62         $notices = array();
63
64         $notice = new Notice();
65
66         $search_engine = $notice->getSearchEngine('notice');
67         $search_engine->set_sort_mode('chron');
68
69         if (!$limit) $limit = 20;
70         $search_engine->limit(0, $limit, true);
71         if (false === $search_engine->query($q)) {
72             $cnt = 0;
73         } else {
74             $cnt = $notice->find();
75         }
76
77         if ($cnt > 0) {
78             while ($notice->fetch()) {
79                 $notices[] = clone($notice);
80             }
81         }
82
83         return $notices;
84     }
85
86     function getChannel()
87     {
88         $q = $this->trimmed('q');
89         $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)),
90                    // TRANS: RSS notice search feed title. %s is the query.
91                    'title' => sprintf(_('Updates with "%s"'), $q),
92                    'link' => common_local_url('noticesearch', array('q' => $q)),
93                    // TRANS: RSS notice search feed description.
94                    // TRANS: %1$s is the query, %2$s is the StatusNet site name.
95                    'description' => sprintf(_('Updates matching search term "%1$s" on %2$s.'),
96                                             $q, common_config('site', 'name')));
97         return $c;
98     }
99
100     function getImage()
101     {
102         return null;
103     }
104
105     function isReadOnly($args)
106     {
107         return true;
108     }
109 }