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();
|
|
|
|
}
|
|
|
|
|
|
|
|
$groups = array();
|
|
|
|
if( isset( $_POST["groups"] )){
|
|
|
|
$groups = $_POST["groups"];
|
|
|
|
}
|
|
|
|
$username = $_POST["username"];
|
|
|
|
$password = $_POST["password"];
|
|
|
|
|
2011-04-18 14:39:28 +04:00
|
|
|
// Does the group exist?
|
2011-07-29 23:36:03 +04:00
|
|
|
if( in_array( $username, OC_User::getUsers())){
|
2011-04-18 14:39:28 +04:00
|
|
|
echo json_encode( array( "status" => "error", "data" => array( "message" => "User already exists" )));
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
2011-04-17 01:26:55 +04:00
|
|
|
// Return Success story
|
2011-07-29 23:36:03 +04:00
|
|
|
if( OC_User::createUser( $username, $password )){
|
2011-04-17 03:04:23 +04:00
|
|
|
foreach( $groups as $i ){
|
2011-08-11 00:48:26 +04:00
|
|
|
if(!OC_Group::groupExists($i)){
|
|
|
|
OC_Group::createGroup($i);
|
|
|
|
}
|
2011-07-29 23:36:03 +04:00
|
|
|
OC_Group::addToGroup( $username, $i );
|
2011-04-17 03:04:23 +04:00
|
|
|
}
|
2011-07-29 23:36:03 +04:00
|
|
|
echo json_encode( array( "status" => "success", "data" => array( "username" => $username, "groups" => implode( ", ", OC_Group::getUserGroups( $username )))));
|
2011-04-17 01:26:55 +04:00
|
|
|
}
|
|
|
|
else{
|
|
|
|
echo json_encode( array( "status" => "error", "data" => array( "message" => "Unable to add user" )));
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|