2011-04-16 21:18:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 17:31:29 +00:00
|
|
|
|
2012-10-08 15:32:04 +00:00
|
|
|
|
2011-04-16 21:18:06 +00:00
|
|
|
// Firefox and Konqueror tries to download application/json for me. --Arthur
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::setContentTypeHeader('text/plain');
|
2011-04-16 21:18:06 +00:00
|
|
|
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-07 13:58:11 +00:00
|
|
|
OCP\JSON::callCheck();
|
2011-04-16 21:18:06 +00:00
|
|
|
|
2011-09-23 18:03:39 +00:00
|
|
|
if (!isset($_FILES['files'])) {
|
2012-11-29 17:30:02 +00:00
|
|
|
OCP\JSON::error(array('data' => array( 'message' => 'No file was uploaded. Unknown error' )));
|
2011-09-23 18:03:39 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
foreach ($_FILES['files']['error'] as $error) {
|
|
|
|
if ($error != 0) {
|
2012-04-14 14:44:15 +00:00
|
|
|
$l=OC_L10N::get('files');
|
2011-09-23 18:03:39 +00:00
|
|
|
$errors = array(
|
2012-11-29 17:30:02 +00: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 02:24:00 +00:00
|
|
|
UPLOAD_ERR_CANT_WRITE=>$l->t('Failed to write to disk'),
|
2011-09-23 18:03:39 +00:00
|
|
|
);
|
2012-11-29 17:30:02 +00:00
|
|
|
OCP\JSON::error(array('data' => array( 'message' => $errors[$error] )));
|
2011-09-23 18:03:39 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2011-07-19 18:23:33 +00:00
|
|
|
$files=$_FILES['files'];
|
|
|
|
|
2011-04-16 21:18:06 +00:00
|
|
|
$dir = $_POST['dir'];
|
2011-07-19 18:23:33 +00:00
|
|
|
$error='';
|
2011-08-15 18:37:50 +00:00
|
|
|
|
|
|
|
$totalSize=0;
|
2012-09-07 13:22:01 +00:00
|
|
|
foreach($files['size'] as $size) {
|
2011-08-15 18:37:50 +00:00
|
|
|
$totalSize+=$size;
|
|
|
|
}
|
2012-11-04 09:46:32 +00:00
|
|
|
if($totalSize>OC_Filesystem::free_space($dir)) {
|
2012-11-29 17:30:02 +00:00
|
|
|
OCP\JSON::error(array('data' => array( 'message' => 'Not enough space available' )));
|
2011-08-15 18:37:50 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-07-19 18:23:33 +00:00
|
|
|
$result=array();
|
2012-08-28 22:50:12 +00:00
|
|
|
if(strpos($dir, '..') === false) {
|
2011-07-19 18:23:33 +00:00
|
|
|
$fileCount=count($files['name']);
|
2012-09-07 13:22:01 +00:00
|
|
|
for($i=0;$i<$fileCount;$i++) {
|
2012-11-29 17:30:02 +00:00
|
|
|
$target = OCP\Files::buildNotExistingFileName(stripslashes($dir), $files['name'][$i]);
|
2012-11-16 10:50:57 +00:00
|
|
|
// $path needs to be normalized - this failed within drag'n'drop upload to a sub-folder
|
|
|
|
$target = OC_Filesystem::normalizePath($target);
|
2012-08-28 22:50:12 +00:00
|
|
|
if(is_uploaded_file($files['tmp_name'][$i]) and OC_Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
|
2012-09-12 21:00:25 +00:00
|
|
|
$meta = OC_FileCache::get($target);
|
2012-09-26 11:24:41 +00:00
|
|
|
$id = OC_FileCache::getId($target);
|
2012-11-29 17:30:02 +00:00
|
|
|
$result[]=array( 'status' => 'success',
|
|
|
|
'mime'=>$meta['mimetype'],
|
|
|
|
'size'=>$meta['size'],
|
|
|
|
'id'=>$id,
|
|
|
|
'name'=>basename($target));
|
2011-07-19 18:23:33 +00:00
|
|
|
}
|
2011-04-16 21:18:06 +00:00
|
|
|
}
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::encodedPrint($result);
|
2011-07-19 18:23:33 +00:00
|
|
|
exit();
|
2012-08-28 22:50:12 +00:00
|
|
|
} else {
|
2011-07-19 18:23:33 +00:00
|
|
|
$error='invalid dir';
|
2011-04-16 21:18:06 +00:00
|
|
|
}
|
|
|
|
|
2012-11-29 17:30:02 +00:00
|
|
|
OCP\JSON::error(array('data' => array('error' => $error, 'file' => $fileName)));
|