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