0be9de5df5
Files app: - removed file list template, now rendering list from JSON response - FileList.addFile/addDir is now FileList.add() and takes a JS map with all required arguments instead of having a long number of function arguments - added unit tests for many FileList operations - fixed newfile.php, newfolder.php and rename.php to return the file's full JSON on success - removed obsolete/unused undo code - removed download_url / loading options, now using Files.getDownloadUrl() for that - server side now uses Helper::getFileInfo() to prepare file JSON response - previews are now client-side only Breadcrumbs are now JS only: - Added BreadCrumb class to handle breadcrumb rendering and events - Added unit test for BreadCrumb class - Moved all relevant JS functions to the BreadCrumb class Public page now uses ajax to load the file list: - Added Helper class in sharing app to make it easier to authenticate and retrieve the file's real path - Added ajax/list.php to retrieve the file list - Fixed FileActions and FileList to work with the ajax list Core: - Fixed file picker dialog to use the same list format as files app
66 lines
1.7 KiB
PHP
66 lines
1.7 KiB
PHP
<?php
|
|
|
|
// Init owncloud
|
|
|
|
|
|
OCP\JSON::checkLoggedIn();
|
|
OCP\JSON::callCheck();
|
|
\OC::$session->close();
|
|
|
|
// Get the params
|
|
$dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : '';
|
|
$foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : '';
|
|
|
|
$l10n = \OC_L10n::get('files');
|
|
|
|
$result = array(
|
|
'success' => false,
|
|
'data' => NULL
|
|
);
|
|
|
|
if(trim($foldername) === '') {
|
|
$result['data'] = array('message' => $l10n->t('Folder name cannot be empty.'));
|
|
OCP\JSON::error($result);
|
|
exit();
|
|
}
|
|
|
|
if(!OCP\Util::isValidFileName($foldername)) {
|
|
$result['data'] = array('message' => (string)$l10n->t("Invalid name, '\\', '/', '<', '>', ':', '\"', '|', '?' and '*' are not allowed."));
|
|
OCP\JSON::error($result);
|
|
exit();
|
|
}
|
|
|
|
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();
|
|
}
|
|
|
|
//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);
|
|
exit();
|
|
}
|
|
|
|
if(\OC\Files\Filesystem::mkdir($target)) {
|
|
if ( $dir !== '/') {
|
|
$path = $dir.'/'.$foldername;
|
|
} else {
|
|
$path = '/'.$foldername;
|
|
}
|
|
$meta = \OC\Files\Filesystem::getFileInfo($path);
|
|
$meta['type'] = 'dir'; // missing ?!
|
|
OCP\JSON::success(array('data' => \OCA\Files\Helper::formatFileInfo($meta)));
|
|
exit();
|
|
}
|
|
|
|
OCP\JSON::error(array('data' => array( 'message' => $l10n->t('Error when creating the folder') )));
|