nextcloud/settings/ajax/createuser.php

41 lines
1.0 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
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();
}
$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())){
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);
2011-04-17 03:04:23 +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
}
?>