3 * RSS feed for notice search action class.
9 * @author Evan Prodromou <evan@controlyourself.ca>
10 * @author Robin Millette <millette@controlyourself.ca>
11 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
12 * @link http://laconi.ca/
14 * Laconica - a distributed open-source microblogging tool
15 * Copyright (C) 2008, Controlez-Vous, 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('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@controlyourself.ca>
45 * @author Robin Millette <millette@controlyourself.ca>
46 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
47 * @link http://laconi.ca/
49 class NoticesearchrssAction extends Rss10Action
57 function getNotices($limit=0)
60 $q = $this->trimmed('q');
63 $notice = new Notice();
65 # lcase it for comparison
68 $search_engine = $notice->getSearchEngine('identica_notices');
69 $search_engine->set_sort_mode('chron');
71 if (!$limit) $limit = 20;
72 $search_engine->limit(0, $limit, true);
73 $search_engine->query($q);
76 while ($notice->fetch()) {
77 $notices[] = clone($notice);
85 $q = $this->trimmed('q');
86 $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)),
87 'title' => common_config('site', 'name') . sprintf(_(' Search Stream for "%s"'), $q),
88 'link' => common_local_url('noticesearch', array('q' => $q)),
89 'description' => sprintf(_('All updates matching search term "%s"'), $q));