nextcloud/settings/ajax/creategroup.php

29 lines
695 B
PHP
Raw Normal View History

2011-04-17 01:26:55 +04:00
<?php
// Init owncloud
require_once('../../lib/base.php');
// 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' )){
OC_JSON::error(array("data" => array( "message" => "Authentication error" )));
2011-04-17 01:26:55 +04:00
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())){
OC_JSON::error(array("data" => array( "message" => "Group already exists" )));
2011-04-18 14:39:28 +04:00
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 )){
OC_JSON::success(array("data" => array( "groupname" => $groupname )));
2011-04-17 01:26:55 +04:00
}
else{
OC_JSON::error(array("data" => array( "message" => "Unable to add group" )));
2011-04-17 01:26:55 +04:00
}
?>