Merge pull request #8399 from owncloud/server-server-sharing
Add server<->server sharingremotes/origin/ldap_group_count
commit
8d1cf79152
@ -0,0 +1,51 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
OCP\JSON::callCheck(); |
||||
OCP\JSON::checkLoggedIn(); |
||||
OCP\JSON::checkAppEnabled('files_sharing'); |
||||
|
||||
$l = OC_L10N::get('files_sharing'); |
||||
|
||||
// check if server admin allows to mount public links from other servers |
||||
// check if files_external is enabled |
||||
// FIXME file_external check no longer needed if we use the webdav implementation from core |
||||
if (OCA\Files_Sharing\Helper::isIncomingServer2serverShareEnabled() === false || |
||||
\OC_App::isEnabled('files_external') === false) { |
||||
\OCP\JSON::error(array('data' => array('message' => $l->t('Server to server sharing is not enabled on this server')))); |
||||
exit(); |
||||
} |
||||
|
||||
$token = $_POST['token']; |
||||
$remote = $_POST['remote']; |
||||
$owner = $_POST['owner']; |
||||
$name = $_POST['name']; |
||||
$password = $_POST['password']; |
||||
|
||||
$externalManager = new \OCA\Files_Sharing\External\Manager( |
||||
\OC::$server->getDatabaseConnection(), |
||||
\OC\Files\Filesystem::getMountManager(), |
||||
\OC\Files\Filesystem::getLoader(), |
||||
\OC::$server->getUserSession() |
||||
); |
||||
|
||||
$name = OCP\Files::buildNotExistingFileName('/', $name); |
||||
|
||||
$mount = $externalManager->addShare($remote, $token, $password, $name, $owner); |
||||
/** |
||||
* @var \OCA\Files_Sharing\External\Storage $storage |
||||
*/ |
||||
$storage = $mount->getStorage(); |
||||
$result = $storage->file_exists(''); |
||||
if($result){ |
||||
$storage->getScanner()->scanAll(); |
||||
\OCP\JSON::success(); |
||||
} else { |
||||
$externalManager->removeShare($mount->getMountPoint()); |
||||
\OCP\JSON::error(array('data' => array('message' => $l->t("Couldn't add remote share")))); |
||||
} |
@ -0,0 +1,69 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
OCP\JSON::checkAppEnabled('files_sharing'); |
||||
|
||||
if (!isset($_GET['t'])) { |
||||
\OC_Response::setStatus(400); //400 Bad Request |
||||
exit; |
||||
} |
||||
|
||||
$token = $_GET['t']; |
||||
|
||||
$password = null; |
||||
if (isset($_POST['password'])) { |
||||
$password = $_POST['password']; |
||||
} |
||||
|
||||
$relativePath = null; |
||||
if (isset($_GET['dir'])) { |
||||
$relativePath = $_GET['dir']; |
||||
} |
||||
|
||||
$data = \OCA\Files_Sharing\Helper::setupFromToken($token, $relativePath, $password); |
||||
|
||||
$linkItem = $data['linkItem']; |
||||
// Load the files |
||||
$path = $data['realPath']; |
||||
|
||||
$isWritable = $linkItem['permissions'] & (\OCP\PERMISSION_UPDATE | \OCP\PERMISSION_CREATE); |
||||
if (!$isWritable) { |
||||
\OC\Files\Filesystem::addStorageWrapper('readonly', function ($mountPoint, $storage) { |
||||
return new \OCA\Files_Sharing\ReadOnlyWrapper(array('storage' => $storage)); |
||||
}); |
||||
} |
||||
|
||||
$rootInfo = \OC\Files\Filesystem::getFileInfo($path); |
||||
$rootView = new \OC\Files\View(''); |
||||
|
||||
/** |
||||
* @param \OCP\Files\FileInfo $dir |
||||
* @param \OC\Files\View $view |
||||
* @return array |
||||
*/ |
||||
function getChildInfo($dir, $view) { |
||||
$children = $view->getDirectoryContent($dir->getPath()); |
||||
$result = array(); |
||||
foreach ($children as $child) { |
||||
$formated = \OCA\Files\Helper::formatFileInfo($child); |
||||
if ($child->getType() === 'dir') { |
||||
$formated['children'] = getChildInfo($child, $view); |
||||
} |
||||
$formated['mtime'] = $formated['mtime'] / 1000; |
||||
$result[] = $formated; |
||||
} |
||||
return $result; |
||||
} |
||||
|
||||
$result = \OCA\Files\Helper::formatFileInfo($rootInfo); |
||||
$result['mtime'] = $result['mtime'] / 1000; |
||||
if ($rootInfo->getType() === 'dir') { |
||||
$result['children'] = getChildInfo($rootInfo, $rootView); |
||||
} |
||||
|
||||
OCP\JSON::success(array('data' => $result)); |
@ -0,0 +1,29 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
OCP\JSON::checkAppEnabled('files_sharing'); |
||||
|
||||
$remote = $_GET['remote']; |
||||
|
||||
function testUrl($url) { |
||||
try { |
||||
$result = file_get_contents($url); |
||||
$data = json_decode($result); |
||||
return is_object($data) and !empty($data->version); |
||||
} catch (Exception $e) { |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
if (testUrl('https://' . $remote . '/status.php')) { |
||||
echo 'https'; |
||||
} elseif (testUrl('http://' . $remote . '/status.php')) { |
||||
echo 'http'; |
||||
} else { |
||||
echo 'false'; |
||||
} |
@ -0,0 +1,95 @@ |
||||
<?xml version="1.0" encoding="ISO-8859-1" ?> |
||||
<database> |
||||
<name>*dbname*</name> |
||||
<create>true</create> |
||||
<overwrite>false</overwrite> |
||||
<charset>utf8</charset> |
||||
<table> |
||||
<name>*dbprefix*share_external</name> |
||||
<declaration> |
||||
<field> |
||||
<name>id</name> |
||||
<type>integer</type> |
||||
<default>0</default> |
||||
<notnull>true</notnull> |
||||
<autoincrement>1</autoincrement> |
||||
<length>4</length> |
||||
</field> |
||||
<field> |
||||
<name>remote</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>512</length> |
||||
<comments>Url of the remove owncloud instance</comments> |
||||
</field> |
||||
<field> |
||||
<name>share_token</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>64</length> |
||||
<comments>Public share token</comments> |
||||
</field> |
||||
<field> |
||||
<name>password</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>64</length> |
||||
<comments>Optional password for the public share</comments> |
||||
</field> |
||||
<field> |
||||
<name>name</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>64</length> |
||||
<comments>Original name on the remote server</comments> |
||||
</field> |
||||
<field> |
||||
<name>owner</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>64</length> |
||||
<comments>User that owns the public share on the remote server</comments> |
||||
</field> |
||||
<field> |
||||
<name>user</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>64</length> |
||||
<comments>Local user which added the external share</comments> |
||||
</field> |
||||
<field> |
||||
<name>mountpoint</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>4000</length> |
||||
<comments>Full path where the share is mounted</comments> |
||||
</field> |
||||
<field> |
||||
<name>mountpoint_hash</name> |
||||
<type>text</type> |
||||
<notnull>true</notnull> |
||||
<length>32</length> |
||||
<comments>md5 hash of the mountpoint</comments> |
||||
</field> |
||||
<index> |
||||
<name>sh_external_user</name> |
||||
<field> |
||||
<name>user</name> |
||||
<sorting>ascending</sorting> |
||||
</field> |
||||
</index> |
||||
<index> |
||||
<name>sh_external_mp</name> |
||||
<unique>true</unique> |
||||
<field> |
||||
<name>user</name> |
||||
<sorting>ascending</sorting> |
||||
</field> |
||||
<field> |
||||
<name>mountpoint_hash</name> |
||||
<sorting>ascending</sorting> |
||||
</field> |
||||
</index> |
||||
</declaration> |
||||
</table> |
||||
</database> |
@ -1 +1 @@ |
||||
0.5 |
||||
0.5.2 |
||||
|
@ -0,0 +1,71 @@ |
||||
/* |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* |
||||
* This file is licensed under the Affero General Public License version 3 |
||||
* or later. |
||||
* |
||||
* See the COPYING-README file. |
||||
* |
||||
*/ |
||||
(function () { |
||||
var getParameterByName = function (query, name) { |
||||
name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); |
||||
var regex = new RegExp("[\\#&]" + name + "=([^&#]*)"), |
||||
results = regex.exec(query); |
||||
return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); |
||||
}; |
||||
|
||||
var addExternalShare = function (remote, token, owner, name, password) { |
||||
return $.post(OC.generateUrl('apps/files_sharing/external'), { |
||||
remote: remote, |
||||
token: token, |
||||
owner: owner, |
||||
name: name, |
||||
password: password |
||||
}); |
||||
}; |
||||
|
||||
var showAddExternalDialog = function (remote, token, owner, name, passwordProtected) { |
||||
var remoteClean = (remote.substr(0, 8) === 'https://') ? remote.substr(8) : remote.substr(7); |
||||
var callback = function (add, password) { |
||||
password = password || ''; |
||||
if (add) { |
||||
addExternalShare(remote, token, owner, name, password).then(function (result) { |
||||
if (result.status === 'error') { |
||||
OC.Notification.show(result.data.message); |
||||
} else { |
||||
FileList.reload(); |
||||
} |
||||
}); |
||||
} |
||||
}; |
||||
if (!passwordProtected) { |
||||
OC.dialogs.confirm(t('files_sharing', 'Add {name} from {owner}@{remote}', {name: name, owner: owner, remote: remoteClean}) |
||||
, 'Add Share', callback, true); |
||||
} else { |
||||
OC.dialogs.prompt(t('files_sharing', 'Add {name} from {owner}@{remote}', {name: name, owner: owner, remote: remoteClean}) |
||||
, 'Add Share', callback, true, 'Password', true); |
||||
} |
||||
}; |
||||
|
||||
OCA.Sharing.showAddExternalDialog = function (hash) { |
||||
var remote = getParameterByName(hash, 'remote'); |
||||
var owner = getParameterByName(hash, 'owner'); |
||||
var name = getParameterByName(hash, 'name'); |
||||
var token = getParameterByName(hash, 'token'); |
||||
var passwordProtected = parseInt(getParameterByName(hash, 'protected'), 10); |
||||
|
||||
if (remote && token && owner && name) { |
||||
showAddExternalDialog(remote, token, owner, name, passwordProtected); |
||||
} |
||||
}; |
||||
})(); |
||||
|
||||
$(document).ready(function () { |
||||
// FIXME: HACK: do not init when running unit tests, need a better way
|
||||
if (!window.TESTING && OCA.Files) {// only run in the files app
|
||||
var hash = location.hash; |
||||
location.hash = ''; |
||||
OCA.Sharing.showAddExternalDialog(hash); |
||||
} |
||||
}); |
@ -0,0 +1,11 @@ |
||||
$(document).ready(function() { |
||||
|
||||
$('#fileSharingSettings input').change(function() { |
||||
var value = 'no'; |
||||
if (this.checked) { |
||||
value = 'yes'; |
||||
} |
||||
OC.AppConfig.setValue('files_sharing', $(this).attr('name'), value); |
||||
}); |
||||
|
||||
}); |
@ -0,0 +1,47 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files_Sharing\External; |
||||
|
||||
class Cache extends \OC\Files\Cache\Cache { |
||||
private $remote; |
||||
private $remoteUser; |
||||
private $storage; |
||||
|
||||
/** |
||||
* @param \OCA\Files_Sharing\External\Storage $storage |
||||
* @param string $remote |
||||
* @param string $remoteUser |
||||
*/ |
||||
public function __construct($storage, $remote, $remoteUser) { |
||||
$this->storage = $storage; |
||||
list(, $remote) = explode('://', $remote, 2); |
||||
$this->remote = $remote; |
||||
$this->remoteUser = $remoteUser; |
||||
parent::__construct($storage); |
||||
} |
||||
|
||||
public function get($file) { |
||||
$result = parent::get($file); |
||||
$result['displayname_owner'] = $this->remoteUser . '@' . $this->remote; |
||||
if (!$file || $file === '') { |
||||
$result['is_share_mount_point'] = true; |
||||
$mountPoint = rtrim($this->storage->getMountPoint()); |
||||
$result['name'] = basename($mountPoint); |
||||
} |
||||
return $result; |
||||
} |
||||
|
||||
public function getFolderContentsById($id) { |
||||
$results = parent::getFolderContentsById($id); |
||||
foreach ($results as &$file) { |
||||
$file['displayname_owner'] = $this->remoteUser . '@' . $this->remote; |
||||
} |
||||
return $results; |
||||
} |
||||
} |
@ -0,0 +1,140 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files_Sharing\External; |
||||
|
||||
use OC\Files\Filesystem; |
||||
|
||||
class Manager { |
||||
const STORAGE = '\OCA\Files_Sharing\External\Storage'; |
||||
|
||||
/** |
||||
* @var \OCP\IDBConnection |
||||
*/ |
||||
private $connection; |
||||
|
||||
/** |
||||
* @var \OC\Files\Mount\Manager |
||||
*/ |
||||
private $mountManager; |
||||
|
||||
/** |
||||
* @var \OC\Files\Storage\Loader |
||||
*/ |
||||
private $storageLoader; |
||||
|
||||
/** |
||||
* @var \OC\User\Session |
||||
*/ |
||||
private $userSession; |
||||
|
||||
/** |
||||
* @param \OCP\IDBConnection $connection |
||||
* @param \OC\Files\Mount\Manager $mountManager |
||||
* @param \OC\User\Session $userSession |
||||
* @param \OC\Files\Storage\Loader $storageLoader |
||||
*/ |
||||
public function __construct(\OCP\IDBConnection $connection, \OC\Files\Mount\Manager $mountManager, |
||||
\OC\Files\Storage\Loader $storageLoader, \OC\User\Session $userSession) { |
||||
$this->connection = $connection; |
||||
$this->mountManager = $mountManager; |
||||
$this->userSession = $userSession; |
||||
$this->storageLoader = $storageLoader; |
||||
} |
||||
|
||||
public function addShare($remote, $token, $password, $name, $owner) { |
||||
$user = $this->userSession->getUser(); |
||||
if ($user) { |
||||
$query = $this->connection->prepare('INSERT INTO *PREFIX*share_external(`remote`, `share_token`, `password`, |
||||
`name`, `owner`, `user`, `mountpoint`, `mountpoint_hash`) VALUES(?, ?, ?, ?, ?, ?, ?, ?)'); |
||||
$mountPoint = Filesystem::normalizePath('/' . $name); |
||||
$hash = md5($mountPoint); |
||||
$query->execute(array($remote, $token, $password, $name, $owner, $user->getUID(), $mountPoint, $hash)); |
||||
|
||||
$options = array( |
||||
'remote' => $remote, |
||||
'token' => $token, |
||||
'password' => $password, |
||||
'mountpoint' => $mountPoint, |
||||
'owner' => $owner |
||||
); |
||||
return $this->mountShare($options); |
||||
} |
||||
} |
||||
|
||||
public function setup() { |
||||
// don't setup server-to-server shares if the file_external app is disabled |
||||
// FIXME no longer needed if we use the webdav implementation from core |
||||
if (\OC_App::isEnabled('files_external') === false) { |
||||
return false; |
||||
} |
||||
|
||||
$user = $this->userSession->getUser(); |
||||
if ($user) { |
||||
$query = $this->connection->prepare('SELECT `remote`, `share_token`, `password`, `mountpoint`, `owner` |
||||
FROM *PREFIX*share_external WHERE `user` = ?'); |
||||
$query->execute(array($user->getUID())); |
||||
|
||||
while ($row = $query->fetch()) { |
||||
$row['manager'] = $this; |
||||
$row['token'] = $row['share_token']; |
||||
$this->mountShare($row); |
||||
} |
||||
} |
||||
} |
||||
|
||||
protected function stripPath($path) { |
||||
$prefix = '/' . $this->userSession->getUser()->getUID() . '/files'; |
||||
return rtrim(substr($path, strlen($prefix)), '/'); |
||||
} |
||||
|
||||
/** |
||||
* @param array $data |
||||
* @return Mount |
||||
*/ |
||||
protected function mountShare($data) { |
||||
$mountPoint = '/' . $this->userSession->getUser()->getUID() . '/files' . $data['mountpoint']; |
||||
$mount = new Mount(self::STORAGE, $mountPoint, $data, $this, $this->storageLoader); |
||||
$this->mountManager->addMount($mount); |
||||
return $mount; |
||||
} |
||||
|
||||
/** |
||||
* @return \OC\Files\Mount\Manager |
||||
*/ |
||||
public function getMountManager() { |
||||
return $this->mountManager; |
||||
} |
||||
|
||||
/** |
||||
* @param string $source |
||||
* @param string $target |
||||
* @return bool |
||||
*/ |
||||
public function setMountPoint($source, $target) { |
||||
$user = $this->userSession->getUser(); |
||||
$source = $this->stripPath($source); |
||||
$target = $this->stripPath($target); |
||||
$sourceHash = md5($source); |
||||
$targetHash = md5($target); |
||||
|
||||
$query = $this->connection->prepare('UPDATE *PREFIX*share_external SET |
||||
`mountpoint` = ?, `mountpoint_hash` = ? WHERE `mountpoint_hash` = ? AND `user` = ?'); |
||||
$result = (bool)$query->execute(array($target, $targetHash, $sourceHash, $user->getUID())); |
||||
|
||||
return $result; |
||||
} |
||||
|
||||
public function removeShare($mountPoint) { |
||||
$user = $this->userSession->getUser(); |
||||
$mountPoint = $this->stripPath($mountPoint); |
||||
$hash = md5($mountPoint); |
||||
$query = $this->connection->prepare('DELETE FROM *PREFIX*share_external WHERE `mountpoint_hash` = ? AND `user` = ?'); |
||||
return (bool)$query->execute(array($hash, $user->getUID())); |
||||
} |
||||
} |
@ -0,0 +1,53 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files_Sharing\External; |
||||
|
||||
use OC\Files\Mount\MoveableMount; |
||||
|
||||
class Mount extends \OC\Files\Mount\Mount implements MoveableMount { |
||||
|
||||
/** |
||||
* @var \OCA\Files_Sharing\External\Manager |
||||
*/ |
||||
protected $manager; |
||||
|
||||
/** |
||||
* @param string|\OC\Files\Storage\Storage $storage |
||||
* @param string $mountpoint |
||||
* @param array $options |
||||
* @param \OCA\Files_Sharing\External\Manager $manager |
||||
* @param \OC\Files\Storage\Loader $loader |
||||
*/ |
||||
public function __construct($storage, $mountpoint, $options, $manager, $loader = null) { |
||||
parent::__construct($storage, $mountpoint, $options, $loader); |
||||
$this->manager = $manager; |
||||
} |
||||
|
||||
/** |
||||
* Move the mount point to $target |
||||
* |
||||
* @param string $target the target mount point |
||||
* @return bool |
||||
*/ |
||||
public function moveMount($target) { |
||||
$result = $this->manager->setMountPoint($this->mountPoint, $target); |
||||
$this->setMountPoint($target); |
||||
return $result; |
||||
} |
||||
|
||||
/** |
||||
* Remove the mount points |
||||
* |
||||
* @return mixed |
||||
* @return bool |
||||
*/ |
||||
public function removeMount() { |
||||
return $this->manager->removeShare($this->mountPoint); |
||||
} |
||||
} |
@ -0,0 +1,54 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files_Sharing\External; |
||||
|
||||
class Scanner extends \OC\Files\Cache\Scanner { |
||||
/** |
||||
* @var \OCA\Files_Sharing\External\Storage |
||||
*/ |
||||
protected $storage; |
||||
|
||||
public function scan($path, $recursive = self::SCAN_RECURSIVE, $reuse = -1) { |
||||
$this->scanAll(); |
||||
} |
||||
|
||||
public function scanAll() { |
||||
$remote = $this->storage->getRemote(); |
||||
$token = $this->storage->getToken(); |
||||
$password = $this->storage->getPassword(); |
||||
$url = $remote . '/index.php/apps/files_sharing/shareinfo?t=' . $token; |
||||
|
||||
$ch = curl_init(); |
||||
|
||||
curl_setopt($ch, CURLOPT_URL, $url); |
||||
curl_setopt($ch, CURLOPT_POST, 1); |
||||
curl_setopt($ch, CURLOPT_POSTFIELDS, |
||||
http_build_query(array('password' => $password))); |
||||
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); |
||||
|
||||
$result = curl_exec($ch); |
||||
curl_close($ch); |
||||
|
||||
$data = json_decode($result, true); |
||||
if ($data['status'] === 'success') { |
||||
$this->addResult($data['data'], ''); |
||||
} else { |
||||
throw new \Exception('Error while scanning remote share'); |
||||
} |
||||
} |
||||
|
||||
private function addResult($data, $path) { |
||||
$this->cache->put($path, $data); |
||||
if (isset($data['children'])) { |
||||
foreach ($data['children'] as $child) { |
||||
$this->addResult($child, ltrim($path . '/' . $child['name'], '/')); |
||||
} |
||||
} |
||||
} |
||||
} |
@ -0,0 +1,103 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files_Sharing\External; |
||||
|
||||
use OC\Files\Filesystem; |
||||
use OC\Files\Storage\DAV; |
||||
use OCA\Files_Sharing\ISharedStorage; |
||||
|
||||
class Storage extends DAV implements ISharedStorage { |
||||
/** |
||||
* @var string |
||||
*/ |
||||
private $remoteUser; |
||||
|
||||
/** |
||||
* @var string |
||||
*/ |
||||
private $remote; |
||||
|
||||
/** |
||||
* @var string |
||||
*/ |
||||
private $mountPoint; |
||||
|
||||
/** |
||||
* @var string |
||||
*/ |
||||
private $token; |
||||
|
||||
public function __construct($options) { |
||||
$this->remote = $options['remote']; |
||||
$this->remoteUser = $options['owner']; |
||||
list($protocol, $remote) = explode('://', $this->remote); |
||||
list($host, $root) = explode('/', $remote); |
||||
$secure = $protocol === 'https'; |
||||
$root .= '/public.php/webdav'; |
||||
$this->mountPoint = $options['mountpoint']; |
||||
$this->token = $options['token']; |
||||
parent::__construct(array( |
||||
'secure' => $secure, |
||||
'host' => $host, |
||||
'root' => $root, |
||||
'user' => $options['token'], |
||||
'password' => $options['password'] |
||||
)); |
||||
} |
||||
|
||||
public function getRemoteUser() { |
||||
return $this->remoteUser; |
||||
} |
||||
|
||||
public function getRemote() { |
||||
return $this->remote; |
||||
} |
||||
|
||||
public function getMountPoint() { |
||||
return $this->mountPoint; |
||||
} |
||||
|
||||
public function getToken() { |
||||
return $this->token; |
||||
} |
||||
|
||||
public function getPassword() { |
||||
return $this->password; |
||||
} |
||||
|
||||
/** |
||||
* @brief get id of the mount point |
||||
* @return string |
||||
*/ |
||||
public function getId() { |
||||
return 'shared::' . md5($this->token . '@' . $this->remote); |
||||
} |
||||
|
||||
public function getCache($path = '', $storage = null) { |
||||
if (!$storage) { |
||||
$this->cache = new Cache($this, $this->remote, $this->remoteUser); |
||||
} |
||||
return $this->cache; |
||||
} |
||||
|
||||
/** |
||||
* @param string $path |
||||
* @param \OC\Files\Storage\Storage $storage |
||||
* @return \OCA\Files_Sharing\External\Scanner |
||||
*/ |
||||
public function getScanner($path = '', $storage = null) { |
||||
if (!$storage) { |
||||
$storage = $this; |
||||
} |
||||
if (!isset($this->scanner)) { |
||||
$this->scanner = new Scanner($storage); |
||||
} |
||||
return $this->scanner; |
||||
} |
||||
} |
@ -0,0 +1,13 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files_Sharing; |
||||
|
||||
interface ISharedStorage{ |
||||
|
||||
} |
@ -0,0 +1,27 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files_Sharing; |
||||
|
||||
use OC\Files\Cache\Cache; |
||||
|
||||
class ReadOnlyCache extends Cache { |
||||
public function get($path) { |
||||
$data = parent::get($path); |
||||
$data['permissions'] &= (\OCP\PERMISSION_READ | \OCP\PERMISSION_SHARE); |
||||
return $data; |
||||
} |
||||
|
||||
public function getFolderContents($path) { |
||||
$content = parent::getFolderContents($path); |
||||
foreach ($content as &$data) { |
||||
$data['permissions'] &= (\OCP\PERMISSION_READ | \OCP\PERMISSION_SHARE); |
||||
} |
||||
return $content; |
||||
} |
||||
} |
@ -0,0 +1,56 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
namespace OCA\Files_Sharing; |
||||
|
||||
use OC\Files\Storage\Wrapper\Wrapper; |
||||
|
||||
class ReadOnlyWrapper extends Wrapper { |
||||
public function isUpdatable($path) { |
||||
return false; |
||||
} |
||||
|
||||
public function isCreatable($path) { |
||||
return false; |
||||
} |
||||
|
||||
public function isDeletable($path) { |
||||
return false; |
||||
} |
||||
|
||||
public function getPermissions($path) { |
||||
return $this->storage->getPermissions($path) & (\OCP\PERMISSION_READ | \OCP\PERMISSION_SHARE); |
||||
} |
||||
|
||||
public function rename($path1, $path2) { |
||||
return false; |
||||
} |
||||
|
||||
public function touch($path, $mtime = null) { |
||||
return false; |
||||
} |
||||
|
||||
public function mkdir($path) { |
||||
return false; |
||||
} |
||||
|
||||
public function rmdir($path) { |
||||
return false; |
||||
} |
||||
|
||||
public function unlink($path) { |
||||
return false; |
||||
} |
||||
|
||||
public function getCache($path = '', $storage = null) { |
||||
if (!$storage) { |
||||
$storage = $this; |
||||
} |
||||
return new ReadOnlyCache($storage); |
||||
} |
||||
} |
@ -0,0 +1,17 @@ |
||||
<?php |
||||
/** |
||||
* Copyright (c) 2011 Robin Appelman <icewind@owncloud.com> |
||||
* This file is licensed under the Affero General Public License version 3 or |
||||
* later. |
||||
* See the COPYING-README file. |
||||
*/ |
||||
|
||||
\OC_Util::checkAdminUser(); |
||||
|
||||
\OCP\Util::addScript('files_sharing', 'settings-admin'); |
||||
|
||||
$tmpl = new OCP\Template('files_sharing', 'settings-admin'); |
||||
$tmpl->assign('outgoingServer2serverShareEnabled', OCA\Files_Sharing\Helper::isOutgoingServer2serverShareEnabled()); |
||||
$tmpl->assign('incomingServer2serverShareEnabled', OCA\Files_Sharing\Helper::isIncomingServer2serverShareEnabled()); |
||||
|
||||
return $tmpl->fetchPage(); |
@ -0,0 +1,13 @@ |
||||
<div class="section" id="fileSharingSettings" > |
||||
|
||||
<h2><?php p($l->t('File Sharing'));?></h2>
|
||||
|
||||
<input type="checkbox" name="outgoing_server2server_share_enabled" id="outgoingServer2serverShareEnabled" |
||||
value="1" <?php if ($_['outgoingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
|
||||
<label for="outgoingServer2serverShareEnabled"><?php p($l->t('Allow other instances to mount public links shared from this server'));?></label><br/>
|
||||
|
||||
<input type="checkbox" name="incoming_server2server_share_enabled" id="incomingServer2serverShareEnabled" |
||||
value="1" <?php if ($_['incomingServer2serverShareEnabled']) print_unescaped('checked="checked"'); ?> />
|
||||
<label for="incomingServer2serverShareEnabled"><?php p($l->t('Allow users to mount public link shares'));?></label><br/>
|
||||
|
||||
</div> |
Loading…
Reference in new issue