X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fapitimelinetag.php;h=1184440c7ddd9742f8388ad84130e61b8e53d9e5;hb=673bef2fdae9db750f4daf5bfe7d639eb2ec2acc;hp=4dbe1fc0dbcb9d865884eb4ff3a3e494ea71facb;hpb=b26eccf33cf69c04a96d5d6d3eddc0ef68ffd4b1;p=quix0rs-gnu-social.git diff --git a/actions/apitimelinetag.php b/actions/apitimelinetag.php index 4dbe1fc0db..1184440c7d 100644 --- a/actions/apitimelinetag.php +++ b/actions/apitimelinetag.php @@ -35,8 +35,6 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/lib/apiprivateauth.php'; - /** * Returns the 20 most recent notices tagged by a given tag * @@ -53,19 +51,10 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction { var $notices = null; - /** - * Take arguments for running - * - * @param array $args $_REQUEST args - * - * @return boolean success flag - */ - function prepare($args) + protected function prepare(array $args=array()) { parent::prepare($args); - common_debug("apitimelinetag prepare()"); - $this->tag = $this->arg('tag'); $this->notices = $this->getNotices(); @@ -81,9 +70,9 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction * * @return void */ - function handle($args) + protected function handle() { - parent::handle($args); + parent::handle(); $this->showTimeline(); } @@ -107,7 +96,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction $sitename ); $taguribase = TagURI::base(); - $id = "tag:$taguribase:TagTimeline:".$tag; + $id = "tag:$taguribase:TagTimeline:".$this->tag; $link = common_local_url( 'tag', @@ -116,8 +105,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction $self = $this->getSelfUri(); - common_debug("self link is: $self"); - switch($this->format) { case 'xml': $this->showXmlTimeline($this->notices); @@ -141,7 +128,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction $atom->setId($id); $atom->setTitle($title); $atom->setSubtitle($subtitle); - $atom->setLogo($logo); + $atom->setLogo($sitelogo); $atom->setUpdated('now'); $atom->addLink($link); @@ -154,8 +141,16 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction case 'json': $this->showJsonTimeline($this->notices); break; + case 'as': + header('Content-Type: ' . ActivityStreamJSONDocument::CONTENT_TYPE); + $doc = new ActivityStreamJSONDocument($this->auth_user); + $doc->setTitle($title); + $doc->addLink($link, 'alternate', 'text/html'); + $doc->addItemsFromNotices($this->notices); + $this->raw($doc->asString()); + break; default: - // TRANS: Client error displayed when trying to handle an unknown API method. + // TRANS: Client error displayed when coming across a non-supported API method. $this->clientError(_('API method not found.'), $code = 404); break; } @@ -168,19 +163,12 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction */ function getNotices() { - $notices = array(); - - $notice = Notice_tag::getStream( - $this->tag, - ($this->page - 1) * $this->count, - $this->count + 1 - ); - - while ($notice->fetch()) { - $notices[] = clone($notice); - } + $notice = Notice_tag::getStream($this->tag)->getNotices(($this->page - 1) * $this->count, + $this->count + 1, + $this->since_id, + $this->max_id); - return $notices; + return $notice->fetchAll(); } /**