summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Needham <needham.thomas@gmail.com>2012-12-31 16:31:22 +0000
committerTom Needham <needham.thomas@gmail.com>2012-12-31 16:31:22 +0000
commit3d23e983908d02fe72f305aeaabbdca05d167e8f (patch)
treeb18b274f51cef3a25478a9114b00401867f2f935
parent8a5f583cac8952e978e560be46b25d664ba6447a (diff)
downloadnextcloud-server-3d23e983908d02fe72f305aeaabbdca05d167e8f.tar.gz
nextcloud-server-3d23e983908d02fe72f305aeaabbdca05d167e8f.zip
Remove the WIP external sharing api
-rw-r--r--apps/files_sharing/appinfo/app.php1
-rw-r--r--apps/files_sharing/appinfo/routes.php23
-rw-r--r--apps/files_sharing/lib/api.php47
-rw-r--r--apps/files_sharing/tests/api.php13
4 files changed, 0 insertions, 84 deletions
diff --git a/apps/files_sharing/appinfo/app.php b/apps/files_sharing/appinfo/app.php
index 1402a146454..0104d0d017f 100644
--- a/apps/files_sharing/appinfo/app.php
+++ b/apps/files_sharing/appinfo/app.php
@@ -3,7 +3,6 @@
OC::$CLASSPATH['OC_Share_Backend_File'] = "apps/files_sharing/lib/share/file.php";
OC::$CLASSPATH['OC_Share_Backend_Folder'] = 'apps/files_sharing/lib/share/folder.php';
OC::$CLASSPATH['OC_Filestorage_Shared'] = "apps/files_sharing/lib/sharedstorage.php";
-OC::$CLASSPATH['OC_Sharing_API'] = "apps/files_sharing/lib/api.php";
OCP\Util::connectHook('OC_Filesystem', 'setup', 'OC_Filestorage_Shared', 'setup');
OCP\Share::registerBackend('file', 'OC_Share_Backend_File');
OCP\Share::registerBackend('folder', 'OC_Share_Backend_Folder', 'file');
diff --git a/apps/files_sharing/appinfo/routes.php b/apps/files_sharing/appinfo/routes.php
deleted file mode 100644
index 180dde635ad..00000000000
--- a/apps/files_sharing/appinfo/routes.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-/**
-* ownCloud
-*
-* @author Tom Needham
-* @copyright 2012 Tom Needham tom@owncloud.com
-*
-* This library is free software; you can redistribute it and/or
-* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-* License as published by the Free Software Foundation; either
-* version 3 of the License, or any later version.
-*
-* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
-*
-*/
-OCP\API::register('post', '/cloud/files/share/{type}/{path}', array('OC_Sharing_API', 'shareFile'), 'files_sharing', OC_API::USER_AUTH, array(), array('type' => 'user|group|link|email|contact|remote', 'path' => '.*'));
-?> \ No newline at end of file
diff --git a/apps/files_sharing/lib/api.php b/apps/files_sharing/lib/api.php
deleted file mode 100644
index 151e6d6cfd4..00000000000
--- a/apps/files_sharing/lib/api.php
+++ /dev/null
@@ -1,47 +0,0 @@
-<?php
-
-class OC_Sharing_API {
-
- static public function shareFile($parameters) {
- $path = '/'.$parameters['path'];
- $fileid = OC_FileCache::getId($path);
- $typemap = array(
- 'user' => OCP\Share::SHARE_TYPE_USER,
- 'group' => OCP\Share::SHARE_TYPE_GROUP,
- 'link' => OCP\Share::SHARE_TYPE_LINK,
- 'email' => OCP\Share::SHARE_TYPE_EMAIL,
- 'contact' => OCP\Share::SHARE_TYPE_CONTACT,
- 'remote' => OCP\Share::SHARE_TYPE_USER,
- );
- $type = $typemap[$parameters['type']];
- $shareWith = isset($_POST['shareWith']) ? $_POST['shareWith'] : null;
- $permissionstring = isset($_POST['permissions']) ? $_POST['permissions'] : '';
- $permissionmap = array(
- 'C' => OCP\Share::PERMISSION_CREATE,
- 'R' => OCP\Share::PERMISSION_READ,
- 'U' => OCP\Share::PERMISSION_UPDATE,
- 'D' => OCP\Share::PERMISSION_DELETE,
- 'S' => OCP\Share::PERMISSION_SHARE,
- );
- $permissions = 0;
- foreach($permissionmap as $letter => $permission) {
- if(strpos($permissionstring, $letter) !== false) {
- $permissions += $permission;
- }
- }
-
- try {
- OCP\Share::shareItem('file', $fileid, $type, $shareWith, $permissions);
- } catch (Exception $e){
- error_log($e->getMessage());
- }
- switch($type){
- case OCP\Share::SHARE_TYPE_LINK:
- $link = OC_Helper::linkToPublic('files') . '&file=/' . OC_User::getUser() . '/files' . $path;
- return array('link' => array('url' => $link));
- break;
- }
-
- }
-
-} \ No newline at end of file
diff --git a/apps/files_sharing/tests/api.php b/apps/files_sharing/tests/api.php
deleted file mode 100644
index 65d4b87089c..00000000000
--- a/apps/files_sharing/tests/api.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<?php
-/**
- * Copyright (c) 2012 Tom Needhama <tom@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-class Test_Share_API extends UnitTestCase {
-
- function test
-
-} \ No newline at end of file