2008-07-14 17:09:49 +09: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 12:18:12 +09:00
|
|
|
require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|
|
|
|
2008-07-15 13:31:21 +09:00
|
|
|
class Twitapidirect_messagesAction extends TwitterapiAction {
|
2008-07-14 17:09:49 +09:00
|
|
|
|
2008-07-23 06:20:56 +09:00
|
|
|
|
|
|
|
function is_readonly() {
|
2008-09-25 08:48:57 +09:00
|
|
|
|
|
|
|
static $write_methods = array( 'direct_messages',
|
2008-07-23 06:20:56 +09:00
|
|
|
'sent');
|
2008-09-25 08:48:57 +09:00
|
|
|
|
|
|
|
$cmdtext = explode('.', $this->arg('method'));
|
|
|
|
|
|
|
|
if (in_array($cmdtext[0], $write_methods)) {
|
2008-07-23 06:20:56 +09:00
|
|
|
return false;
|
|
|
|
}
|
2008-09-25 08:48:57 +09:00
|
|
|
|
2008-07-23 06:20:56 +09:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2008-07-15 04:03:00 +09:00
|
|
|
function direct_messages($args, $apidata) {
|
2008-07-14 17:09:49 +09:00
|
|
|
parent::handle($args);
|
2008-09-25 08:48:57 +09:00
|
|
|
|
|
|
|
$user = $apidata['user'];
|
|
|
|
|
|
|
|
$count = $this->arg('count');
|
|
|
|
$since = $this->arg('since');
|
|
|
|
$since_id = $this->arg('since_id');
|
|
|
|
$page = $this->arg('page');
|
|
|
|
|
|
|
|
if (!$page) {
|
|
|
|
$page = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$count) {
|
|
|
|
$count = 20;
|
|
|
|
}
|
|
|
|
|
|
|
|
$message = new Message();
|
|
|
|
$message->to_profile = $user->id;
|
|
|
|
$message->orderBy('created DESC, id DESC');
|
|
|
|
$message->limit((($page-1)*20), $count);
|
|
|
|
|
|
|
|
$message->find();
|
|
|
|
|
|
|
|
switch($apidata['content-type']) {
|
|
|
|
case 'xml':
|
|
|
|
$this->show_xml_direct_messages($message);
|
|
|
|
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_direct_messages($message);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
common_user_error(_('API method not found!'), $code = 404);
|
|
|
|
}
|
|
|
|
|
2008-07-14 17:09:49 +09:00
|
|
|
exit();
|
|
|
|
}
|
2008-09-25 08:48:57 +09:00
|
|
|
|
2008-07-14 17:09:49 +09:00
|
|
|
function sent($args, $apidata) {
|
|
|
|
parent::handle($args);
|
2008-08-19 09:29:03 +09:00
|
|
|
common_server_error(_('API method under construction.'), $code=501);
|
2008-07-14 17:09:49 +09:00
|
|
|
exit();
|
|
|
|
}
|
2008-09-25 08:48:57 +09:00
|
|
|
|
|
|
|
# had to change this from "new" to "create" to avoid PHP reserved word
|
2008-07-15 04:03:00 +09:00
|
|
|
function create($args, $apidata) {
|
2008-07-14 17:09:49 +09:00
|
|
|
parent::handle($args);
|
2008-08-19 09:29:03 +09:00
|
|
|
common_server_error(_('API method under construction.'), $code=501);
|
2008-07-14 17:09:49 +09:00
|
|
|
exit();
|
|
|
|
}
|
2008-09-25 08:48:57 +09:00
|
|
|
|
2008-07-14 17:09:49 +09:00
|
|
|
function destroy($args, $apidata) {
|
|
|
|
parent::handle($args);
|
2008-08-19 09:29:03 +09:00
|
|
|
common_server_error(_('API method under construction.'), $code=501);
|
2008-07-14 17:09:49 +09:00
|
|
|
exit();
|
|
|
|
}
|
2008-09-25 08:48:57 +09:00
|
|
|
|
|
|
|
function show_xml_direct_messages($message) {
|
|
|
|
|
|
|
|
$this->init_document('xml');
|
|
|
|
common_element_start('direct-messages', array('type' => 'array'));
|
|
|
|
|
|
|
|
if (is_array($messages)) {
|
|
|
|
foreach ($message as $m) {
|
|
|
|
$twitter_dm = $this->twitter_dm_array($m);
|
|
|
|
$this->show_twitter_xml_dm($twitter_dm);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while ($message->fetch()) {
|
|
|
|
$twitter_dm = $this->twitter_dm_array($message);
|
|
|
|
$this->show_twitter_xml_dm($twitter_dm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
common_element_end('direct-messages');
|
|
|
|
$this->end_document('xml');
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_json_direct_messages($message) {
|
|
|
|
|
|
|
|
$this->init_document('json');
|
|
|
|
|
|
|
|
$dmsgs = array();
|
|
|
|
|
|
|
|
if (is_array($message)) {
|
|
|
|
foreach ($message as $m) {
|
|
|
|
$twitter_dm = $this->twitter_dm_array($m);
|
|
|
|
array_push($dmsgs, $twitter_dm);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
while ($message->fetch()) {
|
|
|
|
$twitter_dm = $this->twitter_dm_array($message);
|
|
|
|
array_push($dmsgs, $twitter_dm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->show_twitter_json_dmsgs($dmsgs);
|
|
|
|
|
|
|
|
$this->end_document('json');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2008-07-14 17:09:49 +09:00
|
|
|
}
|