2008-07-14 09:09:49 +01:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* Laconica - a distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
|
|
|
|
2008-07-15 04:18:12 +01:00
|
|
|
require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
/* XXX: Please don't freak out about all the ugly comments in this file.
|
2008-07-15 04:18:12 +01:00
|
|
|
* They are mostly in here for reference while I work on the
|
2008-07-17 06:44:11 +01:00
|
|
|
* API. I'll fix things up later to make them look better later. -- Zach
|
2008-07-14 20:03:00 +01:00
|
|
|
*/
|
2008-07-15 05:31:21 +01:00
|
|
|
class TwitapistatusesAction extends TwitterapiAction {
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
function public_timeline($args, $apidata) {
|
|
|
|
parent::handle($args);
|
|
|
|
|
2008-07-17 22:05:19 +01:00
|
|
|
$sitename = common_config('site', 'name');
|
|
|
|
$siteserver = common_config('site', 'server');
|
|
|
|
$title = sprintf(_("%s public timeline"), $sitename);
|
|
|
|
$id = "tag:$siteserver:Statuses";
|
|
|
|
$link = common_root_url();
|
2008-07-17 22:32:14 +01:00
|
|
|
$subtitle = sprintf(_("%s updates from everyone!"), $sitemap);
|
2008-07-17 22:05:19 +01:00
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
// Number of public statuses to return by default -- Twitter sends 20
|
|
|
|
$MAX_PUBSTATUSES = 20;
|
|
|
|
|
2008-07-16 07:09:22 +01:00
|
|
|
$notice = DB_DataObject::factory('notice');
|
2008-07-15 04:18:12 +01:00
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
// FIXME: To really live up to the spec we need to build a list
|
|
|
|
// of notices by users who have custom avatars, so fix this SQL -- Zach
|
|
|
|
|
2008-07-16 07:09:22 +01:00
|
|
|
# FIXME: bad performance
|
|
|
|
$notice->whereAdd('EXISTS (SELECT user.id from user where user.id = notice.profile_id)');
|
|
|
|
$notice->orderBy('created DESC, notice.id DESC');
|
2008-07-16 23:02:23 +01:00
|
|
|
$notice->limit($MAX_PUBSTATUSES);
|
2008-07-16 07:09:22 +01:00
|
|
|
$cnt = $notice->find();
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
if ($cnt > 0) {
|
2008-07-16 08:21:24 +01:00
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
switch($apidata['content-type']) {
|
|
|
|
case 'xml':
|
2008-07-17 22:05:19 +01:00
|
|
|
$this->show_xml_timeline($notice);
|
2008-07-16 23:02:23 +01:00
|
|
|
break;
|
|
|
|
case 'rss':
|
2008-07-17 22:05:19 +01:00
|
|
|
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
2008-07-16 23:02:23 +01:00
|
|
|
break;
|
|
|
|
case 'atom':
|
2008-07-17 22:05:19 +01:00
|
|
|
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
2008-07-16 23:02:23 +01:00
|
|
|
break;
|
|
|
|
case 'json':
|
2008-07-17 22:05:19 +01:00
|
|
|
$this->show_json_timeline($notice);
|
2008-07-16 23:02:23 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
common_user_error("API method not found!", $code = 404);
|
|
|
|
break;
|
2008-07-16 08:21:24 +01:00
|
|
|
}
|
2008-07-16 21:52:18 +01:00
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
} else {
|
|
|
|
common_server_error('Couldn\'t find any statuses.', $code = 503);
|
|
|
|
}
|
|
|
|
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2008-07-17 22:05:19 +01:00
|
|
|
function show_xml_timeline($notice) {
|
2008-07-17 23:28:45 +01:00
|
|
|
|
2008-07-20 09:34:28 +01:00
|
|
|
$this->init_document('xml');
|
2008-07-16 23:02:23 +01:00
|
|
|
common_element_start('statuses', array('type' => 'array'));
|
2008-07-17 23:28:45 +01:00
|
|
|
|
|
|
|
if (is_array($notice)) {
|
|
|
|
foreach ($notice as $n) {
|
|
|
|
$twitter_status = $this->twitter_status_array($n);
|
|
|
|
$this->show_twitter_xml_status($twitter_status);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$twitter_status = $this->twitter_status_array($notice);
|
|
|
|
$this->show_twitter_xml_status($twitter_status);
|
|
|
|
}
|
2008-07-16 23:02:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
common_element_end('statuses');
|
2008-07-20 09:34:28 +01:00
|
|
|
$this->end_document('xml');
|
2008-07-17 23:28:45 +01:00
|
|
|
}
|
2008-07-16 23:02:23 +01:00
|
|
|
|
2008-07-17 22:05:19 +01:00
|
|
|
function show_rss_timeline($notice, $title, $id, $link, $subtitle) {
|
2008-07-16 23:02:23 +01:00
|
|
|
|
2008-07-20 09:34:28 +01:00
|
|
|
$this->init_document('rss');
|
2008-07-16 23:02:23 +01:00
|
|
|
|
|
|
|
common_element_start('channel');
|
2008-07-17 22:05:19 +01:00
|
|
|
common_element('title', NULL, $title);
|
|
|
|
common_element('link', NULL, $link);
|
|
|
|
common_element('description', NULL, $subtitle);
|
2008-07-16 23:02:23 +01:00
|
|
|
common_element('language', NULL, 'en-us');
|
|
|
|
common_element('ttl', NULL, '40');
|
|
|
|
|
2008-07-17 23:28:45 +01:00
|
|
|
|
|
|
|
if (is_array($notice)) {
|
|
|
|
foreach ($notice as $n) {
|
|
|
|
$entry = $this->twitter_rss_entry_array($n);
|
|
|
|
$this->show_twitter_rss_item($entry);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$entry = $this->twitter_rss_entry_array($notice);
|
|
|
|
$this->show_twitter_rss_item($entry);
|
|
|
|
}
|
2008-07-16 23:02:23 +01:00
|
|
|
}
|
2008-07-17 23:28:45 +01:00
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
common_element_end('channel');
|
2008-07-20 09:34:28 +01:00
|
|
|
$this->end_twitter_rss();
|
2008-07-16 23:02:23 +01:00
|
|
|
}
|
2008-07-16 21:52:18 +01:00
|
|
|
|
2008-07-17 22:05:19 +01:00
|
|
|
function show_atom_timeline($notice, $title, $id, $link, $subtitle=NULL) {
|
2008-07-16 23:02:23 +01:00
|
|
|
|
2008-07-20 09:34:28 +01:00
|
|
|
$this->init_document('atom');
|
2008-07-16 07:09:22 +01:00
|
|
|
|
2008-07-17 22:05:19 +01:00
|
|
|
common_element('title', NULL, $title);
|
|
|
|
common_element('id', NULL, $id);
|
|
|
|
common_element('link', array('href' => $link, 'rel' => 'alternate', 'type' => 'text/html'), NULL);
|
|
|
|
common_element('subtitle', NULL, $subtitle);
|
2008-07-16 07:09:22 +01:00
|
|
|
|
2008-07-17 23:28:45 +01:00
|
|
|
if (is_array($notice)) {
|
|
|
|
foreach ($notice as $n) {
|
|
|
|
$entry = $this->twitter_rss_entry_array($n);
|
|
|
|
$this->show_twitter_atom_entry($entry);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$entry = $this->twitter_rss_entry_array($notice);
|
|
|
|
$this->show_twitter_atom_entry($entry);
|
|
|
|
}
|
2008-07-15 04:18:12 +01:00
|
|
|
}
|
2008-07-16 23:02:23 +01:00
|
|
|
|
2008-07-20 09:34:28 +01:00
|
|
|
$this->end_document('atom');
|
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
}
|
2008-07-15 04:18:12 +01:00
|
|
|
|
2008-07-17 22:05:19 +01:00
|
|
|
function show_json_timeline($notice) {
|
2008-07-16 23:02:23 +01:00
|
|
|
|
2008-07-20 09:34:28 +01:00
|
|
|
$this->init_document('json');
|
2008-07-16 23:02:23 +01:00
|
|
|
|
|
|
|
$statuses = array();
|
|
|
|
|
2008-07-17 23:28:45 +01:00
|
|
|
if (is_array($notice)) {
|
|
|
|
foreach ($notice as $n) {
|
|
|
|
$twitter_status = $this->twitter_status_array($n);
|
|
|
|
array_push($statuses, $twitter_status);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while ($notice->fetch()) {
|
|
|
|
$twitter_status = $this->twitter_status_array($notice);
|
|
|
|
array_push($statuses, $twitter_status);
|
|
|
|
}
|
|
|
|
}
|
2008-07-16 23:02:23 +01:00
|
|
|
|
|
|
|
$this->show_twitter_json_statuses($statuses);
|
2008-07-20 09:34:28 +01:00
|
|
|
|
|
|
|
$this->end_document('json');
|
2008-07-16 23:02:23 +01:00
|
|
|
}
|
2008-07-15 04:18:12 +01:00
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
/*
|
|
|
|
Returns the 20 most recent statuses posted by the authenticating user and that user's friends.
|
|
|
|
This is the equivalent of /home on the Web.
|
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
URL: http://server/api/statuses/friends_timeline.format
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
* since. Optional. Narrows the returned results to just those statuses created after the specified
|
|
|
|
HTTP-formatted date. The same behavior is available by setting an If-Modified-Since header in
|
|
|
|
your HTTP request.
|
2008-07-16 23:02:23 +01:00
|
|
|
Ex: http://server/api/statuses/friends_timeline.rss?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
2008-07-14 20:03:00 +01:00
|
|
|
* since_id. Optional. Returns only statuses with an ID greater than (that is, more recent than)
|
2008-07-16 23:02:23 +01:00
|
|
|
the specified ID. Ex: http://server/api/statuses/friends_timeline.xml?since_id=12345
|
2008-07-14 20:03:00 +01:00
|
|
|
* count. Optional. Specifies the number of statuses to retrieve. May not be greater than 200.
|
2008-07-16 23:02:23 +01:00
|
|
|
Ex: http://server/api/statuses/friends_timeline.xml?count=5
|
|
|
|
* page. Optional. Ex: http://server/api/statuses/friends_timeline.rss?page=3
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
Formats: xml, json, rss, atom
|
|
|
|
*/
|
|
|
|
function friends_timeline($args, $apidata) {
|
2008-07-14 09:09:49 +01:00
|
|
|
parent::handle($args);
|
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
$since = $this->arg('since');
|
|
|
|
$since_id = $this->arg('since_id');
|
|
|
|
$count = $this->arg('count');
|
|
|
|
$page = $this->arg('page');
|
2008-07-17 22:05:19 +01:00
|
|
|
|
|
|
|
if (!$page) {
|
|
|
|
$page = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$count) {
|
|
|
|
$count = 20;
|
|
|
|
}
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-17 22:19:42 +01:00
|
|
|
$user = $this->get_user($id, $apidata);
|
2008-07-17 22:05:19 +01:00
|
|
|
$profile = $user->getProfile();
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-17 22:05:19 +01:00
|
|
|
$sitename = common_config('site', 'name');
|
|
|
|
$siteserver = common_config('site', 'server');
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-17 22:05:19 +01:00
|
|
|
$title = sprintf(_("%s and friends"), $user->nickname);
|
|
|
|
$id = "tag:$siteserver:friends:".$user->id;
|
|
|
|
$link = common_local_url('all', array('nickname' => $user->nickname));
|
|
|
|
$subtitle = sprintf(_("Updates from %s and friends on %s!"), $user->nickname, $sitename);
|
|
|
|
|
|
|
|
$notice = new Notice();
|
|
|
|
|
|
|
|
# XXX: chokety and bad
|
|
|
|
|
|
|
|
$notice->whereAdd('EXISTS (SELECT subscribed from subscription where subscriber = '.$profile->id.' and subscribed = notice.profile_id)', 'OR');
|
|
|
|
$notice->whereAdd('profile_id = ' . $profile->id, 'OR');
|
|
|
|
|
|
|
|
# XXX: since
|
|
|
|
# XXX: since_id
|
|
|
|
|
|
|
|
$notice->orderBy('created DESC, notice.id DESC');
|
|
|
|
|
|
|
|
$notice->limit((($page-1)*20), $count);
|
|
|
|
|
|
|
|
$cnt = $notice->find();
|
|
|
|
|
|
|
|
switch($apidata['content-type']) {
|
|
|
|
case 'xml':
|
|
|
|
$this->show_xml_timeline($notice);
|
|
|
|
break;
|
|
|
|
case 'rss':
|
|
|
|
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
|
|
|
break;
|
|
|
|
case 'atom':
|
|
|
|
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
|
|
|
break;
|
|
|
|
case 'json':
|
|
|
|
$this->show_json_timeline($notice);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
common_user_error("API method not found!", $code = 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
exit();
|
2008-07-14 09:09:49 +01:00
|
|
|
}
|
2008-07-17 22:05:19 +01:00
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
/*
|
|
|
|
Returns the 20 most recent statuses posted from the authenticating user. It's also possible to
|
|
|
|
request another user's timeline via the id parameter below. This is the equivalent of the Web
|
|
|
|
/archive page for your own user, or the profile page for a third party.
|
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
URL: http://server/api/statuses/user_timeline.format
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
Formats: xml, json, rss, atom
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
* id. Optional. Specifies the ID or screen name of the user for whom to return the
|
2008-07-16 23:02:23 +01:00
|
|
|
friends_timeline. Ex: http://server/api/statuses/user_timeline/12345.xml or
|
|
|
|
http://server/api/statuses/user_timeline/bob.json.
|
2008-07-14 20:03:00 +01:00
|
|
|
* count. Optional. Specifies the number of
|
|
|
|
statuses to retrieve. May not be greater than 200. Ex:
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/user_timeline.xml?count=5
|
2008-07-14 20:03:00 +01:00
|
|
|
* since. Optional. Narrows the returned
|
|
|
|
results to just those statuses created after the specified HTTP-formatted date. The same
|
|
|
|
behavior is available by setting an If-Modified-Since header in your HTTP request. Ex:
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/user_timeline.rss?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
2008-07-14 20:03:00 +01:00
|
|
|
* since_id. Optional. Returns only statuses with an ID greater than (that is, more recent than)
|
2008-07-16 23:02:23 +01:00
|
|
|
the specified ID. Ex: http://server/api/statuses/user_timeline.xml?since_id=12345 * page.
|
|
|
|
Optional. Ex: http://server/api/statuses/friends_timeline.rss?page=3
|
2008-07-14 20:03:00 +01:00
|
|
|
*/
|
|
|
|
function user_timeline($args, $apidata) {
|
|
|
|
parent::handle($args);
|
|
|
|
|
2008-07-18 01:21:31 +01:00
|
|
|
$user = null;
|
|
|
|
|
|
|
|
// function was called with an argument /statuses/user_timeline/api_arg.format
|
|
|
|
if (isset($apidata['api_arg'])) {
|
|
|
|
|
|
|
|
if (is_numeric($apidata['api_arg'])) {
|
|
|
|
$user = User::staticGet($apidata['api_arg']);
|
|
|
|
} else {
|
|
|
|
$nickname = common_canonical_nickname($apidata['api_arg']);
|
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// if no user was specified, then we'll use the authenticated user
|
|
|
|
$user = $apidata['user'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$user) {
|
|
|
|
// Set the user to be the auth user if asked-for can't be found
|
|
|
|
// honestly! This is what Twitter does, I swear --Zach
|
|
|
|
$user = $apidata['user'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
if (!$profile) {
|
|
|
|
common_server_error(_('User has no profile.'));
|
2008-07-20 05:47:56 +01:00
|
|
|
exit();
|
2008-07-18 01:21:31 +01:00
|
|
|
}
|
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
$count = $this->arg('count');
|
|
|
|
$since = $this->arg('since');
|
|
|
|
$since_id = $this->arg('since_id');
|
2008-07-18 01:21:31 +01:00
|
|
|
|
2008-07-17 22:19:42 +01:00
|
|
|
if (!$page) {
|
|
|
|
$page = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$count) {
|
|
|
|
$count = 20;
|
|
|
|
}
|
2008-07-18 01:21:31 +01:00
|
|
|
|
2008-07-17 22:19:42 +01:00
|
|
|
$sitename = common_config('site', 'name');
|
|
|
|
$siteserver = common_config('site', 'server');
|
|
|
|
|
|
|
|
$title = sprintf(_("%s timeline"), $user->nickname);
|
|
|
|
$id = "tag:$siteserver:user:".$user->id;
|
|
|
|
$link = common_local_url('showstream', array('nickname' => $user->nickname));
|
|
|
|
$subtitle = sprintf(_("Updates from %s on %s!"), $user->nickname, $sitename);
|
|
|
|
|
|
|
|
$notice = new Notice();
|
|
|
|
|
|
|
|
$notice->profile_id = $user->id;
|
|
|
|
|
|
|
|
# XXX: since
|
|
|
|
# XXX: since_id
|
|
|
|
|
|
|
|
$notice->orderBy('created DESC, notice.id DESC');
|
|
|
|
|
|
|
|
$notice->limit((($page-1)*20), $count);
|
|
|
|
|
|
|
|
$cnt = $notice->find();
|
|
|
|
|
|
|
|
switch($apidata['content-type']) {
|
|
|
|
case 'xml':
|
|
|
|
$this->show_xml_timeline($notice);
|
|
|
|
break;
|
|
|
|
case 'rss':
|
|
|
|
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
|
|
|
break;
|
|
|
|
case 'atom':
|
|
|
|
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
|
|
|
break;
|
|
|
|
case 'json':
|
|
|
|
$this->show_json_timeline($notice);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
common_user_error("API method not found!", $code = 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
exit();
|
2008-07-14 20:03:00 +01:00
|
|
|
}
|
2008-07-17 06:44:11 +01:00
|
|
|
|
|
|
|
function update($args, $apidata) {
|
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
$user = $apidata['user'];
|
|
|
|
|
|
|
|
$notice = DB_DataObject::factory('notice');
|
|
|
|
|
|
|
|
$notice->profile_id = $user->id; # user id *is* profile id
|
|
|
|
$notice->created = DB_DataObject_Cast::dateTime();
|
|
|
|
$notice->content = $this->trimmed('status');
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-17 06:44:11 +01:00
|
|
|
if (!$notice->content) {
|
|
|
|
|
|
|
|
// XXX: Note: In this case, Twitter simply returns '200 OK'
|
|
|
|
// No error is given, but the status is not posted to the
|
|
|
|
// user's timeline. Seems bad. Shouldn't we throw an
|
|
|
|
// errror? -- Zach
|
|
|
|
exit();
|
|
|
|
|
|
|
|
} else if (strlen($notice->content) > 140) {
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-17 06:44:11 +01:00
|
|
|
// XXX: Twitter truncates anything over 140, flags the status
|
|
|
|
// as "truncated." Sending this error may screw up some clients
|
|
|
|
// that assume Twitter will truncate for them. Should we just
|
|
|
|
// truncate too? -- Zach
|
|
|
|
header('HTTP/1.1 406 Not Acceptable');
|
|
|
|
print "That's too long. Max notice size is 140 chars.\n";
|
|
|
|
exit();
|
|
|
|
}
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-17 06:44:11 +01:00
|
|
|
$notice->rendered = common_render_content($notice->content, $notice);
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-17 06:44:11 +01:00
|
|
|
$id = $notice->insert();
|
2008-07-14 20:03:00 +01:00
|
|
|
|
2008-07-17 06:44:11 +01:00
|
|
|
if (!$id) {
|
|
|
|
common_server_error('Could not update status!', 500);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
$orig = clone($notice);
|
|
|
|
$notice->uri = common_notice_uri($notice);
|
|
|
|
|
|
|
|
if (!$notice->update($orig)) {
|
|
|
|
common_server_error('Could not save status!', 500);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
common_save_replies($notice);
|
|
|
|
common_broadcast_notice($notice);
|
|
|
|
|
|
|
|
// FIXME: Bad Hack
|
|
|
|
// I should be able to just sent this notice off for display,
|
|
|
|
// but $notice->created does not contain a string at this
|
|
|
|
// point and I don't know how to convert it to one here. So
|
|
|
|
// I'm forced to have DBObject pull the notice back out of the
|
|
|
|
// DB before printing. --Zach
|
|
|
|
$apidata['api_arg'] = $id;
|
|
|
|
$this->show($args, $apidata);
|
|
|
|
|
|
|
|
exit();
|
2008-07-14 09:09:49 +01:00
|
|
|
}
|
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
/*
|
|
|
|
Returns the 20 most recent @replies (status updates prefixed with @username) for the authenticating user.
|
2008-07-16 23:02:23 +01:00
|
|
|
URL: http://server/api/statuses/replies.format
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
Formats: xml, json, rss, atom
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
* page. Optional. Retrieves the 20 next most recent replies. Ex: http://server/api/statuses/replies.xml?page=3
|
2008-07-14 20:03:00 +01:00
|
|
|
* since. Optional. Narrows the returned results to just those replies created after the specified HTTP-formatted date. The
|
|
|
|
same behavior is available by setting an If-Modified-Since header in your HTTP request. Ex:
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/replies.xml?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
2008-07-14 20:03:00 +01:00
|
|
|
* since_id. Optional. Returns only statuses with an ID greater than (that is, more recent than) the specified
|
2008-07-16 23:02:23 +01:00
|
|
|
ID. Ex: http://server/api/statuses/replies.xml?since_id=12345
|
2008-07-14 20:03:00 +01:00
|
|
|
*/
|
2008-07-14 09:09:49 +01:00
|
|
|
function replies($args, $apidata) {
|
2008-07-20 09:34:28 +01:00
|
|
|
|
2008-07-14 09:09:49 +01:00
|
|
|
parent::handle($args);
|
2008-07-17 23:28:45 +01:00
|
|
|
|
|
|
|
$since = $this->arg('since');
|
|
|
|
|
|
|
|
$count = $this->arg('count');
|
|
|
|
$page = $this->arg('page');
|
|
|
|
|
|
|
|
$user = $apidata['user'];
|
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
$sitename = common_config('site', 'name');
|
|
|
|
$siteserver = common_config('site', 'server');
|
|
|
|
|
|
|
|
$title = sprintf(_("%s / Updates replying to %s"), $sitename, $user->nickname);
|
|
|
|
$id = "tag:$siteserver:replies:".$user->id;
|
|
|
|
$link = common_local_url('replies', array('nickname' => $user->nickname));
|
|
|
|
$subtitle = "gar";
|
2008-07-17 23:35:21 +01:00
|
|
|
$subtitle = sprintf(_("%s updates that reply to updates from %s / %s."), $sitename, $user->nickname, $profile->getBestName());
|
2008-07-17 23:28:45 +01:00
|
|
|
|
|
|
|
if (!$page) {
|
|
|
|
$page = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$count) {
|
|
|
|
$count = 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
$reply = new Reply();
|
|
|
|
|
|
|
|
$reply->profile_id = $user->id;
|
|
|
|
|
|
|
|
$reply->orderBy('modified DESC');
|
|
|
|
|
|
|
|
$page = ($this->arg('page')) ? ($this->arg('page')+0) : 1;
|
|
|
|
|
|
|
|
$reply->limit((($page-1)*20), $count);
|
|
|
|
|
|
|
|
$cnt = $reply->find();
|
|
|
|
|
|
|
|
$notices = array();
|
|
|
|
|
|
|
|
if ($cnt) {
|
|
|
|
while ($reply->fetch()) {
|
|
|
|
$notice = new Notice();
|
|
|
|
$notice->id = $reply->notice_id;
|
|
|
|
$result = $notice->find(true);
|
|
|
|
if (!$result) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$notices[] = clone($notice);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch($apidata['content-type']) {
|
|
|
|
case 'xml':
|
|
|
|
$this->show_xml_timeline($notices);
|
|
|
|
break;
|
|
|
|
case 'rss':
|
|
|
|
$this->show_rss_timeline($notices, $title, $id, $link, $subtitle);
|
|
|
|
break;
|
|
|
|
case 'atom':
|
|
|
|
$this->show_atom_timeline($notices, $title, $id, $link, $subtitle);
|
|
|
|
break;
|
|
|
|
case 'json':
|
|
|
|
$this->show_json_timeline($notices);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
common_user_error("API method not found!", $code = 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
exit();
|
|
|
|
|
|
|
|
|
2008-07-14 09:09:49 +01:00
|
|
|
}
|
2008-07-17 23:28:45 +01:00
|
|
|
|
2008-07-14 09:09:49 +01:00
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
Destroys the status specified by the required ID parameter. The authenticating user must be
|
|
|
|
the author of the specified status.
|
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
URL: http://server/api/statuses/destroy/id.format
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
Formats: xml, json
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
* id. Required. The ID of the status to destroy. Ex:
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/destroy/12345.json or
|
|
|
|
http://server/api/statuses/destroy/23456.xml
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
*/
|
2008-07-14 09:09:49 +01:00
|
|
|
function destroy($args, $apidata) {
|
|
|
|
parent::handle($args);
|
|
|
|
common_server_error("API method under construction.", $code=501);
|
|
|
|
}
|
|
|
|
|
|
|
|
# User Methods
|
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
/*
|
|
|
|
Returns up to 100 of the authenticating user's friends who have most recently updated, each with current status inline.
|
|
|
|
It's also possible to request another user's recent friends list via the id parameter below.
|
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
URL: http://server/api/statuses/friends.format
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
Formats: xml, json
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
* id. Optional. The ID or screen name of the user for whom to request a list of friends. Ex:
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/friends/12345.json
|
2008-07-14 20:03:00 +01:00
|
|
|
or
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/friends/bob.xml
|
|
|
|
* page. Optional. Retrieves the next 100 friends. Ex: http://server/api/statuses/friends.xml?page=2
|
2008-07-14 20:03:00 +01:00
|
|
|
* lite. Optional. Prevents the inline inclusion of current status. Must be set to a value of true. Ex:
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/friends.xml?lite=true
|
2008-07-14 20:03:00 +01:00
|
|
|
* since. Optional. Narrows the returned results to just those friendships created after the specified
|
|
|
|
HTTP-formatted date. The same behavior is available by setting an If-Modified-Since header in your HTTP
|
2008-07-16 23:02:23 +01:00
|
|
|
request. Ex: http://server/api/statuses/friends.xml?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
2008-07-14 20:03:00 +01:00
|
|
|
*/
|
2008-07-14 09:09:49 +01:00
|
|
|
function friends($args, $apidata) {
|
|
|
|
parent::handle($args);
|
2008-07-18 06:13:18 +01:00
|
|
|
return $this->subscriptions($apidata, 'subscribed', 'subscriber');
|
2008-07-14 09:09:49 +01:00
|
|
|
}
|
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
/*
|
|
|
|
Returns the authenticating user's followers, each with current status inline. They are ordered by the
|
|
|
|
order in which they joined Twitter (this is going to be changed).
|
|
|
|
|
2008-07-16 23:02:23 +01:00
|
|
|
URL: http://server/api/statuses/followers.format
|
2008-07-14 20:03:00 +01:00
|
|
|
Formats: xml, json
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
* id. Optional. The ID or screen name of the user for whom to request a list of followers. Ex:
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/followers/12345.json
|
2008-07-14 20:03:00 +01:00
|
|
|
or
|
2008-07-16 23:02:23 +01:00
|
|
|
http://server/api/statuses/followers/bob.xml
|
|
|
|
* page. Optional. Retrieves the next 100 followers. Ex: http://server/api/statuses/followers.xml?page=2
|
2008-07-14 20:03:00 +01:00
|
|
|
* lite. Optional. Prevents the inline inclusion of current status. Must be set to a value of true.
|
2008-07-16 23:02:23 +01:00
|
|
|
Ex: http://server/api/statuses/followers.xml?lite=true
|
2008-07-14 20:03:00 +01:00
|
|
|
*/
|
2008-07-14 09:09:49 +01:00
|
|
|
function followers($args, $apidata) {
|
|
|
|
parent::handle($args);
|
2008-07-18 06:08:45 +01:00
|
|
|
|
2008-07-18 06:13:18 +01:00
|
|
|
return $this->subscriptions($apidata, 'subscriber', 'subscribed');
|
2008-07-18 06:08:45 +01:00
|
|
|
}
|
2008-07-18 06:13:18 +01:00
|
|
|
|
|
|
|
function subscriptions($apidata, $other_attr, $user_attr) {
|
2008-07-18 03:55:54 +01:00
|
|
|
|
2008-07-18 06:13:18 +01:00
|
|
|
$user = $this->get_subs_user($apidata);
|
|
|
|
|
|
|
|
# XXX: id
|
|
|
|
# XXX: lite
|
2008-07-18 03:55:54 +01:00
|
|
|
|
2008-07-18 06:25:57 +01:00
|
|
|
$page = $this->trimmed('page');
|
|
|
|
|
|
|
|
if (!$page || !is_numeric($page)) {
|
|
|
|
$page = 1;
|
|
|
|
}
|
|
|
|
|
2008-07-18 03:55:54 +01:00
|
|
|
$profile = $user->getProfile();
|
|
|
|
|
|
|
|
if (!$profile) {
|
|
|
|
common_server_error(_('User has no profile.'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$sub = new Subscription();
|
2008-07-18 06:08:45 +01:00
|
|
|
$sub->$user_attr = $profile->id;
|
2008-07-18 03:55:54 +01:00
|
|
|
$sub->orderBy('created DESC');
|
2008-07-18 06:25:57 +01:00
|
|
|
$sub->limit(($page-1)*100, 100);
|
|
|
|
|
2008-07-18 06:08:45 +01:00
|
|
|
$others = array();
|
2008-07-18 03:55:54 +01:00
|
|
|
|
|
|
|
if ($sub->find()) {
|
|
|
|
while ($sub->fetch()) {
|
2008-07-18 06:08:45 +01:00
|
|
|
$others[] = Profile::staticGet($sub->$other_attr);
|
2008-07-18 03:55:54 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// user has no followers
|
|
|
|
}
|
|
|
|
|
2008-07-18 06:08:45 +01:00
|
|
|
$type = $apidata['content-type'];
|
|
|
|
|
|
|
|
$this->init_document($type);
|
|
|
|
$this->show_profiles($others, $type);
|
|
|
|
$this->end_document($type);
|
2008-07-18 03:55:54 +01:00
|
|
|
exit();
|
2008-07-14 09:09:49 +01:00
|
|
|
}
|
2008-07-18 03:55:54 +01:00
|
|
|
|
2008-07-18 06:13:18 +01:00
|
|
|
function get_subs_user($apidata) {
|
|
|
|
|
|
|
|
// function was called with an argument /statuses/user_timeline/api_arg.format
|
|
|
|
if (isset($apidata['api_arg'])) {
|
|
|
|
|
|
|
|
if (is_numeric($apidata['api_arg'])) {
|
|
|
|
$user = User::staticGet($apidata['api_arg']);
|
|
|
|
} else {
|
|
|
|
$nickname = common_canonical_nickname($apidata['api_arg']);
|
|
|
|
$user = User::staticGet('nickname', $nickname);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
// if no user was specified, then we'll use the authenticated user
|
|
|
|
$user = $apidata['user'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$user) {
|
|
|
|
// Set the user to be the auth user if asked-for can't be found
|
|
|
|
// honestly! This is what Twitter does, I swear --Zach
|
|
|
|
$user = $apidata['user'];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $user;
|
|
|
|
}
|
|
|
|
|
2008-07-18 06:08:45 +01:00
|
|
|
function show_profiles($profiles, $type) {
|
|
|
|
switch ($type) {
|
|
|
|
case 'xml':
|
|
|
|
common_element_start('users', array('type' => 'array'));
|
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
$this->show_profile($profile);
|
|
|
|
}
|
2008-07-18 06:14:04 +01:00
|
|
|
common_element_end('users');
|
2008-07-18 06:08:45 +01:00
|
|
|
break;
|
|
|
|
case 'json':
|
|
|
|
$arrays = array();
|
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
$arrays[] = $this->twitter_user_array($profile, true);
|
|
|
|
}
|
|
|
|
print json_encode($arrays);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$this->client_error(_('unsupported file type'));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2008-07-18 03:55:54 +01:00
|
|
|
|
2008-07-14 20:03:00 +01:00
|
|
|
/*
|
|
|
|
Returns a list of the users currently featured on the site with their current statuses inline.
|
2008-07-16 23:02:23 +01:00
|
|
|
URL: http://server/api/statuses/featured.format
|
2008-07-14 20:03:00 +01:00
|
|
|
|
|
|
|
Formats: xml, json
|
|
|
|
*/
|
2008-07-14 09:09:49 +01:00
|
|
|
function featured($args, $apidata) {
|
|
|
|
parent::handle($args);
|
|
|
|
common_server_error("API method under construction.", $code=501);
|
|
|
|
}
|
2008-07-17 22:19:42 +01:00
|
|
|
|
|
|
|
function get_user($id, $apidata) {
|
|
|
|
if (!$id) {
|
|
|
|
return $apidata['user'];
|
|
|
|
} else if (is_numeric($id)) {
|
|
|
|
return User::staticGet($id);
|
|
|
|
} else {
|
|
|
|
return User::staticGet('nickname', $id);
|
|
|
|
}
|
|
|
|
}
|
2008-07-14 09:09:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|