17e631bc5e
Create OC_JSON class, for single point of creating json responses. No real logic change, this just cleans up the code a bit.
22 lines
626 B
PHP
22 lines
626 B
PHP
<?php
|
|
|
|
// Init owncloud
|
|
require_once('../../lib/base.php');
|
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
// Get the params
|
|
$dir = isset( $_GET['dir'] ) ? $_GET['dir'] : '';
|
|
$foldername = isset( $_GET['foldername'] ) ? $_GET['foldername'] : '';
|
|
|
|
if($foldername == '') {
|
|
OC_JSON::error(array("data" => array( "message" => "Empty Foldername" )));
|
|
exit();
|
|
}
|
|
if(defined("DEBUG") && DEBUG) {error_log('try to create ' . $foldername . ' in ' . $dir);}
|
|
if(OC_Files::newFile($dir, $foldername, 'dir')) {
|
|
OC_JSON::success(array("data" => array()));
|
|
exit();
|
|
}
|
|
|
|
OC_JSON::error(array("data" => array( "message" => "Error when creating the folder" )));
|