3 * StatusNet, the distributed open-source microblogging tool
5 * Action for showing Twitter-like JSON search results
9 * LICENCE: This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Affero General Public License for more details.
19 * You should have received a copy of the GNU Affero General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * @author Zach Copley <zach@status.net>
25 * @copyright 2008-2010 StatusNet, Inc.
26 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 require_once INSTALLDIR.'/lib/apiprivateauth.php';
35 require_once INSTALLDIR.'/lib/jsonsearchresultslist.php';
38 * Action handler for Twitter-compatible API search
42 * @author Zach Copley <zach@status.net>
43 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44 * @link http://status.net/
47 class ApiSearchJSONAction extends ApiPrivateAuthAction
60 * @param array $args Web and URL arguments
62 * @return boolean true if nothing goes wrong
64 function prepare($args)
66 common_debug("apisearchjson prepare()");
68 parent::prepare($args);
70 $this->query = $this->trimmed('q');
71 $this->lang = $this->trimmed('lang');
72 $this->rpp = $this->trimmed('rpp');
78 if ($this->rpp > 100) {
82 $this->page = $this->trimmed('page');
88 // TODO: Suppport max_id -- we need to tweak the backend
89 // Search classes to support it.
91 $this->since_id = $this->trimmed('since_id');
92 $this->geocode = $this->trimmed('geocode');
100 * @param array $args Arguments from $_REQUEST
104 function handle($args)
106 parent::handle($args);
107 $this->showResults();
111 * Show search results
115 function showResults()
117 // TODO: Support search operators like from: and to:, boolean, etc.
119 $notice = new Notice();
121 // lcase it for comparison
122 $q = strtolower($this->query);
124 $search_engine = $notice->getSearchEngine('notice');
125 $search_engine->set_sort_mode('chron');
126 $search_engine->limit(($this->page - 1) * $this->rpp, $this->rpp + 1, true);
127 if (false === $search_engine->query($q)) {
130 $cnt = $notice->find();
133 // TODO: max_id, lang, geocode
135 $results = new JSONSearchResultsList($notice, $q, $this->rpp, $this->page, $this->since_id);
137 $this->initDocument('json');
139 $this->endDocument('json');
143 * Do we need to write to the database?
145 * @return boolean true
147 function isReadOnly($args)