3 * RSS feed for notice search action class.
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/
14 * StatusNet - the distributed open-source microblogging tool
15 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 require_once INSTALLDIR.'/lib/rssaction.php';
38 * RSS feed for notice search action class.
40 * Formatting of RSS handled by Rss10Action
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/
49 class NoticesearchrssAction extends Rss10Action
56 function prepare($args)
58 parent::prepare($args);
59 $this->notices = $this->getNotices();
63 function getNotices($limit=0)
65 $q = $this->trimmed('q');
68 $notice = new Notice();
70 $search_engine = $notice->getSearchEngine('notice');
71 $search_engine->set_sort_mode('chron');
73 if (!$limit) $limit = 20;
74 $search_engine->limit(0, $limit, true);
75 if (false === $search_engine->query($q)) {
78 $cnt = $notice->find();
82 while ($notice->fetch()) {
83 $notices[] = clone($notice);
92 $q = $this->trimmed('q');
93 $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)),
94 // TRANS: RSS notice search feed title. %s is the query.
95 'title' => sprintf(_('Updates with "%s"'), $q),
96 'link' => common_local_url('noticesearch', array('q' => $q)),
97 // TRANS: RSS notice search feed description.
98 // TRANS: %1$s is the query, %2$s is the StatusNet site name.
99 'description' => sprintf(_('Updates matching search term "%1$s" on %2$s.'),
100 $q, common_config('site', 'name')));
109 function isReadOnly($args)