aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/newfile.php
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2013-10-23 10:49:43 +0200
committerJörn Friedrich Dreyer <jfd@butonic.de>2013-10-23 10:59:01 +0200
commitaf7ec3169b98f52107c74b91d6422d2375c7a89d (patch)
treedf0ede9edbdef183efde94d943d36f7ef27ef80b /apps/files/ajax/newfile.php
parentbc0faa1c4e67f0058c1d9ce89a3727f09e321c9f (diff)
downloadnextcloud-server-af7ec3169b98f52107c74b91d6422d2375c7a89d.tar.gz
nextcloud-server-af7ec3169b98f52107c74b91d6422d2375c7a89d.zip
cleanup precondition checking when creating new files / folders
- use i18n - use trim when checking for empty file / folder name - use more verbose error descriptions
Diffstat (limited to 'apps/files/ajax/newfile.php')
-rw-r--r--apps/files/ajax/newfile.php31
1 files changed, 20 insertions, 11 deletions
diff --git a/apps/files/ajax/newfile.php b/apps/files/ajax/newfile.php
index aab856dd9a4..f64a1bcc278 100644
--- a/apps/files/ajax/newfile.php
+++ b/apps/files/ajax/newfile.php
@@ -20,15 +20,6 @@ if($source) {
OC_JSON::callCheck();
}
-if($filename == '') {
- OCP\JSON::error(array("data" => array( "message" => "Empty Filename" )));
- exit();
-}
-if(strpos($filename, '/')!==false) {
- OCP\JSON::error(array("data" => array( "message" => "Invalid Filename" )));
- exit();
-}
-
function progress($notification_code, $severity, $message, $message_code, $bytes_transferred, $bytes_max) {
static $filesize = 0;
static $lastsize = 0;
@@ -54,10 +45,28 @@ function progress($notification_code, $severity, $message, $message_code, $bytes
}
}
-$target = $dir.'/'.$filename;
-
$l10n = \OC_L10n::get('files');
+$result = array(
+ 'success' => false,
+ 'data' => NULL
+ );
+
+if(trim($filename) === '') {
+ $result['data'] = array('message' => $l10n->t('Filename cannot not be empty.'));
+ OCP\JSON::error($result);
+ exit();
+}
+
+if(strpos($filename, '/') !== false) {
+ $result['data'] = array('message' => $l10n->t('Filename must not contain /. Please choose a different name.'));
+ OCP\JSON::error($result);
+ exit();
+}
+
+//TODO why is stripslashes used on foldername in newfolder.php but not here?
+$target = $dir.'/'.$filename;
+
if (\OC\Files\Filesystem::file_exists($target)) {
$result = array(
'success' => false,