2011-04-17 15:49:56 +00:00
|
|
|
<?php
|
2015-02-26 10:37:37 +00:00
|
|
|
|
2011-04-17 15:49:56 +00:00
|
|
|
// Init owncloud
|
2012-04-17 17:31:29 +00:00
|
|
|
|
2011-04-17 15:49:56 +00:00
|
|
|
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-20 18:12:36 +00:00
|
|
|
OCP\JSON::callCheck();
|
2014-07-16 17:40:22 +00:00
|
|
|
\OC::$server->getSession()->close();
|
2011-04-17 15:49:56 +00:00
|
|
|
|
|
|
|
// Get the params
|
2015-02-13 12:33:20 +00:00
|
|
|
$dir = isset($_POST['dir']) ? (string)$_POST['dir'] : '';
|
2015-02-18 16:44:13 +00:00
|
|
|
$folderName = isset($_POST['foldername']) ?(string) $_POST['foldername'] : '';
|
2011-04-17 15:49:56 +00:00
|
|
|
|
2014-08-31 08:05:59 +00:00
|
|
|
$l10n = \OC::$server->getL10N('files');
|
2013-10-23 08:49:43 +00:00
|
|
|
|
|
|
|
$result = array(
|
|
|
|
'success' => false,
|
|
|
|
'data' => NULL
|
|
|
|
);
|
|
|
|
|
2015-02-18 16:44:13 +00:00
|
|
|
try {
|
|
|
|
\OC\Files\Filesystem::getView()->verifyPath($dir, $folderName);
|
|
|
|
} catch (\OCP\Files\InvalidPathException $ex) {
|
|
|
|
$result['data'] = [
|
|
|
|
'message' => $ex->getMessage()];
|
2013-10-23 08:49:43 +00:00
|
|
|
OCP\JSON::error($result);
|
2015-02-18 16:44:13 +00:00
|
|
|
return;
|
2011-04-17 15:49:56 +00:00
|
|
|
}
|
2013-10-23 08:49:43 +00:00
|
|
|
|
2014-01-22 16:17:58 +00:00
|
|
|
if (!\OC\Files\Filesystem::file_exists($dir . '/')) {
|
|
|
|
$result['data'] = array('message' => (string)$l10n->t(
|
|
|
|
'The target folder has been moved or deleted.'),
|
|
|
|
'code' => 'targetnotfound'
|
|
|
|
);
|
|
|
|
OCP\JSON::error($result);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2015-02-18 16:44:13 +00:00
|
|
|
$target = $dir . '/' . $folderName;
|
2013-10-23 08:49:43 +00:00
|
|
|
|
|
|
|
if (\OC\Files\Filesystem::file_exists($target)) {
|
|
|
|
$result['data'] = array('message' => $l10n->t(
|
|
|
|
'The name %s is already used in the folder %s. Please choose a different name.',
|
2015-02-18 16:44:13 +00:00
|
|
|
array($folderName, $dir))
|
2013-10-23 08:49:43 +00:00
|
|
|
);
|
|
|
|
OCP\JSON::error($result);
|
2012-06-05 22:02:13 +00:00
|
|
|
exit();
|
|
|
|
}
|
2011-10-16 19:42:24 +00:00
|
|
|
|
2013-10-23 08:49:43 +00:00
|
|
|
if(\OC\Files\Filesystem::mkdir($target)) {
|
|
|
|
if ( $dir !== '/') {
|
2015-02-18 16:44:13 +00:00
|
|
|
$path = $dir.'/'.$folderName;
|
2012-10-08 15:28:56 +00:00
|
|
|
} else {
|
2015-02-18 16:44:13 +00:00
|
|
|
$path = '/'.$folderName;
|
2012-10-08 15:28:56 +00:00
|
|
|
}
|
2012-10-26 21:05:02 +00:00
|
|
|
$meta = \OC\Files\Filesystem::getFileInfo($path);
|
2013-10-28 19:22:06 +00:00
|
|
|
$meta['type'] = 'dir'; // missing ?!
|
|
|
|
OCP\JSON::success(array('data' => \OCA\Files\Helper::formatFileInfo($meta)));
|
2011-04-17 15:49:56 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2013-10-23 15:02:41 +00:00
|
|
|
OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Error when creating the folder') )));
|