nextcloud/settings/ajax/createuser.php

61 lines
1.6 KiB
PHP
Raw Normal View History

2011-04-17 01:26:55 +04:00
<?php
// Init owncloud
require_once '../../lib/base.php';
2012-07-20 22:39:20 +04:00
OCP\JSON::callCheck();
2011-04-17 01:26:55 +04:00
// Check if we are a user
if( !OC_User::isLoggedIn() || (!OC_Group::inGroup( OC_User::getUser(), 'admin' ) && !OC_SubAdmin::isSubAdmin(OC_User::getUser()))) {
OC_JSON::error(array("data" => array( "message" => "Authentication error" )));
2011-04-17 01:26:55 +04:00
exit();
}
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
2011-04-17 01:26:55 +04:00
$isadmin = OC_Group::inGroup(OC_User::getUser(), 'admin')?true:false;
2011-04-17 01:26:55 +04:00
if($isadmin) {
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;
}
}
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"];
2011-04-18 14:39:28 +04:00
// Does the group exist?
if( in_array( $username, OC_User::getUsers())) {
OC_JSON::error(array("data" => array( "message" => "User already exists" )));
2011-04-18 14:39:28 +04:00
exit();
}
2011-04-17 01:26:55 +04:00
// Return Success story
try {
OC_User::createUser($username, $password);
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(
"username" => $username,
"groups" => implode( ", ", OC_Group::getUserGroups( $username )))));
} catch (Exception $exception) {
OC_JSON::error(array("data" => array( "message" => $exception->getMessage())));
2011-04-17 01:26:55 +04:00
}