. * * PHP version 5 * * @category Action * @package StatusNet * @author Shashi Gowda * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3 * @link http://status.net/ */ if (!defined('STATUSNET')) { exit(1); } class PeopletagautocompleteAction extends Action { var $user; /** * Check pre-requisites and instantiate attributes * * @param Array $args array of arguments (URL, GET, POST) * * @return boolean success flag */ function prepare($args) { parent::prepare($args); // Only for logged-in users $this->user = common_current_user(); if (empty($this->user)) { $this->clientError(_('Not logged in.')); return false; } // CSRF protection $token = $this->trimmed('token'); if (!$token || $token != common_session_token()) { $this->clientError(_('There was a problem with your session token.'. ' Try again, please.')); return false; } return true; } /** * Handle request * * Does the subscription and returns results. * * @param Array $args unused. * * @return void */ function handle($args) { $profile = $this->user->getProfile(); $tags = $profile->getOwnedTags(common_current_user()); $tags_array = array(); while ($tags->fetch()) { $arr = array(); $arr['tag'] = $tags->tag; $arr['mode'] = $tags->private ? 'private' : 'public'; // $arr['url'] = $tags->homeUrl(); $arr['freq'] = $tags->taggedCount(); $tags_array[] = $arr; } $tags->free(); //common_log(LOG_DEBUG, 'Autocomplete data: ' . json_encode($tags_array)); print(json_encode($tags_array)); exit(0); } }