2008-05-06 16:17:29 +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
|
2008-12-23 19:19:07 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2008-05-06 16:17:29 +01:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
2008-12-23 19:19:07 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-05-06 16:17:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('LACONICA')) { exit(1); }
|
|
|
|
|
|
|
|
require_once(INSTALLDIR.'/lib/twitterapi.php');
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
class TwitapiusersAction extends TwitterapiAction
|
|
|
|
{
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
function show($args, $apidata)
|
|
|
|
{
|
2008-12-23 19:19:07 +00:00
|
|
|
parent::handle($args);
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!in_array($apidata['content-type'], array('xml', 'json'))) {
|
|
|
|
common_user_error(_('API method not found!'), $code = 404);
|
|
|
|
return;
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$user = null;
|
|
|
|
$email = $this->arg('email');
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if ($email) {
|
|
|
|
$user = User::staticGet('email', $email);
|
|
|
|
} elseif (isset($apidata['api_arg'])) {
|
|
|
|
$user = $this->get_user($apidata['api_arg']);
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
if (!$user) {
|
|
|
|
// XXX: Twitter returns a random(?) user instead of throwing and err! -- Zach
|
|
|
|
$this->client_error(_('Not found.'), 404, $apidata['content-type']);
|
|
|
|
return;
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
2008-12-23 19:19:07 +00:00
|
|
|
$this->show_extended_profile($user, $apidata);
|
|
|
|
}
|
2008-05-06 16:17:29 +01:00
|
|
|
|
|
|
|
}
|