Stubs for all Twitter-API methods

darcs-hash:20080714080949-ca946-7372d114c1db9f48aa79f7bd8a5f67042da37ac4.gz
This commit is contained in:
zach 2008-07-14 04:09:49 -04:00
parent cc55a45f4b
commit fdc7bfcc51
8 changed files with 327 additions and 0 deletions

44
actions/apiaccount.php Normal file
View File

@ -0,0 +1,44 @@
<?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); }
# This naming convention looks real sick
class ApifavoritesAction extends Action {
function index($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function create($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function destroy($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
}

37
actions/apiblocks.php Normal file
View File

@ -0,0 +1,37 @@
<?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); }
# This naming convention looks real sick
class ApiblocksAction extends Action {
function create($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function destroy($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
}

View File

@ -0,0 +1,51 @@
<?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); }
# This naming convention looks real sick
class Apidirect_messagesAction extends Action {
function index($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function sent($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function new($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function destroy($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
}

0
actions/apifavorites.php Normal file
View File

View File

@ -0,0 +1,44 @@
<?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); }
# This naming convention looks real sick
class ApifriendshipsAction extends Action {
function create($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function destroy($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function exists($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
}

36
actions/apihelp.php Normal file
View File

@ -0,0 +1,36 @@
<?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); }
# This naming convention looks real sick
class ApihelpAction extends Action {
function test($args, $apidata) {
print "gargargar";
exit();
}
function downtime_schedule($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
}

View File

@ -0,0 +1,38 @@
<?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); }
# This naming convention looks real sick
class ApinotificationsAction extends Action {
function follow($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
function leave($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
exit();
}
}

77
actions/apistatuses.php Normal file
View File

@ -0,0 +1,77 @@
<?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); }
class ApistatusesAction extends Action {
function public_timeline($args) {
parent::handle($args);
print "Public Timeline!\n";
exit();
}
function show($args, $apidata) {
parent::handle($args);
common_debug("statuses/show");
print_r($args);
print_r($apidata);
exit();
}
function update($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
}
function replies($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
}
function destroy($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
}
# User Methods
function friends($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
}
function followers($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
}
function featured($args, $apidata) {
parent::handle($args);
common_server_error("API method under construction.", $code=501);
}
}