nextcloud/settings/ajax/createuser.php

60 lines
1.6 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();
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 (!empty($_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();
if (!empty($_POST["groups"])) {
foreach ($_POST["groups"] as $group) {
if (OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)) {
$groups[] = $group;
}
2012-07-15 18:31:28 +04:00
}
}
if (empty($groups)) {
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
}
2014-02-18 17:34:08 +04:00
$userManager = \OC_User::getManager();
$user = $userManager->get($username);
2014-02-20 14:01:30 +04:00
OCP\JSON::success(array("data" =>
array(
// returns whether the home already existed
"homeExists" => $homeExists,
"username" => $username,
2014-02-18 17:34:08 +04:00
"groups" => OC_Group::getUserGroups( $username ),
'storageLocation' => $user->getHome())));
} catch (Exception $exception) {
2014-02-20 14:01:30 +04:00
OCP\JSON::error(array("data" => array( "message" => $exception->getMessage())));
2011-04-17 01:26:55 +04:00
}