2011-04-17 19:49:56 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// Init owncloud
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2011-04-17 19:49:56 +04:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
2012-07-20 22:12:36 +04:00
|
|
|
OCP\JSON::callCheck();
|
2011-04-17 19:49:56 +04:00
|
|
|
|
|
|
|
// Get the params
|
2012-03-08 00:43:44 +04:00
|
|
|
$dir = isset( $_POST['dir'] ) ? stripslashes($_POST['dir']) : '';
|
|
|
|
$foldername = isset( $_POST['foldername'] ) ? stripslashes($_POST['foldername']) : '';
|
2011-04-17 19:49:56 +04:00
|
|
|
|
2011-12-23 21:28:44 +04:00
|
|
|
if(trim($foldername) == '') {
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => "Empty Foldername" )));
|
2011-04-17 19:49:56 +04:00
|
|
|
exit();
|
|
|
|
}
|
2012-08-29 02:50:12 +04:00
|
|
|
if(strpos($foldername, '/')!==false) {
|
2012-06-06 02:02:13 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => "Invalid Foldername" )));
|
|
|
|
exit();
|
|
|
|
}
|
2011-10-16 23:42:24 +04:00
|
|
|
|
2012-10-24 17:52:30 +04:00
|
|
|
if(\OC\Files\Filesystem::mkdir($dir . '/' . stripslashes($foldername))) {
|
2012-10-08 19:28:56 +04:00
|
|
|
if ( $dir != '/') {
|
|
|
|
$path = $dir.'/'.$foldername;
|
|
|
|
} else {
|
|
|
|
$path = '/'.$foldername;
|
|
|
|
}
|
2012-10-27 01:05:02 +04:00
|
|
|
$meta = \OC\Files\Filesystem::getFileInfo($path);
|
|
|
|
$id = $meta['fileid'];
|
2012-10-08 19:28:56 +04:00
|
|
|
OCP\JSON::success(array("data" => array('id'=>$id)));
|
2011-04-17 19:49:56 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::error(array("data" => array( "message" => "Error when creating the folder" )));
|