3 * Base 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/searchgroupnav.php';
38 * Base search action class.
42 * @author Evan Prodromou <evan@status.net>
43 * @author Robin Millette <millette@status.net>
44 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
45 * @link http://status.net/
47 class SearchAction extends Action
50 * Return true if read only.
52 * @return boolean true
54 function isReadOnly($args)
59 function handle($args)
61 parent::handle($args);
66 * Show tabset for this page
68 * Uses the SearchGroupNav widget
74 function showLocalNav()
76 $nav = new SearchGroupNav($this, $this->trimmed('q'));
80 function showTop($arr=null)
87 $this->element('p', 'error', $error);
89 $instr = $this->getInstructions();
90 $output = common_markup_to_html($instr);
91 $this->elementStart('div', 'instructions');
93 $this->elementEnd('div');
102 function showNoticeForm() {
103 // remote post notice form
106 function showContent() {
111 function showForm($error=null)
113 $q = $this->trimmed('q');
114 $page = $this->trimmed('page', 1);
115 $this->elementStart('form', array('method' => 'get',
116 'id' => 'form_search',
117 'class' => 'form_settings',
118 'action' => common_local_url($this->trimmed('action'))));
119 $this->elementStart('fieldset');
120 // TRANS: Fieldset legend for the search form.
121 $this->element('legend', null, _('Search site'));
122 $this->elementStart('ul', 'form_data');
123 $this->elementStart('li');
124 if (!common_config('site', 'fancy')) {
125 $this->hidden('action', $this->trimmed('action'));
127 // TRANS: Used as a field label for the field where one or more keywords
128 // TRANS: for searching can be entered.
129 $this->input('q', _('Keyword(s)'), $q);
130 $this->submit('search', _m('BUTTON','Search'));
131 $this->elementEnd('li');
132 $this->elementEnd('ul');
133 $this->elementEnd('fieldset');
134 $this->elementEnd('form');
136 $this->showResults($q, $page);
140 function searchSuggestions($q) {
141 // @todo FIXME: This formatting does not make this string get picked up by gettext.
142 // TRANS: Standard search suggestions shown when a search does not give any results.
143 $message = _(<<<E_O_T
144 * Make sure all words are spelled correctly.
145 * Try different keywords.
146 * Try more general keywords.
147 * Try fewer keywords.
151 if (!common_config('site', 'private')) {
153 // @todo FIXME: This formatting does not make this string get picked up by gettext.
154 // TRANS: Standard search suggestions shown when a search does not give any results.
155 $message .= sprintf(_(<<<E_O_T
157 You can also try your search on other engines:
159 * [Twingly](http://www.twingly.com/search?q=%s&content=microblog&site=%%%%site.server%%%%)
160 * [Tweet scan](http://www.tweetscan.com/indexi.php?s=%s)
161 * [Google](http://www.google.com/search?q=site%%3A%%%%site.server%%%%+%s)
162 * [Yahoo](http://search.yahoo.com/search?p=site%%3A%%%%site.server%%%%+%s)
163 * [Collecta](http://collecta.com/#q=%s)
166 ), $qe, $qe, $qe, $qe, $qe);
168 $this->elementStart('dl', array('id' => 'help_search', 'class' => 'help'));
169 // TRANS: Definition list item with instructions on how to get (better) search results.
170 $this->element('dt', null, _('Search help'));
171 $this->elementStart('dd', 'instructions');
172 $this->raw(common_markup_to_html($message));
173 $this->elementEnd('dd');
174 $this->elementEnd('div');