X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapistatusesretweets.php;fp=actions%2Fapistatusesretweets.php;h=0000000000000000000000000000000000000000;hb=c6f89b21748948fde902904f6ac9ce9afa026b84;hp=82e86b9264689c453f6ddd56c8f3c050de8feaa3;hpb=597a3c89edd7200ab069f0e43c4f63406ca3d7f9;p=quix0rs-gnu-social.git diff --git a/actions/apistatusesretweets.php b/actions/apistatusesretweets.php deleted file mode 100644 index 82e86b9264..0000000000 --- a/actions/apistatusesretweets.php +++ /dev/null @@ -1,126 +0,0 @@ -. - * - * @category API - * @package StatusNet - * @author Evan Prodromou - * @copyright 2009 StatusNet, Inc. - * @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); -} - -/** - * Show up to 100 repeats of a notice - * - * @category API - * @package StatusNet - * @author Evan Prodromou - * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 - * @link http://status.net/ - */ -class ApiStatusesRetweetsAction extends ApiAuthAction -{ - const MAXCOUNT = 100; - - var $original = null; - var $cnt = self::MAXCOUNT; - - /** - * Take arguments for running - * - * @param array $args $_REQUEST args - * - * @return boolean success flag - */ - function prepare(array $args=array()) - { - parent::prepare($args); - - $id = $this->trimmed('id'); - - $this->original = Notice::getKV('id', $id); - - if (empty($this->original)) { - // TRANS: Client error displayed trying to display redents of a non-exiting notice. - $this->clientError(_('No such notice.'), - 400, $this->format); - return false; - } - - $cnt = $this->trimmed('count'); - - if (empty($cnt) || !is_integer($cnt)) { - $cnt = 100; - } else { - $this->cnt = min((int)$cnt, self::MAXCOUNT); - } - - return true; - } - - /** - * Handle the request - * - * Make a new notice for the update, save it, and show it - * - * @param array $args $_REQUEST data (unused) - * - * @return void - */ - function handle(array $args=array()) - { - parent::handle($args); - - $strm = $this->original->repeatStream($this->cnt); - - switch ($this->format) { - case 'xml': - $this->showXmlTimeline($strm); - break; - case 'json': - $this->showJsonTimeline($strm); - break; - default: - // TRANS: Client error displayed when coming across a non-supported API method. - $this->clientError(_('API method not found.'), $code = 404); - break; - } - } - - /** - * Return true if read only. - * - * MAY override - * - * @param array $args other arguments - * - * @return boolean is read only action? - */ - - function isReadOnly(array $args=array()) - { - return true; - } -}