summaryrefslogtreecommitdiffstats
path: root/files/ajax/upload.php
blob: f47f9b3d28276d24a4d2843ade5f9533ee32375e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php

// Init owncloud
require_once('../../lib/base.php');

// We send json data
// header( "Content-Type: application/json" );
// Firefox and Konqueror tries to download application/json for me.  --Arthur
header( "Content-Type: text/plain" );

// Check if we are a user
if( !OC_USER::isLoggedIn()){
	echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
	exit();
}

$files=$_FILES['files'];

$dir = $_POST['dir'];
if(!empty($dir)) $dir .= '/';
$error='';
$result=array();
if(strpos($dir,'..') === false){
	$fileCount=count($files['name']);
	for($i=0;$i<$fileCount;$i++){
		$target='/' . stripslashes($dir) . $files['name'][$i];
		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]);
		}
	}
	echo json_encode($result);
	exit();
}else{
	$error='invalid dir';
}

echo json_encode(array( 'status' => 'error', 'data' => array('error' => $error, "file" => $fileName)));

?>