nextcloud/settings/ajax/createuser.php

55 lines
1.4 KiB
PHP
Raw Normal View History

2011-04-17 01:26:55 +04:00
<?php
2012-07-20 22:39:20 +04:00
OCP\JSON::callCheck();
2012-10-15 18:41:42 +04:00
OC_JSON::checkSubAdminUser();
2011-04-17 01:26:55 +04:00
if(OC_User::isAdminUser(OC_User::getUser())) {
2012-07-15 18:31:28 +04:00
$groups = array();
if( isset( $_POST["groups"] )) {
2012-07-15 18:31:28 +04:00
$groups = $_POST["groups"];
}
}else{
if(isset( $_POST["groups"] )) {
2012-07-15 18:31:28 +04:00
$groups = array();
2012-09-07 17:22:01 +04:00
foreach($_POST["groups"] as $group) {
if(OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)) {
2012-07-15 18:31:28 +04:00
$groups[] = $group;
}
}
2013-04-17 17:32:03 +04:00
if(count($groups) === 0) {
2012-07-20 17:04:50 +04:00
$groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser());
2012-07-15 18:31:28 +04:00
}
}else{
2012-07-20 17:04:50 +04:00
$groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser());
2012-07-15 18:31:28 +04:00
}
2011-04-17 01:26:55 +04:00
}
$username = $_POST["username"];
$password = $_POST["password"];
// Return Success story
try {
// check whether the user's files home exists
$userDirectory = OC_User::getHome($username) . '/files/';
$homeExists = file_exists($userDirectory);
if (!OC_User::createUser($username, $password)) {
OC_JSON::error(array('data' => array( 'message' => 'User creation failed for '.$username )));
exit();
}
2012-09-07 17:22:01 +04:00
foreach( $groups as $i ) {
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
}
OC_JSON::success(array("data" =>
array(
// returns whether the home already existed
"homeExists" => $homeExists,
"username" => $username,
"groups" => OC_Group::getUserGroups( $username ))));
} catch (Exception $exception) {
OC_JSON::error(array("data" => array( "message" => $exception->getMessage())));
2011-04-17 01:26:55 +04:00
}