summaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2011-04-16 23:18:06 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2011-04-16 23:18:06 +0200
commitd376b4c90ab76785ad98ef0d888733543b06043e (patch)
tree012090e6a36bde60ba0d5808ab34b437b919c8bc /files
parenta7da3cd6a0f847820efd71a7aa2f58fb4fcf05a0 (diff)
downloadnextcloud-server-d376b4c90ab76785ad98ef0d888733543b06043e.tar.gz
nextcloud-server-d376b4c90ab76785ad98ef0d888733543b06043e.zip
i heard, we start to commit all files
Diffstat (limited to 'files')
-rw-r--r--files/ajax/upload.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/files/ajax/upload.php b/files/ajax/upload.php
new file mode 100644
index 00000000000..b3facf96723
--- /dev/null
+++ b/files/ajax/upload.php
@@ -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"));
+
+?>