]> source.dussan.org Git - nextcloud-server.git/commitdiff
i heard, we start to commit all files
authorArthur Schiwon <blizzz@arthur-schiwon.de>
Sat, 16 Apr 2011 21:18:06 +0000 (23:18 +0200)
committerArthur Schiwon <blizzz@arthur-schiwon.de>
Sat, 16 Apr 2011 21:18:06 +0000 (23:18 +0200)
files/ajax/upload.php [new file with mode: 0644]

diff --git a/files/ajax/upload.php b/files/ajax/upload.php
new file mode 100644 (file)
index 0000000..b3facf9
--- /dev/null
@@ -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"));
+
+?>