From fdc7bfcc51a1eb599773145549fe79e521b56821 Mon Sep 17 00:00:00 2001
From: zach <zach@copley.name>
Date: Mon, 14 Jul 2008 04:09:49 -0400
Subject: [PATCH] Stubs for all Twitter-API methods

darcs-hash:20080714080949-ca946-7372d114c1db9f48aa79f7bd8a5f67042da37ac4.gz
---
 actions/apiaccount.php         | 44 +++++++++++++++++++
 actions/apiblocks.php          | 37 ++++++++++++++++
 actions/apidirect_messages.php | 51 ++++++++++++++++++++++
 actions/apifavorites.php       |  0
 actions/apifriendships.php     | 44 +++++++++++++++++++
 actions/apihelp.php            | 36 ++++++++++++++++
 actions/apinotifications.php   | 38 +++++++++++++++++
 actions/apistatuses.php        | 77 ++++++++++++++++++++++++++++++++++
 8 files changed, 327 insertions(+)
 create mode 100644 actions/apiaccount.php
 create mode 100644 actions/apiblocks.php
 create mode 100644 actions/apidirect_messages.php
 create mode 100644 actions/apifavorites.php
 create mode 100644 actions/apifriendships.php
 create mode 100644 actions/apihelp.php
 create mode 100644 actions/apinotifications.php
 create mode 100644 actions/apistatuses.php

diff --git a/actions/apiaccount.php b/actions/apiaccount.php
new file mode 100644
index 0000000000..ecbb88570d
--- /dev/null
+++ b/actions/apiaccount.php
@@ -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();
+	}
+	
+}
\ No newline at end of file
diff --git a/actions/apiblocks.php b/actions/apiblocks.php
new file mode 100644
index 0000000000..be96e87e1b
--- /dev/null
+++ b/actions/apiblocks.php
@@ -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();
+	}
+	
+}
\ No newline at end of file
diff --git a/actions/apidirect_messages.php b/actions/apidirect_messages.php
new file mode 100644
index 0000000000..125aad1284
--- /dev/null
+++ b/actions/apidirect_messages.php
@@ -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();
+	}
+	
+	
+}
\ No newline at end of file
diff --git a/actions/apifavorites.php b/actions/apifavorites.php
new file mode 100644
index 0000000000..e69de29bb2
diff --git a/actions/apifriendships.php b/actions/apifriendships.php
new file mode 100644
index 0000000000..feed86ef6c
--- /dev/null
+++ b/actions/apifriendships.php
@@ -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();
+	}
+	
+}
\ No newline at end of file
diff --git a/actions/apihelp.php b/actions/apihelp.php
new file mode 100644
index 0000000000..bcbde8401b
--- /dev/null
+++ b/actions/apihelp.php
@@ -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();
+	}
+	
+}
\ No newline at end of file
diff --git a/actions/apinotifications.php b/actions/apinotifications.php
new file mode 100644
index 0000000000..9154cb3b92
--- /dev/null
+++ b/actions/apinotifications.php
@@ -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();
+	}
+	
+}
\ No newline at end of file
diff --git a/actions/apistatuses.php b/actions/apistatuses.php
new file mode 100644
index 0000000000..728a43180b
--- /dev/null
+++ b/actions/apistatuses.php
@@ -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);
+	}
+	
+}
+
+
-- 
2.39.5