2009-10-05 21:50:01 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet, the distributed open-source microblogging tool
|
|
|
|
*
|
|
|
|
* Show a user's favorite notices
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
2009-10-13 00:36:00 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2010-03-12 03:42:00 +00:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @copyright 2009-2010 StatusNet, Inc.
|
2010-05-27 23:26:47 +01:00
|
|
|
* @copyright 2009 Free Software Foundation, Inc http://www.fsf.org
|
2009-10-05 21:50:01 +01:00
|
|
|
* @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);
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once INSTALLDIR.'/lib/apibareauth.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the 20 most recent favorite notices for the authenticating user or user
|
|
|
|
* specified by the ID parameter in the requested format.
|
|
|
|
*
|
|
|
|
* @category API
|
|
|
|
* @package StatusNet
|
2009-10-13 00:36:00 +01:00
|
|
|
* @author Craig Andrews <candrews@integralblue.com>
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
2009-10-05 21:50:01 +01:00
|
|
|
* @author Zach Copley <zach@status.net>
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
class ApiTimelineFavoritesAction extends ApiBareAuthAction
|
|
|
|
{
|
|
|
|
var $notices = null;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Take arguments for running
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST args
|
|
|
|
*
|
|
|
|
* @return boolean success flag
|
|
|
|
*/
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
|
|
|
|
|
|
|
$this->user = $this->getTargetUser($this->arg('id'));
|
|
|
|
|
|
|
|
if (empty($this->user)) {
|
2010-10-28 00:19:04 +01:00
|
|
|
// TRANS: Client error displayed when requesting most recent favourite notices by a user for a non-existing user.
|
2009-11-08 22:10:44 +00:00
|
|
|
$this->clientError(_('No such user.'), 404, $this->format);
|
2009-10-05 21:50:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->notices = $this->getNotices();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the request
|
|
|
|
*
|
|
|
|
* Just show the notices
|
|
|
|
*
|
|
|
|
* @param array $args $_REQUEST data (unused)
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
$this->showTimeline();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the timeline of notices
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function showTimeline()
|
|
|
|
{
|
2010-02-11 21:54:40 +00:00
|
|
|
$profile = $this->user->getProfile();
|
|
|
|
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
|
2009-10-05 21:50:01 +01:00
|
|
|
|
2010-02-11 21:54:40 +00:00
|
|
|
$sitename = common_config('site', 'name');
|
|
|
|
$title = sprintf(
|
2010-10-28 00:19:04 +01:00
|
|
|
// TRANS: Title for timeline of most recent favourite notices by a user.
|
|
|
|
// TRANS: %1$s is the StatusNet sitename, %2$s is a user nickname.
|
2010-01-10 00:45:58 +00:00
|
|
|
_('%1$s / Favorites from %2$s'),
|
2009-10-05 21:50:01 +01:00
|
|
|
$sitename,
|
|
|
|
$this->user->nickname
|
|
|
|
);
|
|
|
|
|
2010-02-20 18:31:20 +00:00
|
|
|
$taguribase = TagURI::base();
|
2009-10-05 21:50:01 +01:00
|
|
|
$id = "tag:$taguribase:Favorites:" . $this->user->id;
|
2010-02-11 21:54:40 +00:00
|
|
|
|
|
|
|
$subtitle = sprintf(
|
2010-10-28 00:19:04 +01:00
|
|
|
// TRANS: Subtitle for timeline of most recent favourite notices by a user.
|
|
|
|
// TRANS: %1$s is the StatusNet sitename, %2$s is a user's full name,
|
|
|
|
// TRANS: %3$s is a user nickname.
|
|
|
|
_('%1$s updates favorited by %2$s / %3$s.'),
|
2009-10-05 21:50:01 +01:00
|
|
|
$sitename,
|
|
|
|
$profile->getBestName(),
|
|
|
|
$this->user->nickname
|
|
|
|
);
|
2010-02-11 21:54:40 +00:00
|
|
|
$logo = !empty($avatar)
|
|
|
|
? $avatar->displayUrl()
|
|
|
|
: Avatar::defaultImage(AVATAR_PROFILE_SIZE);
|
2009-10-05 21:50:01 +01:00
|
|
|
|
2010-03-12 03:42:00 +00:00
|
|
|
$link = common_local_url(
|
|
|
|
'showfavorites',
|
|
|
|
array('nickname' => $this->user->nickname)
|
|
|
|
);
|
|
|
|
|
|
|
|
$self = $this->getSelfUri();
|
|
|
|
|
2009-10-05 21:50:01 +01:00
|
|
|
switch($this->format) {
|
|
|
|
case 'xml':
|
2009-10-10 01:53:35 +01:00
|
|
|
$this->showXmlTimeline($this->notices);
|
2009-10-05 21:50:01 +01:00
|
|
|
break;
|
|
|
|
case 'rss':
|
2010-02-11 21:54:40 +00:00
|
|
|
$this->showRssTimeline(
|
|
|
|
$this->notices,
|
|
|
|
$title,
|
|
|
|
$link,
|
|
|
|
$subtitle,
|
|
|
|
null,
|
2010-03-12 03:42:00 +00:00
|
|
|
$logo,
|
|
|
|
$self
|
2010-02-11 21:54:40 +00:00
|
|
|
);
|
2009-10-05 21:50:01 +01:00
|
|
|
break;
|
|
|
|
case 'atom':
|
2010-02-11 21:54:40 +00:00
|
|
|
header('Content-Type: application/atom+xml; charset=utf-8');
|
|
|
|
|
2010-05-27 21:49:23 +01:00
|
|
|
$atom = new AtomNoticeFeed($this->auth_user);
|
2010-02-11 21:54:40 +00:00
|
|
|
|
|
|
|
$atom->setId($id);
|
|
|
|
$atom->setTitle($title);
|
|
|
|
$atom->setSubtitle($subtitle);
|
|
|
|
$atom->setLogo($logo);
|
|
|
|
$atom->setUpdated('now');
|
|
|
|
|
2010-03-12 03:42:00 +00:00
|
|
|
$atom->addLink($link);
|
|
|
|
$atom->setSelfLink($self);
|
2010-02-11 21:54:40 +00:00
|
|
|
|
|
|
|
$atom->addEntryFromNotices($this->notices);
|
|
|
|
|
|
|
|
$this->raw($atom->getString());
|
2009-10-05 21:50:01 +01:00
|
|
|
break;
|
|
|
|
case 'json':
|
2009-10-10 01:53:35 +01:00
|
|
|
$this->showJsonTimeline($this->notices);
|
2009-10-05 21:50:01 +01:00
|
|
|
break;
|
|
|
|
default:
|
2010-10-28 00:19:04 +01:00
|
|
|
// TRANS: Client error displayed when trying to handle an unknown API method.
|
2010-01-10 11:26:24 +00:00
|
|
|
$this->clientError(_('API method not found.'), $code = 404);
|
2009-10-05 21:50:01 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get notices
|
|
|
|
*
|
|
|
|
* @return array notices
|
|
|
|
*/
|
|
|
|
function getNotices()
|
|
|
|
{
|
|
|
|
$notices = array();
|
|
|
|
|
2010-05-05 22:46:36 +01:00
|
|
|
common_debug("since id = " . $this->since_id . " max id = " . $this->max_id);
|
|
|
|
|
2009-10-05 21:50:01 +01:00
|
|
|
if (!empty($this->auth_user) && $this->auth_user->id == $this->user->id) {
|
|
|
|
$notice = $this->user->favoriteNotices(
|
2010-05-05 22:46:36 +01:00
|
|
|
true,
|
2009-10-05 21:50:01 +01:00
|
|
|
($this->page-1) * $this->count,
|
|
|
|
$this->count,
|
2010-05-05 22:46:36 +01:00
|
|
|
$this->since_id,
|
|
|
|
$this->max_id
|
2009-10-05 21:50:01 +01:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$notice = $this->user->favoriteNotices(
|
2010-05-05 22:46:36 +01:00
|
|
|
false,
|
2009-10-05 21:50:01 +01:00
|
|
|
($this->page-1) * $this->count,
|
|
|
|
$this->count,
|
2010-05-05 22:46:36 +01:00
|
|
|
$this->since_id,
|
|
|
|
$this->max_id
|
2009-10-05 21:50:01 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$notices[] = clone($notice);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $notices;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is this action read only?
|
|
|
|
*
|
|
|
|
* @param array $args other arguments
|
|
|
|
*
|
|
|
|
* @return boolean true
|
|
|
|
*/
|
|
|
|
function isReadOnly($args)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* When was this feed last modified?
|
|
|
|
*
|
|
|
|
* @return string datestamp of the latest notice in the stream
|
|
|
|
*/
|
|
|
|
function lastModified()
|
|
|
|
{
|
|
|
|
if (!empty($this->notices) && (count($this->notices) > 0)) {
|
|
|
|
return strtotime($this->notices[0]->created);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* An entity tag for this stream
|
|
|
|
*
|
|
|
|
* Returns an Etag based on the action name, language, user ID, and
|
|
|
|
* timestamps of the first and last notice in the timeline
|
|
|
|
*
|
|
|
|
* @return string etag
|
|
|
|
*/
|
|
|
|
function etag()
|
|
|
|
{
|
|
|
|
if (!empty($this->notices) && (count($this->notices) > 0)) {
|
|
|
|
|
|
|
|
$last = count($this->notices) - 1;
|
|
|
|
|
|
|
|
return '"' . implode(
|
|
|
|
':',
|
|
|
|
array($this->arg('action'),
|
2010-09-20 21:42:58 +01:00
|
|
|
common_user_cache_hash($this->auth_user),
|
2009-10-05 21:50:01 +01:00
|
|
|
common_language(),
|
|
|
|
$this->user->id,
|
|
|
|
strtotime($this->notices[0]->created),
|
|
|
|
strtotime($this->notices[$last]->created))
|
|
|
|
)
|
|
|
|
. '"';
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|