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 $this->since_id = $this->trimmed('since_id');
89 $this->geocode = $this->trimmed('geocode');
97 * @param array $args Arguments from $_REQUEST
101 function handle($args)
103 parent::handle($args);
104 $this->showResults();
108 * Show search results
112 function showResults()
114 // TODO: Support search operators like from: and to:, boolean, etc.
116 $notice = new Notice();
118 // lcase it for comparison
119 $q = strtolower($this->query);
121 $search_engine = $notice->getSearchEngine('notice');
122 $search_engine->set_sort_mode('chron');
123 $search_engine->limit(($this->page - 1) * $this->rpp, $this->rpp + 1, true);
124 if (false === $search_engine->query($q)) {
127 $cnt = $notice->find();
130 // TODO: since_id, lang, geocode
132 $results = new JSONSearchResultsList($notice, $q, $this->rpp, $this->page);
134 $this->initDocument('json');
136 $this->endDocument('json');
140 * Do we need to write to the database?
142 * @return boolean true
144 function isReadOnly($args)