i heard, we start to commit all files
This commit is contained in:
parent
a7da3cd6a0
commit
d376b4c90a
1 changed files with 32 additions and 0 deletions
32
files/ajax/upload.php
Normal file
32
files/ajax/upload.php
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?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" => "Authentication error" ));
|
||||
exit();
|
||||
}
|
||||
|
||||
$fileName=$_FILES['file']['name'];
|
||||
$source=$_FILES['file']['tmp_name'];
|
||||
$dir = $_POST['dir'];
|
||||
if(!empty($dir)) $dir .= '/';
|
||||
$target='/' . stripslashes($dir) . $fileName;
|
||||
if(isset($_SESSION['username'])
|
||||
and $_SESSION['username'] and strpos($dir,'..') === false){
|
||||
if(OC_FILESYSTEM::fromTmpFile($source,$target)){
|
||||
echo json_encode(array( "status" => "success"));
|
||||
exit();
|
||||
}
|
||||
}
|
||||
|
||||
echo json_encode(array( "status" => "error"));
|
||||
|
||||
?>
|
Loading…
Reference in a new issue