nextcloud/files/ajax/upload.php

63 lines
1.8 KiB
PHP
Raw Normal View History

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
OC_JSON::setContentTypeHeader('text/plain');
2011-04-17 01:18:06 +04:00
OC_JSON::checkLoggedIn();
2011-04-17 01:18:06 +04:00
if (!isset($_FILES['files'])) {
OC_JSON::error(array("data" => array( "message" => "No file was uploaded. Unknown error" )));
exit();
}
foreach ($_FILES['files']['error'] as $error) {
if ($error != 0) {
2011-12-23 22:48:22 +04:00
$l=new OC_L10N('files');
$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'),
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")
);
OC_JSON::error(array("data" => array( "message" => $errors[$error] )));
exit();
}
}
$files=$_FILES['files'];
2011-04-17 01:18:06 +04:00
$dir = $_POST['dir'];
$dir .= '/';
$error='';
$totalSize=0;
foreach($files['size'] as $size){
$totalSize+=$size;
}
if($totalSize>OC_Filesystem::free_space('/')){
OC_JSON::error(array("data" => array( "message" => "Not enough space available" )));
exit();
}
$result=array();
if(strpos($dir,'..') === false){
$fileCount=count($files['name']);
for($i=0;$i<$fileCount;$i++){
$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-04-17 01:18:06 +04:00
}
OC_JSON::encodedPrint($result);
exit();
}else{
$error='invalid dir';
2011-04-17 01:18:06 +04:00
}
OC_JSON::error(array('data' => array('error' => $error, "file" => $fileName)));
2011-04-17 01:18:06 +04:00
?>