3 * Notice search action class.
9 * @author Evan Prodromou <evan@status.net>
10 * @author Robin Millette <millette@status.net>
11 * @author Sarven Capadisli <csarven@status.net>
12 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
13 * @link http://status.net/
15 * StatusNet - the distributed open-source microblogging tool
16 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
32 if (!defined('STATUSNET') && !defined('LACONICA')) {
36 require_once INSTALLDIR.'/lib/searchaction.php';
39 * Notice search action class.
43 * @author Evan Prodromou <evan@status.net>
44 * @author Robin Millette <millette@status.net>
45 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
46 * @link http://status.net/
47 * @todo common parent for people and content search?
49 class NoticesearchAction extends SearchAction
53 function prepare($args)
55 parent::prepare($args);
57 $this->q = $this->trimmed('q');
59 // FIXME: very dependent on tag format
60 if (preg_match('/^#([\pL\pN_\-\.]{1,64})/ue', $this->q)) {
61 common_redirect(common_local_url('tag',
62 array('tag' => common_canonical_tag(substr($this->q, 1)))),
66 if (!empty($this->q)) {
68 $profile = Profile::current();
69 $stream = new SearchNoticeStream($this->q, $profile);
70 $page = $this->trimmed('page');
78 $this->notice = $stream->getNotices((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
81 common_set_returnto($this->selfUrl());
89 * @return string instruction text
91 function getInstructions()
93 // TRANS: Instructions for Notice search page.
94 // TRANS: %%site.name%% is the name of the StatusNet site.
95 return _('Search for notices on %%site.name%% by their contents. Separate search terms by spaces; they must be 3 characters or more.');
101 * @return string title
105 // TRANS: Title of the page where users can search for notices.
106 return _('Text search');
111 $q = $this->trimmed('q');
117 return array(new Feed(Feed::RSS1, common_local_url('noticesearchrss',
119 // TRANS: Test in RSS notice search.
120 // TRANS: %1$s is the query, %2$s is the StatusNet site name.
121 sprintf(_('Search results for "%1$s" on %2$s'),
122 $q, common_config('site', 'name'))));
128 * @param string $q search query
129 * @param integer $page page number
133 function showResults($q, $page)
135 if (Event::handle('StartNoticeSearchShowResults', array($this, $q, $this->notice))) {
136 if ($this->notice->N === 0) {
137 $this->showEmptyResults($q, $page);
139 $terms = preg_split('/[\s,]+/', $q);
140 $nl = new SearchNoticeList($this->notice, $this, $terms);
142 $this->pagination($page > 1,
143 $cnt > NOTICES_PER_PAGE,
148 Event::handle('EndNoticeSearchShowResults', array($this, $q, $this->notice));
152 function showEmptyResults($q, $page)
154 // TRANS: Text for notice search results is the query had no results.
155 $this->element('p', 'error', _('No results.'));
157 $this->searchSuggestions($q);
158 if (common_logged_in()) {
159 // TRANS: Text for logged in users making a query for notices without results.
160 // TRANS: This message contains a Markdown link.
161 $message = sprintf(_('Be the first to [post on this topic](%%%%action.newnotice%%%%?status_textarea=%s)!'), urlencode($q));
164 // TRANS: Text for not logged in users making a query for notices without results.
165 // TRANS: This message contains Markdown links.
166 $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));
169 $this->elementStart('div', 'guide');
170 $this->raw(common_markup_to_html($message));
171 $this->elementEnd('div');
175 function showScripts()
177 parent::showScripts();
178 $this->autofocus('q');
182 class SearchNoticeList extends NoticeList {
183 function __construct($notice, $out=null, $terms)
185 parent::__construct($notice, $out);
186 $this->terms = $terms;
189 function newListItem($notice)
191 return new SearchNoticeListItem($notice, $this->out, $this->terms);
195 class SearchNoticeListItem extends NoticeListItem {
196 function __construct($notice, $out=null, $terms)
198 parent::__construct($notice, $out);
199 $this->terms = $terms;
202 function showContent()
204 // FIXME: URL, image, video, audio
205 $this->out->elementStart('p', array('class' => 'e-content'));
206 if ($this->notice->rendered) {
207 $this->out->raw($this->highlight($this->notice->rendered, $this->terms));
209 // XXX: may be some uncooked notices in the DB,
210 // we cook them right now. This should probably disappear in future
211 // versions (>> 0.4.x)
212 $this->out->raw($this->highlight(common_render_content($this->notice->content, $this->notice), $this->terms));
214 $this->out->elementEnd('p');
219 * Highlist query terms
221 * @param string $text notice text
222 * @param array $terms terms to highlight
226 function highlight($text, $terms)
228 /* Highligh search terms */
229 $options = implode('|', array_map('preg_quote', array_map('htmlspecialchars', $terms),
230 array_fill(0, sizeof($terms), '/')));
231 $pattern = "/($options)/i";
234 /* Divide up into text (highlight me) and tags (don't touch) */
235 $chunks = preg_split('/(<[^>]+>)/', $text, 0, PREG_SPLIT_DELIM_CAPTURE);
236 foreach ($chunks as $i => $chunk) {
238 // odd: delimiter (tag)
241 // even: freetext between tags
242 $result .= preg_replace($pattern, '<strong>\\1</strong>', $chunk);