2011-04-17 19:49:56 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-04-17 19:49:56 +04:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-20 22:12:36 +04:00
|
|
|
OCP\JSON::callCheck();
|
2014-03-10 17:39:27 +04:00
|
|
|
\OC::$session->close();
|
2011-04-17 19:49:56 +04:00
|
|
|
|
|
|
|
// Get the params
|
2012-03-08 00:43:44 +04:00
|
|
|
$dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : '';
|
|
|
|
$foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : '';
|
2011-04-17 19:49:56 +04:00
|
|
|
|
2013-10-23 12:49:43 +04:00
|
|
|
$l10n = \OC_L10n::get('files');
|
|
|
|
|
|
|
|
$result = array(
|
|
|
|
'success' => false,
|
|
|
|
'data' => NULL
|
|
|
|
);
|
|
|
|
|
|
|
|
if(trim($foldername) === '') {
|
2013-10-27 14:53:14 +04:00
|
|
|
$result['data'] = array('message' => $l10n->t('Folder name cannot be empty.'));
|
2013-10-23 12:49:43 +04:00
|
|
|
OCP\JSON::error($result);
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2014-01-10 19:14:37 +04:00
|
|
|
if(!OCP\Util::isValidFileName($foldername)) {
|
|
|
|
$result['data'] = array('message' => (string)$l10n->t("Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."));
|
2013-10-23 12:49:43 +04:00
|
|
|
OCP\JSON::error($result);
|
2011-04-17 19:49:56 +04:00
|
|
|
exit();
|
|
|
|
}
|
2013-10-23 12:49:43 +04:00
|
|
|
|
2014-01-22 20:17:58 +04: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();
|
|
|
|
}
|
|
|
|
|
2013-10-23 12:49:43 +04:00
|
|
|
//TODO why is stripslashes used on foldername here but not in newfile.php?
|
|
|
|
$target = $dir . '/' . stripslashes($foldername);
|
|
|
|
|
|
|
|
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.',
|
|
|
|
array($foldername, $dir))
|
|
|
|
);
|
|
|
|
OCP\JSON::error($result);
|
2012-06-06 02:02:13 +04:00
|
|
|
exit();
|
|
|
|
}
|
2011-10-16 23:42:24 +04:00
|
|
|
|
2013-10-23 12:49:43 +04:00
|
|
|
if(\OC\Files\Filesystem::mkdir($target)) {
|
|
|
|
if ( $dir !== '/') {
|
2012-10-08 19:28:56 +04:00
|
|
|
$path = $dir.'/'.$foldername;
|
|
|
|
} else {
|
|
|
|
$path = '/'.$foldername;
|
|
|
|
}
|
2012-10-27 01:05:02 +04:00
|
|
|
$meta = \OC\Files\Filesystem::getFileInfo($path);
|
2013-10-28 23:22:06 +04:00
|
|
|
$meta['type'] = 'dir'; // missing ?!
|
|
|
|
OCP\JSON::success(array('data' => \OCA\Files\Helper::formatFileInfo($meta)));
|
2011-04-17 19:49:56 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2013-10-23 19:02:41 +04:00
|
|
|
OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Error when creating the folder') )));
|