nextcloud/apps/files/ajax/upload.php

98 lines
3.3 KiB
PHP
Raw Normal View History

2011-04-17 01:18:06 +04:00
<?php
// Init owncloud
2012-10-08 19:32:04 +04:00
2011-04-17 01:18:06 +04:00
// Firefox and Konqueror tries to download application/json for me. --Arthur
2012-05-03 14:23:29 +04:00
OCP\JSON::setContentTypeHeader('text/plain');
2011-04-17 01:18:06 +04:00
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
2012-07-07 17:58:11 +04:00
OCP\JSON::callCheck();
$l=OC_L10N::get('files');
2011-04-17 01:18:06 +04:00
// current max upload size
$l=new OC_L10N('files');
$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir);
$maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize);
$maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize;
if (!isset($_FILES['files'])) {
OCP\JSON::error(array('data' => array( 'message' => $l->t( 'No file was uploaded. Unknown error' ),
'uploadMaxFilesize'=>$maxUploadFilesize,
'maxHumanFilesize'=>$maxHumanFilesize
)));
exit();
}
2013-01-03 01:15:43 +04:00
foreach ($_FILES['files']['error'] as $error) {
if ($error != 0) {
$errors = array(
2012-11-29 21:30:02 +04:00
UPLOAD_ERR_OK=>$l->t('There is no error, the file uploaded with success'),
UPLOAD_ERR_INI_SIZE=>$l->t('The uploaded file exceeds the upload_max_filesize directive in php.ini: ')
.ini_get('upload_max_filesize'),
UPLOAD_ERR_FORM_SIZE=>$l->t('The uploaded file exceeds the MAX_FILE_SIZE directive that was specified'
.' in the HTML form'),
UPLOAD_ERR_PARTIAL=>$l->t('The uploaded file was only partially uploaded'),
UPLOAD_ERR_NO_FILE=>$l->t('No file was uploaded'),
UPLOAD_ERR_NO_TMP_DIR=>$l->t('Missing a temporary folder'),
2012-02-26 06:24:00 +04:00
UPLOAD_ERR_CANT_WRITE=>$l->t('Failed to write to disk'),
);
OCP\JSON::error(array('data' => array( 'message' => $errors[$error],
'uploadMaxFilesize'=>$maxUploadFilesize,
'maxHumanFilesize'=>$maxHumanFilesize
)));
exit();
}
}
$files=$_FILES['files'];
2011-04-17 01:18:06 +04:00
$dir = $_POST['dir'];
$error='';
$totalSize=0;
2012-09-07 17:22:01 +04:00
foreach($files['size'] as $size) {
$totalSize+=$size;
}
if($totalSize>OC_Filesystem::free_space($dir)) {
OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' ),
'uploadMaxFilesize'=>$maxUploadFilesize,
'maxHumanFilesize'=>$maxHumanFilesize)));
exit();
}
$result=array();
2012-08-29 02:50:12 +04:00
if(strpos($dir, '..') === false) {
$fileCount=count($files['name']);
2012-09-07 17:22:01 +04:00
for($i=0;$i<$fileCount;$i++) {
2012-11-29 21:30:02 +04:00
$target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]);
// $path needs to be normalized - this failed within drag'n'drop upload to a sub-folder
$target = OC_Filesystem::normalizePath($target);
2012-08-29 02:50:12 +04:00
if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
$meta = OC_FileCache::get($target);
$id = OC_FileCache::getId($target);
// updated max file size after upload
$maxUploadFilesize=OCP\Util::maxUploadFilesize($dir);
$maxHumanFilesize=OCP\Util::humanFileSize($maxUploadFilesize);
$maxHumanFilesize=$l->t('Upload') . ' max. '.$maxHumanFilesize;
$result[]=array( 'status' => 'success',
2012-11-29 21:30:02 +04:00
'mime'=>$meta['mimetype'],
'size'=>$meta['size'],
'id'=>$id,
'name'=>basename($target),
'uploadMaxFilesize'=>$maxUploadFilesize,
'maxHumanFilesize'=>$maxHumanFilesize
);
}
2011-04-17 01:18:06 +04:00
}
2012-05-03 14:23:29 +04:00
OCP\JSON::encodedPrint($result);
exit();
2012-08-29 02:50:12 +04:00
} else {
2013-01-03 16:31:23 +04:00
$error=$l->t( 'Invalid directory.' );
2011-04-17 01:18:06 +04:00
}
OCP\JSON::error(array('data' => array('message' => $error,
'uploadMaxFilesize'=>$maxUploadFilesize,
'maxHumanFilesize'=>$maxHumanFilesize
)));