summaryrefslogtreecommitdiff
path: root/actions/apitimelineretweetedbyme.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-21 11:38:08 -0500
committerEvan Prodromou <evan@status.net>2010-01-21 11:38:08 -0500
commit1d64ba6602f7ccd4c049167355445ca3600c28e6 (patch)
treedad0a544d7a48bdf0aa37173d3bcb545a30f6a52 /actions/apitimelineretweetedbyme.php
parente5eb95ab59598392bfae99adac1ac0716397ba13 (diff)
Unimplement retweeted_by_me API action until we have a more efficient query
Diffstat (limited to 'actions/apitimelineretweetedbyme.php')
-rw-r--r--actions/apitimelineretweetedbyme.php56
1 files changed, 2 insertions, 54 deletions
diff --git a/actions/apitimelineretweetedbyme.php b/actions/apitimelineretweetedbyme.php
index 54d32e5fa..564e98619 100644
--- a/actions/apitimelineretweetedbyme.php
+++ b/actions/apitimelineretweetedbyme.php
@@ -69,66 +69,14 @@ class ApiTimelineRetweetedByMeAction extends ApiAuthAction
{
parent::prepare($args);
- $cnt = $this->int('count', self::DEFAULTCOUNT, self::MAXCOUNT, 1);
+ $this->serverError('Unimplemented', 503);
- $page = $this->int('page', 1, (self::MAXNOTICES/$this->cnt));
-
- $since_id = $this->int('since_id');
-
- $max_id = $this->int('max_id');
-
- return true;
- }
-
- /**
- * Handle the request
- *
- * show a timeline of the user's repeated notices
- *
- * @param array $args $_REQUEST data (unused)
- *
- * @return void
- */
-
- function handle($args)
- {
- parent::handle($args);
-
- $offset = ($this->page-1) * $this->cnt;
- $limit = $this->cnt;
-
- $strm = $this->auth_user->repeatedByMe($offset, $limit, $this->since_id, $this->max_id);
-
- switch ($this->format) {
- case 'xml':
- $this->showXmlTimeline($strm);
- break;
- case 'json':
- $this->showJsonTimeline($strm);
- break;
- case 'atom':
- $profile = $this->auth_user->getProfile();
-
- $title = sprintf(_("Repeated by %s"), $this->auth_user->nickname);
- $taguribase = common_config('integration', 'taguri');
- $id = "tag:$taguribase:RepeatedByMe:" . $this->auth_user->id;
- $link = common_local_url('showstream',
- array('nickname' => $this->auth_user->nickname));
-
- $this->showAtomTimeline($strm, $title, $id, $link);
- break;
-
- default:
- $this->clientError(_('API method not found.'), $code = 404);
- break;
- }
+ return false;
}
/**
* Return true if read only.
*
- * MAY override
- *
* @param array $args other arguments
*
* @return boolean is read only action?