. * * @category API * @package StatusNet * @copyright 2009 StatusNet, Inc. * @copyright 2009 Free Software Foundation, Inc http://www.fsf.org * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('STATUSNET')) { exit(1); } class ApiListSubscriptionsAction extends ApiBareAuthAction { var $lists = array(); var $cursor = -1; var $next_cursor = 0; var $prev_cursor = 0; /** * Take arguments for running * * @param array $args $_REQUEST args * * @return boolean success flag * */ function prepare($args) { parent::prepare($args); $this->cursor = (int) $this->arg('cursor', -1); $this->user = $this->getTargetUser($this->arg('user')); $this->getLists(); return true; } /** * Handle the request * * Show the lists * * @param array $args $_REQUEST data (unused) * * @return void */ function handle($args) { parent::handle($args); if (empty($this->user)) { // TRANS: Client error displayed trying to perform an action related to a non-existing user. $this->clientError(_('No such user.'), 404, $this->format); return; } switch($this->format) { case 'xml': $this->showXmlLists($this->lists, $this->next_cursor, $this->prev_cursor); break; case 'json': $this->showJsonLists($this->lists, $this->next_cursor, $this->prev_cursor); break; default: $this->clientError( // TRANS: Client error displayed when coming across a non-supported API method. _('API method not found.'), 400, $this->format ); break; } } /** * Return true if read only. * * MAY override * * @param array $args other arguments * * @return boolean is read only action? */ function isReadOnly($args) { return true; } function getLists() { if(empty($this->user)) { return; } $profile = $this->user->getProfile(); $fn = array($profile, 'getTagSubscriptions'); # 20 lists list($this->lists, $this->next_cursor, $this->prev_cursor) = Profile_list::getAtCursor($fn, array(), $this->cursor, 20); } }