2011-04-17 01:18:06 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
|
|
|
require_once('../../lib/base.php');
|
|
|
|
|
|
|
|
// Firefox and Konqueror tries to download application/json for me. --Arthur
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::setContentTypeHeader('text/plain');
|
2011-04-17 01:18:06 +04:00
|
|
|
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::checkLoggedIn();
|
2011-04-17 01:18:06 +04:00
|
|
|
|
2011-09-23 22:03:39 +04:00
|
|
|
if (!isset($_FILES['files'])) {
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::error(array("data" => array( "message" => "No file was uploaded. Unknown error" )));
|
2011-09-23 22:03:39 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
foreach ($_FILES['files']['error'] as $error) {
|
|
|
|
if ($error != 0) {
|
2011-12-23 22:48:22 +04:00
|
|
|
$l=new OC_L10N('files');
|
2011-09-23 22:03:39 +04:00
|
|
|
$errors = array(
|
|
|
|
0=>$l->t("There is no error, the file uploaded with success"),
|
2011-12-23 22:48:22 +04:00
|
|
|
1=>$l->t("The uploaded file exceeds the upload_max_filesize directive in php.ini").ini_get('upload_max_filesize'),
|
2011-09-23 22:03:39 +04:00
|
|
|
2=>$l->t("The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form"),
|
|
|
|
3=>$l->t("The uploaded file was only partially uploaded"),
|
|
|
|
4=>$l->t("No file was uploaded"),
|
|
|
|
6=>$l->t("Missing a temporary folder")
|
|
|
|
);
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::error(array("data" => array( "message" => $errors[$error] )));
|
2011-09-23 22:03:39 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
2011-07-19 22:23:33 +04:00
|
|
|
$files=$_FILES['files'];
|
|
|
|
|
2011-04-17 01:18:06 +04:00
|
|
|
$dir = $_POST['dir'];
|
2011-08-21 16:28:44 +04:00
|
|
|
$dir .= '/';
|
2011-07-19 22:23:33 +04:00
|
|
|
$error='';
|
2011-08-15 22:37:50 +04:00
|
|
|
|
|
|
|
$totalSize=0;
|
|
|
|
foreach($files['size'] as $size){
|
|
|
|
$totalSize+=$size;
|
|
|
|
}
|
|
|
|
if($totalSize>OC_Filesystem::free_space('/')){
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::error(array("data" => array( "message" => "Not enough space available" )));
|
2011-08-15 22:37:50 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-07-19 22:23:33 +04:00
|
|
|
$result=array();
|
2011-04-17 13:27:28 +04:00
|
|
|
if(strpos($dir,'..') === false){
|
2011-07-19 22:23:33 +04:00
|
|
|
$fileCount=count($files['name']);
|
|
|
|
for($i=0;$i<$fileCount;$i++){
|
2011-08-20 20:36:20 +04:00
|
|
|
$target=stripslashes($dir) . $files['name'][$i];
|
2011-07-29 23:36:03 +04:00
|
|
|
if(OC_Filesystem::fromUploadedFile($files['tmp_name'][$i],$target)){
|
|
|
|
$result[]=array( "status" => "success", 'mime'=>OC_Filesystem::getMimeType($target),'size'=>OC_Filesystem::filesize($target),'name'=>$files['name'][$i]);
|
2011-07-19 22:23:33 +04:00
|
|
|
}
|
2011-04-17 01:18:06 +04:00
|
|
|
}
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::encodedPrint($result);
|
2011-07-19 22:23:33 +04:00
|
|
|
exit();
|
|
|
|
}else{
|
|
|
|
$error='invalid dir';
|
2011-04-17 01:18:06 +04:00
|
|
|
}
|
|
|
|
|
2011-09-24 00:22:59 +04:00
|
|
|
OC_JSON::error(array('data' => array('error' => $error, "file" => $fileName)));
|
2011-04-17 01:18:06 +04:00
|
|
|
|
|
|
|
?>
|