2011-07-20 17:34:16 +00:00
|
|
|
<?php
|
|
|
|
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::checkAppEnabled('files_sharing');
|
2012-05-05 18:56:52 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2011-07-20 17:34:16 +00:00
|
|
|
|
2012-05-05 18:56:52 +00:00
|
|
|
$userDirectory = '/'.OCP\USER::getUser().'/files';
|
|
|
|
$sources = explode(';', $_POST['sources']);
|
2011-08-01 00:47:53 +00:00
|
|
|
$uid_shared_with = $_POST['uid_shared_with'];
|
|
|
|
$permissions = $_POST['permissions'];
|
2011-07-28 19:31:52 +00:00
|
|
|
foreach ($sources as $source) {
|
2012-05-15 15:29:02 +00:00
|
|
|
$file = OC_FileCache::get($source);
|
2012-05-05 18:56:52 +00:00
|
|
|
$path = ltrim($source, '/');
|
|
|
|
$source = $userDirectory.$source;
|
|
|
|
// Check if the file exists or if the file is being reshared
|
2012-05-15 15:29:02 +00:00
|
|
|
if ($source && $file['encrypted'] == false && (OC_FILESYSTEM::file_exists($path) && OC_FILESYSTEM::is_readable($path) || OC_Share::getSource($source))) {
|
2012-05-05 18:56:52 +00:00
|
|
|
try {
|
|
|
|
$shared = new OC_Share($source, $uid_shared_with, $permissions);
|
|
|
|
// If this is a private link, return the token
|
|
|
|
if ($uid_shared_with == OC_Share::PUBLICLINK) {
|
|
|
|
OCP\JSON::success(array('data' => $shared->getToken()));
|
|
|
|
} else {
|
|
|
|
OCP\JSON::success();
|
|
|
|
}
|
|
|
|
} catch (Exception $exception) {
|
2012-05-06 23:06:24 +00:00
|
|
|
OCP\Util::writeLog('files_sharing', 'Unexpected Error : '.$exception->getMessage(), OCP\Util::ERROR);
|
|
|
|
OCP\JSON::error(array('data' => array('message' => $exception->getMessage())));
|
2011-08-24 16:32:02 +00:00
|
|
|
}
|
2012-05-05 18:56:52 +00:00
|
|
|
} else {
|
2012-05-15 15:29:02 +00:00
|
|
|
if ($file['encrypted'] == true) {
|
|
|
|
OCP\JSON::error(array('data' => array('message' => 'Encrypted files cannot be shared')));
|
|
|
|
} else {
|
|
|
|
OCP\Util::writeLog('files_sharing', 'File does not exist or is not readable :'.$source, OCP\Util::ERROR);
|
|
|
|
OCP\JSON::error(array('data' => array('message' => 'File does not exist or is not readable')));
|
|
|
|
}
|
2011-08-24 16:32:02 +00:00
|
|
|
}
|
2011-07-28 19:31:52 +00:00
|
|
|
}
|
2011-07-20 17:34:16 +00:00
|
|
|
|
2011-09-30 21:05:10 +00:00
|
|
|
?>
|