Update some gettext strings and number the arguements so life is easier for translators
darcs-hash:20080729080641-533db-560337e226a02dd6fc671f090883d4bedd50eaaa.gz
This commit is contained in:
parent
f318f41ebf
commit
9d89e7b4ac
|
@ -109,11 +109,37 @@ class TagAction extends StreamAction {
|
||||||
$tw[$tags->tag] = $tags->weight;
|
$tw[$tags->tag] = $tags->weight;
|
||||||
$sum += $tags->weight;
|
$sum += $tags->weight;
|
||||||
}
|
}
|
||||||
|
common_element_end('ul');
|
||||||
foreach ($tw as $tag => $weight) {
|
}
|
||||||
$this->show_tag($tag, $weight, $weight/$sum);
|
|
||||||
}
|
common_pagination($page > 1, $cnt > TAGS_PER_PAGE,
|
||||||
|
$page, 'tags');
|
||||||
|
}
|
||||||
|
|
||||||
|
private static function show_tag($tag) {
|
||||||
|
common_element_start('li', array('class' => 'notice_single'));
|
||||||
|
common_element_start('a', array(
|
||||||
|
'class' => 'nickname',
|
||||||
|
'href' => common_local_url('tag', array('tag' => $tag->tag)),
|
||||||
|
'title' => sprintf(_("Notices tagged with %s"), $tag->tag)));
|
||||||
|
common_text('#' . $tag->tag);
|
||||||
|
common_element_end('a');
|
||||||
|
common_text(sprintf(_('%s Notices recently tagged with %s'), $tag->num, $tag->tag));
|
||||||
|
|
||||||
|
$notice = Notice::staticGet($tag->last_notice_id);
|
||||||
|
if ($notice) {
|
||||||
|
$noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
|
||||||
|
common_element_start('p', 'time');
|
||||||
|
common_text(_('Last message posted: '));
|
||||||
|
common_element('a', array('class' => 'permalink',
|
||||||
|
'href' => $noticeurl,
|
||||||
|
'title' => common_exact_date($notice->created)),
|
||||||
|
common_date_string($notice->created));
|
||||||
|
|
||||||
|
common_text(_(' by '));
|
||||||
|
$profile = $notice->getProfile();
|
||||||
|
common_element('a', array('href' => $profile->profileurl),
|
||||||
|
$profile->nickname);
|
||||||
common_element_end('p');
|
common_element_end('p');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,29 +23,29 @@ require_once(INSTALLDIR.'/lib/twitterapi.php');
|
||||||
|
|
||||||
/* XXX: Please don't freak out about all the ugly comments in this file.
|
/* XXX: Please don't freak out about all the ugly comments in this file.
|
||||||
* They are mostly in here for reference while I work on the
|
* They are mostly in here for reference while I work on the
|
||||||
* API. I'll fix things up later to make them look better later. -- Zach
|
* API. I'll fix things up later to make them look better later. -- Zach
|
||||||
*/
|
*/
|
||||||
class TwitapistatusesAction extends TwitterapiAction {
|
class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
function is_readonly() {
|
function is_readonly() {
|
||||||
|
|
||||||
static $write_methods = array( 'update',
|
static $write_methods = array( 'update',
|
||||||
'destroy');
|
'destroy');
|
||||||
|
|
||||||
$cmdtext = explode('.', $this->arg('method'));
|
$cmdtext = explode('.', $this->arg('method'));
|
||||||
|
|
||||||
if (in_array($cmdtext[0], $write_methods)) {
|
if (in_array($cmdtext[0], $write_methods)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
function public_timeline($args, $apidata) {
|
function public_timeline($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
$sitename = common_config('site', 'name');
|
$sitename = common_config('site', 'name');
|
||||||
$siteserver = common_config('site', 'server');
|
$siteserver = common_config('site', 'server');
|
||||||
$title = sprintf(_("%s public timeline"), $sitename);
|
$title = sprintf(_("%s public timeline"), $sitename);
|
||||||
$id = "tag:$siteserver:Statuses";
|
$id = "tag:$siteserver:Statuses";
|
||||||
$link = common_root_url();
|
$link = common_root_url();
|
||||||
|
@ -60,22 +60,22 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
// of notices by users who have custom avatars, so fix this SQL -- Zach
|
// of notices by users who have custom avatars, so fix this SQL -- Zach
|
||||||
|
|
||||||
# XXX: sub-optimal performance
|
# XXX: sub-optimal performance
|
||||||
|
|
||||||
$notice->is_local = 1;
|
$notice->is_local = 1;
|
||||||
$notice->orderBy('created DESC, notice.id DESC');
|
$notice->orderBy('created DESC, notice.id DESC');
|
||||||
$notice->limit($MAX_PUBSTATUSES);
|
$notice->limit($MAX_PUBSTATUSES);
|
||||||
$cnt = $notice->find();
|
$cnt = $notice->find();
|
||||||
|
|
||||||
if ($cnt > 0) {
|
if ($cnt > 0) {
|
||||||
|
|
||||||
switch($apidata['content-type']) {
|
switch($apidata['content-type']) {
|
||||||
case 'xml':
|
case 'xml':
|
||||||
$this->show_xml_timeline($notice);
|
$this->show_xml_timeline($notice);
|
||||||
break;
|
break;
|
||||||
case 'rss':
|
case 'rss':
|
||||||
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
||||||
break;
|
break;
|
||||||
case 'atom':
|
case 'atom':
|
||||||
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
||||||
break;
|
break;
|
||||||
case 'json':
|
case 'json':
|
||||||
|
@ -85,14 +85,14 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
common_user_error("API method not found!", $code = 404);
|
common_user_error("API method not found!", $code = 404);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
common_server_error('Couldn\'t find any statuses.', $code = 503);
|
common_server_error('Couldn\'t find any statuses.', $code = 503);
|
||||||
}
|
}
|
||||||
|
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_xml_timeline($notice) {
|
function show_xml_timeline($notice) {
|
||||||
|
|
||||||
$this->init_document('xml');
|
$this->init_document('xml');
|
||||||
|
@ -100,50 +100,50 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
if (is_array($notice)) {
|
if (is_array($notice)) {
|
||||||
foreach ($notice as $n) {
|
foreach ($notice as $n) {
|
||||||
$twitter_status = $this->twitter_status_array($n);
|
$twitter_status = $this->twitter_status_array($n);
|
||||||
$this->show_twitter_xml_status($twitter_status);
|
$this->show_twitter_xml_status($twitter_status);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
while ($notice->fetch()) {
|
while ($notice->fetch()) {
|
||||||
$twitter_status = $this->twitter_status_array($notice);
|
$twitter_status = $this->twitter_status_array($notice);
|
||||||
$this->show_twitter_xml_status($twitter_status);
|
$this->show_twitter_xml_status($twitter_status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
common_element_end('statuses');
|
common_element_end('statuses');
|
||||||
$this->end_document('xml');
|
$this->end_document('xml');
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_rss_timeline($notice, $title, $id, $link, $subtitle) {
|
function show_rss_timeline($notice, $title, $id, $link, $subtitle) {
|
||||||
|
|
||||||
$this->init_document('rss');
|
$this->init_document('rss');
|
||||||
|
|
||||||
common_element_start('channel');
|
common_element_start('channel');
|
||||||
common_element('title', NULL, $title);
|
common_element('title', NULL, $title);
|
||||||
common_element('link', NULL, $link);
|
common_element('link', NULL, $link);
|
||||||
common_element('description', NULL, $subtitle);
|
common_element('description', NULL, $subtitle);
|
||||||
common_element('language', NULL, 'en-us');
|
common_element('language', NULL, 'en-us');
|
||||||
common_element('ttl', NULL, '40');
|
common_element('ttl', NULL, '40');
|
||||||
|
|
||||||
|
|
||||||
if (is_array($notice)) {
|
if (is_array($notice)) {
|
||||||
foreach ($notice as $n) {
|
foreach ($notice as $n) {
|
||||||
$entry = $this->twitter_rss_entry_array($n);
|
$entry = $this->twitter_rss_entry_array($n);
|
||||||
$this->show_twitter_rss_item($entry);
|
$this->show_twitter_rss_item($entry);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
while ($notice->fetch()) {
|
while ($notice->fetch()) {
|
||||||
$entry = $this->twitter_rss_entry_array($notice);
|
$entry = $this->twitter_rss_entry_array($notice);
|
||||||
$this->show_twitter_rss_item($entry);
|
$this->show_twitter_rss_item($entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
common_element_end('channel');
|
common_element_end('channel');
|
||||||
$this->end_twitter_rss();
|
$this->end_twitter_rss();
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_atom_timeline($notice, $title, $id, $link, $subtitle=NULL) {
|
function show_atom_timeline($notice, $title, $id, $link, $subtitle=NULL) {
|
||||||
|
|
||||||
$this->init_document('atom');
|
$this->init_document('atom');
|
||||||
|
|
||||||
common_element('title', NULL, $title);
|
common_element('title', NULL, $title);
|
||||||
|
@ -153,61 +153,61 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
if (is_array($notice)) {
|
if (is_array($notice)) {
|
||||||
foreach ($notice as $n) {
|
foreach ($notice as $n) {
|
||||||
$entry = $this->twitter_rss_entry_array($n);
|
$entry = $this->twitter_rss_entry_array($n);
|
||||||
$this->show_twitter_atom_entry($entry);
|
$this->show_twitter_atom_entry($entry);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
while ($notice->fetch()) {
|
while ($notice->fetch()) {
|
||||||
$entry = $this->twitter_rss_entry_array($notice);
|
$entry = $this->twitter_rss_entry_array($notice);
|
||||||
$this->show_twitter_atom_entry($entry);
|
$this->show_twitter_atom_entry($entry);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->end_document('atom');
|
$this->end_document('atom');
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_json_timeline($notice) {
|
function show_json_timeline($notice) {
|
||||||
|
|
||||||
$this->init_document('json');
|
$this->init_document('json');
|
||||||
|
|
||||||
$statuses = array();
|
$statuses = array();
|
||||||
|
|
||||||
if (is_array($notice)) {
|
if (is_array($notice)) {
|
||||||
foreach ($notice as $n) {
|
foreach ($notice as $n) {
|
||||||
$twitter_status = $this->twitter_status_array($n);
|
$twitter_status = $this->twitter_status_array($n);
|
||||||
array_push($statuses, $twitter_status);
|
array_push($statuses, $twitter_status);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
while ($notice->fetch()) {
|
while ($notice->fetch()) {
|
||||||
$twitter_status = $this->twitter_status_array($notice);
|
$twitter_status = $this->twitter_status_array($notice);
|
||||||
array_push($statuses, $twitter_status);
|
array_push($statuses, $twitter_status);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->show_twitter_json_statuses($statuses);
|
$this->show_twitter_json_statuses($statuses);
|
||||||
|
|
||||||
$this->end_document('json');
|
$this->end_document('json');
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Returns the 20 most recent statuses posted by the authenticating user and that user's friends.
|
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.
|
This is the equivalent of /home on the Web.
|
||||||
|
|
||||||
URL: http://server/api/statuses/friends_timeline.format
|
URL: http://server/api/statuses/friends_timeline.format
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|
||||||
* since. Optional. Narrows the returned results to just those statuses created after the specified
|
* 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
|
HTTP-formatted date. The same behavior is available by setting an If-Modified-Since header in
|
||||||
your HTTP request.
|
your HTTP request.
|
||||||
Ex: http://server/api/statuses/friends_timeline.rss?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
Ex: http://server/api/statuses/friends_timeline.rss?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
||||||
* since_id. Optional. Returns only statuses with an ID greater than (that is, more recent than)
|
* since_id. Optional. Returns only statuses with an ID greater than (that is, more recent than)
|
||||||
the specified ID. Ex: http://server/api/statuses/friends_timeline.xml?since_id=12345
|
the specified ID. Ex: http://server/api/statuses/friends_timeline.xml?since_id=12345
|
||||||
* count. Optional. Specifies the number of statuses to retrieve. May not be greater than 200.
|
* count. Optional. Specifies the number of statuses to retrieve. May not be greater than 200.
|
||||||
Ex: http://server/api/statuses/friends_timeline.xml?count=5
|
Ex: http://server/api/statuses/friends_timeline.xml?count=5
|
||||||
* page. Optional. Ex: http://server/api/statuses/friends_timeline.rss?page=3
|
* page. Optional. Ex: http://server/api/statuses/friends_timeline.rss?page=3
|
||||||
|
|
||||||
Formats: xml, json, rss, atom
|
Formats: xml, json, rss, atom
|
||||||
*/
|
*/
|
||||||
function friends_timeline($args, $apidata) {
|
function friends_timeline($args, $apidata) {
|
||||||
|
@ -217,7 +217,7 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
$since_id = $this->arg('since_id');
|
$since_id = $this->arg('since_id');
|
||||||
$count = $this->arg('count');
|
$count = $this->arg('count');
|
||||||
$page = $this->arg('page');
|
$page = $this->arg('page');
|
||||||
|
|
||||||
if (!$page) {
|
if (!$page) {
|
||||||
$page = 1;
|
$page = 1;
|
||||||
}
|
}
|
||||||
|
@ -228,25 +228,25 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
$user = $this->get_user($id, $apidata);
|
$user = $this->get_user($id, $apidata);
|
||||||
$profile = $user->getProfile();
|
$profile = $user->getProfile();
|
||||||
|
|
||||||
$sitename = common_config('site', 'name');
|
$sitename = common_config('site', 'name');
|
||||||
$siteserver = common_config('site', 'server');
|
$siteserver = common_config('site', 'server');
|
||||||
|
|
||||||
$title = sprintf(_("%s and friends"), $user->nickname);
|
$title = sprintf(_("%s and friends"), $user->nickname);
|
||||||
$id = "tag:$siteserver:friends:".$user->id;
|
$id = "tag:$siteserver:friends:".$user->id;
|
||||||
$link = common_local_url('all', array('nickname' => $user->nickname));
|
$link = common_local_url('all', array('nickname' => $user->nickname));
|
||||||
$subtitle = sprintf(_("Updates from %s and friends on %s!"), $user->nickname, $sitename);
|
$subtitle = sprintf(_('Updates from %1$s and friends on %2$s!'), $user->nickname, $sitename);
|
||||||
|
|
||||||
$notice = $user->noticesWithFriends(($page-1)*20, $count);
|
$notice = $user->noticesWithFriends(($page-1)*20, $count);
|
||||||
|
|
||||||
switch($apidata['content-type']) {
|
switch($apidata['content-type']) {
|
||||||
case 'xml':
|
case 'xml':
|
||||||
$this->show_xml_timeline($notice);
|
$this->show_xml_timeline($notice);
|
||||||
break;
|
break;
|
||||||
case 'rss':
|
case 'rss':
|
||||||
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
||||||
break;
|
break;
|
||||||
case 'atom':
|
case 'atom':
|
||||||
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
||||||
break;
|
break;
|
||||||
case 'json':
|
case 'json':
|
||||||
|
@ -255,7 +255,7 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
default:
|
default:
|
||||||
common_user_error("API method not found!", $code = 404);
|
common_user_error("API method not found!", $code = 404);
|
||||||
}
|
}
|
||||||
|
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -272,34 +272,34 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
* id. Optional. Specifies the ID or screen name of the user for whom to return the
|
* id. Optional. Specifies the ID or screen name of the user for whom to return the
|
||||||
friends_timeline. Ex: http://server/api/statuses/user_timeline/12345.xml or
|
friends_timeline. Ex: http://server/api/statuses/user_timeline/12345.xml or
|
||||||
http://server/api/statuses/user_timeline/bob.json.
|
http://server/api/statuses/user_timeline/bob.json.
|
||||||
* count. Optional. Specifies the number of
|
* count. Optional. Specifies the number of
|
||||||
statuses to retrieve. May not be greater than 200. Ex:
|
statuses to retrieve. May not be greater than 200. Ex:
|
||||||
http://server/api/statuses/user_timeline.xml?count=5
|
http://server/api/statuses/user_timeline.xml?count=5
|
||||||
* since. Optional. Narrows the returned
|
* since. Optional. Narrows the returned
|
||||||
results to just those statuses created after the specified HTTP-formatted date. The same
|
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:
|
behavior is available by setting an If-Modified-Since header in your HTTP request. Ex:
|
||||||
http://server/api/statuses/user_timeline.rss?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
http://server/api/statuses/user_timeline.rss?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
||||||
* since_id. Optional. Returns only statuses with an ID greater than (that is, more recent than)
|
* since_id. Optional. Returns only statuses with an ID greater than (that is, more recent than)
|
||||||
the specified ID. Ex: http://server/api/statuses/user_timeline.xml?since_id=12345 * page.
|
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
|
Optional. Ex: http://server/api/statuses/friends_timeline.rss?page=3
|
||||||
*/
|
*/
|
||||||
function user_timeline($args, $apidata) {
|
function user_timeline($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
$user = null;
|
$user = null;
|
||||||
|
|
||||||
// function was called with an argument /statuses/user_timeline/api_arg.format
|
// function was called with an argument /statuses/user_timeline/api_arg.format
|
||||||
if (isset($apidata['api_arg'])) {
|
if (isset($apidata['api_arg'])) {
|
||||||
|
|
||||||
if (is_numeric($apidata['api_arg'])) {
|
if (is_numeric($apidata['api_arg'])) {
|
||||||
$user = User::staticGet($apidata['api_arg']);
|
$user = User::staticGet($apidata['api_arg']);
|
||||||
} else {
|
} else {
|
||||||
$nickname = common_canonical_nickname($apidata['api_arg']);
|
$nickname = common_canonical_nickname($apidata['api_arg']);
|
||||||
$user = User::staticGet('nickname', $nickname);
|
$user = User::staticGet('nickname', $nickname);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// if no user was specified, then we'll use the authenticated user
|
// if no user was specified, then we'll use the authenticated user
|
||||||
$user = $apidata['user'];
|
$user = $apidata['user'];
|
||||||
}
|
}
|
||||||
|
@ -316,11 +316,11 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
common_server_error(_('User has no profile.'));
|
common_server_error(_('User has no profile.'));
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
$count = $this->arg('count');
|
$count = $this->arg('count');
|
||||||
$since = $this->arg('since');
|
$since = $this->arg('since');
|
||||||
$since_id = $this->arg('since_id');
|
$since_id = $this->arg('since_id');
|
||||||
|
|
||||||
if (!$page) {
|
if (!$page) {
|
||||||
$page = 1;
|
$page = 1;
|
||||||
}
|
}
|
||||||
|
@ -328,36 +328,36 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
if (!$count) {
|
if (!$count) {
|
||||||
$count = 20;
|
$count = 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
$sitename = common_config('site', 'name');
|
$sitename = common_config('site', 'name');
|
||||||
$siteserver = common_config('site', 'server');
|
$siteserver = common_config('site', 'server');
|
||||||
|
|
||||||
$title = sprintf(_("%s timeline"), $user->nickname);
|
$title = sprintf(_("%s timeline"), $user->nickname);
|
||||||
$id = "tag:$siteserver:user:".$user->id;
|
$id = "tag:$siteserver:user:".$user->id;
|
||||||
$link = common_local_url('showstream', array('nickname' => $user->nickname));
|
$link = common_local_url('showstream', array('nickname' => $user->nickname));
|
||||||
$subtitle = sprintf(_("Updates from %s on %s!"), $user->nickname, $sitename);
|
$subtitle = sprintf(_('Updates from %1$s on %2$s!'), $user->nickname, $sitename);
|
||||||
|
|
||||||
$notice = new Notice();
|
$notice = new Notice();
|
||||||
|
|
||||||
$notice->profile_id = $user->id;
|
$notice->profile_id = $user->id;
|
||||||
|
|
||||||
# XXX: since
|
# XXX: since
|
||||||
# XXX: since_id
|
# XXX: since_id
|
||||||
|
|
||||||
$notice->orderBy('created DESC, notice.id DESC');
|
$notice->orderBy('created DESC, notice.id DESC');
|
||||||
|
|
||||||
$notice->limit((($page-1)*20), $count);
|
$notice->limit((($page-1)*20), $count);
|
||||||
|
|
||||||
$cnt = $notice->find();
|
$cnt = $notice->find();
|
||||||
|
|
||||||
switch($apidata['content-type']) {
|
switch($apidata['content-type']) {
|
||||||
case 'xml':
|
case 'xml':
|
||||||
$this->show_xml_timeline($notice);
|
$this->show_xml_timeline($notice);
|
||||||
break;
|
break;
|
||||||
case 'rss':
|
case 'rss':
|
||||||
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
$this->show_rss_timeline($notice, $title, $id, $link, $subtitle);
|
||||||
break;
|
break;
|
||||||
case 'atom':
|
case 'atom':
|
||||||
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
$this->show_atom_timeline($notice, $title, $id, $link, $subtitle);
|
||||||
break;
|
break;
|
||||||
case 'json':
|
case 'json':
|
||||||
|
@ -366,41 +366,46 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
default:
|
default:
|
||||||
common_user_error("API method not found!", $code = 404);
|
common_user_error("API method not found!", $code = 404);
|
||||||
}
|
}
|
||||||
|
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
function update($args, $apidata) {
|
function update($args, $apidata) {
|
||||||
|
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
$user = $apidata['user'];
|
$user = $apidata['user'];
|
||||||
|
|
||||||
|
$this->is_readonly();
|
||||||
|
|
||||||
$status = $this->trimmed('status');
|
|
||||||
$source = $this->trimmed('source');
|
$notice = DB_DataObject::factory('notice');
|
||||||
|
|
||||||
if (!$source) {
|
$notice->profile_id = $user->id; # user id *is* profile id
|
||||||
$source = 'api';
|
$notice->created = DB_DataObject_Cast::dateTime();
|
||||||
}
|
$notice->content = $this->trimmed('status');
|
||||||
|
|
||||||
if (!$status) {
|
if (!$notice->content) {
|
||||||
|
|
||||||
// XXX: Note: In this case, Twitter simply returns '200 OK'
|
// XXX: Note: In this case, Twitter simply returns '200 OK'
|
||||||
// No error is given, but the status is not posted to the
|
// No error is given, but the status is not posted to the
|
||||||
// user's timeline. Seems bad. Shouldn't we throw an
|
// user's timeline. Seems bad. Shouldn't we throw an
|
||||||
// errror? -- Zach
|
// errror? -- Zach
|
||||||
exit();
|
exit();
|
||||||
|
|
||||||
} else if (strlen($status) > 140) {
|
} else if (strlen($status) > 140) {
|
||||||
|
|
||||||
// XXX: Twitter truncates anything over 140, flags the status
|
// XXX: Twitter truncates anything over 140, flags the status
|
||||||
// as "truncated." Sending this error may screw up some clients
|
// as "truncated." Sending this error may screw up some clients
|
||||||
// that assume Twitter will truncate for them. Should we just
|
// that assume Twitter will truncate for them. Should we just
|
||||||
// truncate too? -- Zach
|
// truncate too? -- Zach
|
||||||
header('HTTP/1.1 406 Not Acceptable');
|
header('HTTP/1.1 406 Not Acceptable');
|
||||||
print "That's too long. Max notice size is 140 chars.\n";
|
print "That's too long. Max notice size is 140 chars.\n";
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$notice->rendered = common_render_content($notice->content, $notice);
|
||||||
|
$notice->is_local = 1;
|
||||||
|
|
||||||
$notice = Notice::saveNew($user->id, $status, $source);
|
$notice = Notice::saveNew($user->id, $status, $source);
|
||||||
|
|
||||||
|
@ -411,7 +416,7 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
common_broadcast_notice($notice);
|
common_broadcast_notice($notice);
|
||||||
|
|
||||||
// FIXME: Bad Hack
|
// FIXME: Bad Hack
|
||||||
// I should be able to just sent this notice off for display,
|
// I should be able to just sent this notice off for display,
|
||||||
// but $notice->created does not contain a string at this
|
// but $notice->created does not contain a string at this
|
||||||
// point and I don't know how to convert it to one here. So
|
// point and I don't know how to convert it to one here. So
|
||||||
|
@ -422,16 +427,16 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Returns the 20 most recent @replies (status updates prefixed with @username) for the authenticating user.
|
Returns the 20 most recent @replies (status updates prefixed with @username) for the authenticating user.
|
||||||
URL: http://server/api/statuses/replies.format
|
URL: http://server/api/statuses/replies.format
|
||||||
|
|
||||||
Formats: xml, json, rss, atom
|
Formats: xml, json, rss, atom
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|
||||||
* page. Optional. Retrieves the 20 next most recent replies. Ex: http://server/api/statuses/replies.xml?page=3
|
* page. Optional. Retrieves the 20 next most recent replies. Ex: http://server/api/statuses/replies.xml?page=3
|
||||||
* since. Optional. Narrows the returned results to just those replies created after the specified HTTP-formatted date. The
|
* 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:
|
same behavior is available by setting an If-Modified-Since header in your HTTP request. Ex:
|
||||||
http://server/api/statuses/replies.xml?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
http://server/api/statuses/replies.xml?since=Tue%2C+27+Mar+2007+22%3A55%3A48+GMT
|
||||||
|
@ -451,13 +456,13 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
$profile = $user->getProfile();
|
$profile = $user->getProfile();
|
||||||
|
|
||||||
$sitename = common_config('site', 'name');
|
$sitename = common_config('site', 'name');
|
||||||
$siteserver = common_config('site', 'server');
|
$siteserver = common_config('site', 'server');
|
||||||
|
|
||||||
$title = sprintf(_("%s / Updates replying to %s"), $sitename, $user->nickname);
|
$title = sprintf(_('%1$s / Updates replying to %2$s'), $sitename, $user->nickname);
|
||||||
$id = "tag:$siteserver:replies:".$user->id;
|
$id = "tag:$siteserver:replies:".$user->id;
|
||||||
$link = common_local_url('replies', array('nickname' => $user->nickname));
|
$link = common_local_url('replies', array('nickname' => $user->nickname));
|
||||||
$subtitle = "gar";
|
$subtitle = "gar";
|
||||||
$subtitle = sprintf(_("%s updates that reply to updates from %s / %s."), $sitename, $user->nickname, $profile->getBestName());
|
$subtitle = sprintf(_('%1$s updates that reply to updates from %2$s / %3$s.'), $sitename, $user->nickname, $profile->getBestName());
|
||||||
|
|
||||||
if (!$page) {
|
if (!$page) {
|
||||||
$page = 1;
|
$page = 1;
|
||||||
|
@ -480,7 +485,7 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
$cnt = $reply->find();
|
$cnt = $reply->find();
|
||||||
|
|
||||||
$notices = array();
|
$notices = array();
|
||||||
|
|
||||||
if ($cnt) {
|
if ($cnt) {
|
||||||
while ($reply->fetch()) {
|
while ($reply->fetch()) {
|
||||||
$notice = new Notice();
|
$notice = new Notice();
|
||||||
|
@ -494,13 +499,13 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
}
|
}
|
||||||
|
|
||||||
switch($apidata['content-type']) {
|
switch($apidata['content-type']) {
|
||||||
case 'xml':
|
case 'xml':
|
||||||
$this->show_xml_timeline($notices);
|
$this->show_xml_timeline($notices);
|
||||||
break;
|
break;
|
||||||
case 'rss':
|
case 'rss':
|
||||||
$this->show_rss_timeline($notices, $title, $id, $link, $subtitle);
|
$this->show_rss_timeline($notices, $title, $id, $link, $subtitle);
|
||||||
break;
|
break;
|
||||||
case 'atom':
|
case 'atom':
|
||||||
$this->show_atom_timeline($notices, $title, $id, $link, $subtitle);
|
$this->show_atom_timeline($notices, $title, $id, $link, $subtitle);
|
||||||
break;
|
break;
|
||||||
case 'json':
|
case 'json':
|
||||||
|
@ -516,43 +521,43 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Destroys the status specified by the required ID parameter. The authenticating user must be
|
Destroys the status specified by the required ID parameter. The authenticating user must be
|
||||||
the author of the specified status.
|
the author of the specified status.
|
||||||
|
|
||||||
URL: http://server/api/statuses/destroy/id.format
|
URL: http://server/api/statuses/destroy/id.format
|
||||||
|
|
||||||
Formats: xml, json
|
Formats: xml, json
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|
||||||
* id. Required. The ID of the status to destroy. Ex:
|
* id. Required. The ID of the status to destroy. Ex:
|
||||||
http://server/api/statuses/destroy/12345.json or
|
http://server/api/statuses/destroy/12345.json or
|
||||||
http://server/api/statuses/destroy/23456.xml
|
http://server/api/statuses/destroy/23456.xml
|
||||||
|
|
||||||
*/
|
*/
|
||||||
function destroy($args, $apidata) {
|
function destroy($args, $apidata) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
common_server_error("API method under construction.", $code=501);
|
common_server_error("API method under construction.", $code=501);
|
||||||
}
|
}
|
||||||
|
|
||||||
# User Methods
|
# User Methods
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Returns up to 100 of the authenticating user's friends who have most recently updated, each with current status inline.
|
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.
|
It's also possible to request another user's recent friends list via the id parameter below.
|
||||||
|
|
||||||
URL: http://server/api/statuses/friends.format
|
URL: http://server/api/statuses/friends.format
|
||||||
|
|
||||||
Formats: xml, json
|
Formats: xml, json
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|
||||||
* id. Optional. The ID or screen name of the user for whom to request a list of friends. Ex:
|
* id. Optional. The ID or screen name of the user for whom to request a list of friends. Ex:
|
||||||
http://server/api/statuses/friends/12345.json
|
http://server/api/statuses/friends/12345.json
|
||||||
or
|
or
|
||||||
http://server/api/statuses/friends/bob.xml
|
http://server/api/statuses/friends/bob.xml
|
||||||
* page. Optional. Retrieves the next 100 friends. Ex: http://server/api/statuses/friends.xml?page=2
|
* page. Optional. Retrieves the next 100 friends. Ex: http://server/api/statuses/friends.xml?page=2
|
||||||
* lite. Optional. Prevents the inline inclusion of current status. Must be set to a value of true. Ex:
|
* lite. Optional. Prevents the inline inclusion of current status. Must be set to a value of true. Ex:
|
||||||
|
@ -565,21 +570,21 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
return $this->subscriptions($apidata, 'subscribed', 'subscriber');
|
return $this->subscriptions($apidata, 'subscribed', 'subscriber');
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Returns the authenticating user's followers, each with current status inline. They are ordered by the
|
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).
|
order in which they joined Twitter (this is going to be changed).
|
||||||
|
|
||||||
URL: http://server/api/statuses/followers.format
|
URL: http://server/api/statuses/followers.format
|
||||||
Formats: xml, json
|
Formats: xml, json
|
||||||
|
|
||||||
Parameters:
|
Parameters:
|
||||||
|
|
||||||
* id. Optional. The ID or screen name of the user for whom to request a list of followers. Ex:
|
* id. Optional. The ID or screen name of the user for whom to request a list of followers. Ex:
|
||||||
http://server/api/statuses/followers/12345.json
|
http://server/api/statuses/followers/12345.json
|
||||||
or
|
or
|
||||||
http://server/api/statuses/followers/bob.xml
|
http://server/api/statuses/followers/bob.xml
|
||||||
* page. Optional. Retrieves the next 100 followers. Ex: http://server/api/statuses/followers.xml?page=2
|
* page. Optional. Retrieves the next 100 followers. Ex: http://server/api/statuses/followers.xml?page=2
|
||||||
* lite. Optional. Prevents the inline inclusion of current status. Must be set to a value of true.
|
* lite. Optional. Prevents the inline inclusion of current status. Must be set to a value of true.
|
||||||
Ex: http://server/api/statuses/followers.xml?lite=true
|
Ex: http://server/api/statuses/followers.xml?lite=true
|
||||||
*/
|
*/
|
||||||
|
@ -590,30 +595,30 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
}
|
}
|
||||||
|
|
||||||
function subscriptions($apidata, $other_attr, $user_attr) {
|
function subscriptions($apidata, $other_attr, $user_attr) {
|
||||||
|
|
||||||
$user = $this->get_subs_user($apidata);
|
$user = $this->get_subs_user($apidata);
|
||||||
|
|
||||||
# XXX: id
|
# XXX: id
|
||||||
# XXX: lite
|
# XXX: lite
|
||||||
|
|
||||||
$page = $this->trimmed('page');
|
$page = $this->trimmed('page');
|
||||||
|
|
||||||
if (!$page || !is_numeric($page)) {
|
if (!$page || !is_numeric($page)) {
|
||||||
$page = 1;
|
$page = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
$profile = $user->getProfile();
|
$profile = $user->getProfile();
|
||||||
|
|
||||||
if (!$profile) {
|
if (!$profile) {
|
||||||
common_server_error(_('User has no profile.'));
|
common_server_error(_('User has no profile.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$sub = new Subscription();
|
$sub = new Subscription();
|
||||||
$sub->$user_attr = $profile->id;
|
$sub->$user_attr = $profile->id;
|
||||||
$sub->orderBy('created DESC');
|
$sub->orderBy('created DESC');
|
||||||
$sub->limit(($page-1)*100, 100);
|
$sub->limit(($page-1)*100, 100);
|
||||||
|
|
||||||
$others = array();
|
$others = array();
|
||||||
|
|
||||||
if ($sub->find()) {
|
if ($sub->find()) {
|
||||||
|
@ -623,9 +628,9 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
} else {
|
} else {
|
||||||
// user has no followers
|
// user has no followers
|
||||||
}
|
}
|
||||||
|
|
||||||
$type = $apidata['content-type'];
|
$type = $apidata['content-type'];
|
||||||
|
|
||||||
$this->init_document($type);
|
$this->init_document($type);
|
||||||
$this->show_profiles($others, $type);
|
$this->show_profiles($others, $type);
|
||||||
$this->end_document($type);
|
$this->end_document($type);
|
||||||
|
@ -633,18 +638,18 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_subs_user($apidata) {
|
function get_subs_user($apidata) {
|
||||||
|
|
||||||
// function was called with an argument /statuses/user_timeline/api_arg.format
|
// function was called with an argument /statuses/user_timeline/api_arg.format
|
||||||
if (isset($apidata['api_arg'])) {
|
if (isset($apidata['api_arg'])) {
|
||||||
|
|
||||||
if (is_numeric($apidata['api_arg'])) {
|
if (is_numeric($apidata['api_arg'])) {
|
||||||
$user = User::staticGet($apidata['api_arg']);
|
$user = User::staticGet($apidata['api_arg']);
|
||||||
} else {
|
} else {
|
||||||
$nickname = common_canonical_nickname($apidata['api_arg']);
|
$nickname = common_canonical_nickname($apidata['api_arg']);
|
||||||
$user = User::staticGet('nickname', $nickname);
|
$user = User::staticGet('nickname', $nickname);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
// if no user was specified, then we'll use the authenticated user
|
// if no user was specified, then we'll use the authenticated user
|
||||||
$user = $apidata['user'];
|
$user = $apidata['user'];
|
||||||
}
|
}
|
||||||
|
@ -654,10 +659,10 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
// honestly! This is what Twitter does, I swear --Zach
|
// honestly! This is what Twitter does, I swear --Zach
|
||||||
$user = $apidata['user'];
|
$user = $apidata['user'];
|
||||||
}
|
}
|
||||||
|
|
||||||
return $user;
|
return $user;
|
||||||
}
|
}
|
||||||
|
|
||||||
function show_profiles($profiles, $type) {
|
function show_profiles($profiles, $type) {
|
||||||
switch ($type) {
|
switch ($type) {
|
||||||
case 'xml':
|
case 'xml':
|
||||||
|
@ -679,10 +684,10 @@ class TwitapistatusesAction extends TwitterapiAction {
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Returns a list of the users currently featured on the site with their current statuses inline.
|
Returns a list of the users currently featured on the site with their current statuses inline.
|
||||||
URL: http://server/api/statuses/featured.format
|
URL: http://server/api/statuses/featured.format
|
||||||
|
|
||||||
Formats: xml, json
|
Formats: xml, json
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1455,4 +1455,4 @@ function common_canonical_sms($sms) {
|
||||||
# strip non-digits
|
# strip non-digits
|
||||||
preg_replace('/\D/', '', $sms);
|
preg_replace('/\D/', '', $sms);
|
||||||
return $sms;
|
return $sms;
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user