2011-04-16 21:18:06 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 17:31:29 +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();
|
2013-01-18 23:31:09 +00:00
|
|
|
$l = OC_L10N::get('files');
|
2011-04-16 21:18:06 +00:00
|
|
|
|
2013-01-18 23:31:09 +00:00
|
|
|
// get array with current storage stats (e.g. max file size)
|
|
|
|
$storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir);
|
2012-12-20 16:16:01 +00:00
|
|
|
|
2011-09-23 18:03:39 +00:00
|
|
|
if (!isset($_FILES['files'])) {
|
2013-01-18 23:31:09 +00:00
|
|
|
OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('No file was uploaded. Unknown error')), $storageStats)));
|
2011-09-23 18:03:39 +00:00
|
|
|
exit();
|
|
|
|
}
|
2013-01-02 21:15:43 +00:00
|
|
|
|
2011-09-23 18:03:39 +00:00
|
|
|
foreach ($_FILES['files']['error'] as $error) {
|
|
|
|
if ($error != 0) {
|
|
|
|
$errors = array(
|
2013-01-18 23:31:09 +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'),
|
|
|
|
UPLOAD_ERR_CANT_WRITE => $l->t('Failed to write to disk'),
|
2011-09-23 18:03:39 +00:00
|
|
|
);
|
2013-01-18 23:31:09 +00:00
|
|
|
OCP\JSON::error(array('data' => array_merge(array('message' => $errors[$error]), $storageStats)));
|
2011-09-23 18:03:39 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2013-01-18 23:31:09 +00:00
|
|
|
$files = $_FILES['files'];
|
2011-07-19 18:23:33 +00:00
|
|
|
|
2011-04-16 21:18:06 +00:00
|
|
|
$dir = $_POST['dir'];
|
2013-01-18 23:31:09 +00:00
|
|
|
$error = '';
|
2011-08-15 18:37:50 +00:00
|
|
|
|
2013-01-18 23:31:09 +00:00
|
|
|
$totalSize = 0;
|
|
|
|
foreach ($files['size'] as $size) {
|
|
|
|
$totalSize += $size;
|
2011-08-15 18:37:50 +00:00
|
|
|
}
|
2012-12-02 02:03:48 +00:00
|
|
|
if($totalSize>\OC\Files\Filesystem::free_space($dir)) {
|
2013-01-06 21:40:35 +00:00
|
|
|
OCP\JSON::error(array('data' => array( 'message' => $l->t( 'Not enough space available' ),
|
2013-01-18 19:09:03 +00:00
|
|
|
'uploadMaxFilesize'=>$maxUploadFilesize,
|
|
|
|
'maxHumanFilesize'=>$maxHumanFilesize)));
|
2011-08-15 18:37:50 +00:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2013-01-18 23:31:09 +00:00
|
|
|
$result = array();
|
|
|
|
if (strpos($dir, '..') === false) {
|
|
|
|
$fileCount = count($files['name']);
|
|
|
|
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
|
2013-01-06 23:16:10 +00:00
|
|
|
$target = \OC\Files\Filesystem::normalizePath($target);
|
|
|
|
if(is_uploaded_file($files['tmp_name'][$i]) and \OC\Files\Filesystem::fromTmpFile($files['tmp_name'][$i], $target)) {
|
2012-10-26 21:05:02 +00:00
|
|
|
$meta = \OC\Files\Filesystem::getFileInfo($target);
|
2013-01-18 19:09:03 +00:00
|
|
|
// updated max file size after upload
|
2013-01-18 23:31:09 +00:00
|
|
|
$storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir);
|
2012-12-20 16:16:01 +00:00
|
|
|
|
2012-11-29 17:30:02 +00:00
|
|
|
$result[]=array( 'status' => 'success',
|
|
|
|
'mime'=>$meta['mimetype'],
|
|
|
|
'size'=>$meta['size'],
|
2013-01-26 17:49:45 +00:00
|
|
|
'id'=>$id,
|
2012-12-20 16:16:01 +00:00
|
|
|
'name'=>basename($target),
|
2013-01-18 19:09:03 +00:00
|
|
|
'uploadMaxFilesize'=>$maxUploadFilesize,
|
|
|
|
'maxHumanFilesize'=>$maxHumanFilesize
|
|
|
|
);
|
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 {
|
2013-01-18 23:31:09 +00:00
|
|
|
$error = $l->t('Invalid directory.');
|
2011-04-16 21:18:06 +00:00
|
|
|
}
|
|
|
|
|
2013-01-18 23:31:09 +00:00
|
|
|
OCP\JSON::error(array('data' => array_merge(array('message' => $error), $storageStats)));
|