]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/noticesearchrss.php
Merge branch '0.8.x' into testing
[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  Laconica
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/
13  *
14  * Laconica - a distributed open-source microblogging tool
15  * Copyright (C) 2008, 2009, Control Yourself, 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('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  Laconica
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/
48  */
49 class NoticesearchrssAction extends Rss10Action
50 {
51
52     function init()
53     {
54         return true;
55     }
56
57     function getNotices($limit=0)
58     {
59
60         $q = $this->trimmed('q');
61         $notices = array();
62
63         $notice = new Notice();
64
65         $search_engine = $notice->getSearchEngine('identica_notices');
66         $search_engine->set_sort_mode('chron');
67
68         if (!$limit) $limit = 20;
69         $search_engine->limit(0, $limit, true);
70         if (false === $search_engine->query($q)) {
71             $cnt = 0;
72         } else {
73             $cnt = $notice->find();
74         }
75
76         if ($cnt > 0) {
77             while ($notice->fetch()) {
78                 $notices[] = clone($notice);
79             }
80         }
81
82         return $notices;
83     }
84
85     function getChannel()
86     {
87         $q = $this->trimmed('q');
88         $c = array('url' => common_local_url('noticesearchrss', array('q' => $q)),
89                    'title' => sprintf(_('Updates with "%s"'), $q),
90                    'link' => common_local_url('noticesearch', array('q' => $q)),
91                    'description' => sprintf(_('Updates matching search term "%1$s" on %2$s!'),
92                                             $q, common_config('site', 'name')));
93         return $c;
94     }
95
96     function getImage()
97     {
98         return null;
99     }
100
101     function isReadOnly($args)
102     {
103         return true;
104     }
105 }