nextcloud/settings/ajax/creategroup.php

32 lines
868 B
PHP
Raw Normal View History

2011-04-17 01:26:55 +04:00
<?php
// Init owncloud
require_once('../../lib/base.php');
// We send json data
header( "Content-Type: application/jsonrequest" );
// Check if we are a user
2011-07-29 23:36:03 +04:00
if( !OC_User::isLoggedIn() || !OC_Group::inGroup( OC_User::getUser(), 'admin' )){
2011-04-17 01:26:55 +04:00
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
exit();
}
2011-04-18 14:39:28 +04:00
$groupname = $_POST["groupname"];
// Does the group exist?
2011-07-29 23:36:03 +04:00
if( in_array( $groupname, OC_Group::getGroups())){
2011-04-18 14:39:28 +04:00
echo json_encode( array( "status" => "error", "data" => array( "message" => "Group already exists" )));
exit();
}
2011-04-17 01:26:55 +04:00
// Return Success story
2011-07-29 23:36:03 +04:00
if( OC_Group::createGroup( $groupname )){
2011-04-18 14:39:28 +04:00
echo json_encode( array( "status" => "success", "data" => array( "groupname" => $groupname )));
2011-04-17 01:26:55 +04:00
}
else{
2011-04-17 03:04:23 +04:00
echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to add group" )));
2011-04-17 01:26:55 +04:00
}
?>