server/apps/files/ajax/upload.php

83 lines
2.8 KiB
PHP
Raw Normal View History

2011-04-16 21:18:06 +00:00
<?php
// Init owncloud
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();
$l = OC_L10N::get('files');
2011-04-16 21:18:06 +00:00
// get array with current storage stats (e.g. max file size)
$storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir);
if (!isset($_FILES['files'])) {
OCP\JSON::error(array('data' => array_merge(array('message' => $l->t('No file was uploaded. Unknown error')), $storageStats)));
exit();
}
2013-01-02 21:15:43 +00:00
foreach ($_FILES['files']['error'] as $error) {
if ($error != 0) {
$errors = array(
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'),
);
OCP\JSON::error(array('data' => array_merge(array('message' => $errors[$error]), $storageStats)));
exit();
}
}
$files = $_FILES['files'];
2011-04-16 21:18:06 +00:00
$dir = $_POST['dir'];
$error = '';
$totalSize = 0;
foreach ($files['size'] as $size) {
$totalSize += $size;
}
2012-12-02 02:03:48 +00:00
if($totalSize>\OC\Files\Filesystem::free_space($dir)) {
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)));
exit();
}
$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]);
// $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
$storageStats = \OCA\files\lib\Helper::buildFileStorageStatistics($dir);
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,
'name'=>basename($target),
2013-01-18 19:09:03 +00:00
'uploadMaxFilesize'=>$maxUploadFilesize,
'maxHumanFilesize'=>$maxHumanFilesize
);
}
2011-04-16 21:18:06 +00:00
}
2012-05-03 10:23:29 +00:00
OCP\JSON::encodedPrint($result);
exit();
2012-08-28 22:50:12 +00:00
} else {
$error = $l->t('Invalid directory.');
2011-04-16 21:18:06 +00:00
}
OCP\JSON::error(array('data' => array_merge(array('message' => $error), $storageStats)));