]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/noticesearch.php
Update copyright dates in files modified in 2009
[quix0rs-gnu-social.git] / actions / noticesearch.php
1 <?php
2 /**
3  * 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  * @author   Sarven Capadisli <csarven@controlyourself.ca>
12  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
13  * @link     http://laconi.ca/
14  *
15  * Laconica - a distributed open-source microblogging tool
16  * Copyright (C) 2008, 2009, Control Yourself, Inc.
17  *
18  * This program is free software: you can redistribute it and/or modify
19  * it under the terms of the GNU Affero General Public License as published by
20  * the Free Software Foundation, either version 3 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU Affero General Public License for more details.
27  *
28  * You should have received a copy of the GNU Affero General Public License
29  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
30  */
31
32 if (!defined('LACONICA')) {
33     exit(1);
34 }
35
36 require_once INSTALLDIR.'/lib/searchaction.php';
37
38 /**
39  * Notice search action class.
40  *
41  * @category Action
42  * @package  Laconica
43  * @author   Evan Prodromou <evan@controlyourself.ca>
44  * @author   Robin Millette <millette@controlyourself.ca>
45  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
46  * @link     http://laconi.ca/
47  * @todo     common parent for people and content search?
48  */
49 class NoticesearchAction extends SearchAction
50 {
51
52     function prepare($args)
53     {
54         parent::prepare($args);
55
56         common_set_returnto($this->selfUrl());
57
58         return true;
59     }
60
61     /**
62      * Get instructions
63      *
64      * @return string instruction text
65      */
66     function getInstructions()
67     {
68         return _('Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more.');
69     }
70
71     /**
72      * Get title
73      *
74      * @return string title
75      */
76     function title()
77     {
78         return _('Text search');
79     }
80
81     function getFeeds()
82     {
83         $q = $this->trimmed('q');
84
85         if (!$q) {
86             return null;
87         }
88
89         return array(new Feed(Feed::RSS1, common_local_url('noticesearchrss',
90                                                            array('q' => $q)),
91                               sprintf(_('Search results for "%s" on %s'),
92                                       $q, common_config('site', 'name'))));
93     }
94
95     /**
96      * Show results
97      *
98      * @param string  $q    search query
99      * @param integer $page page number
100      *
101      * @return void
102      */
103     function showResults($q, $page)
104     {
105         $notice        = new Notice();
106
107         $search_engine = $notice->getSearchEngine('identica_notices');
108         $search_engine->set_sort_mode('chron');
109         // Ask for an extra to see if there's more.
110         $search_engine->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
111         if (false === $search_engine->query($q)) {
112             $cnt = 0;
113         } else {
114             $cnt = $notice->find();
115         }
116         if ($cnt === 0) {
117             $this->element('p', 'error', _('No results.'));
118
119             $this->searchSuggestions($q);
120             if (common_logged_in()) {
121                 $message = sprintf(_('Be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q));
122             }
123             else {
124                 $message = sprintf(_('Why not [register an account](%%%%action.register%%%%) and be the first to  [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q));
125             }
126
127             $this->elementStart('div', 'guide');
128             $this->raw(common_markup_to_html($message));
129             $this->elementEnd('div');
130             return;
131         }
132         $terms = preg_split('/[\s,]+/', $q);
133         $nl = new SearchNoticeList($notice, $this, $terms);
134         $cnt = $nl->show();
135         $this->pagination($page > 1, $cnt > NOTICES_PER_PAGE,
136                           $page, 'noticesearch', array('q' => $q));
137     }
138 }
139
140 class SearchNoticeList extends NoticeList {
141     function __construct($notice, $out=null, $terms)
142     {
143         parent::__construct($notice, $out);
144         $this->terms = $terms;
145     }
146
147     function newListItem($notice)
148     {
149         return new SearchNoticeListItem($notice, $this->out, $this->terms);
150     }
151 }
152
153 class SearchNoticeListItem extends NoticeListItem {
154     function __construct($notice, $out=null, $terms)
155     {
156         parent::__construct($notice, $out);
157         $this->terms = $terms;
158     }
159
160     function showContent()
161     {
162         // FIXME: URL, image, video, audio
163         $this->out->elementStart('p', array('class' => 'entry-content'));
164         if ($this->notice->rendered) {
165             $this->out->raw($this->highlight($this->notice->rendered, $this->terms));
166         } else {
167             // XXX: may be some uncooked notices in the DB,
168             // we cook them right now. This should probably disappear in future
169             // versions (>> 0.4.x)
170             $this->out->raw($this->highlight(common_render_content($this->notice->content, $this->notice), $this->terms));
171         }
172         $this->out->elementEnd('p');
173
174     }
175
176     /**
177      * Highlist query terms
178      *
179      * @param string $text  notice text
180      * @param array  $terms terms to highlight
181      *
182      * @return void
183      */
184     function highlight($text, $terms)
185     {
186         /* Highligh search terms */
187         $options = implode('|', array_map('preg_quote', array_map('htmlspecialchars', $terms),
188                                                             array_fill(0, sizeof($terms), '/')));
189         $pattern = "/($options)/i";
190         $result  = preg_replace($pattern, '<strong>\\1</strong>', $text);
191
192         /* Remove highlighting from inside links, loop incase multiple highlights in links */
193         $pattern = '/(href="[^"]*)<strong>('.$options.')<\/strong>([^"]*")/iU';
194         do {
195             $result = preg_replace($pattern, '\\1\\2\\3', $result, -1, $count);
196         } while ($count);
197         return $result;
198     }
199 }
200