Update settings/ajax/createuser.php

respect coding style
This commit is contained in:
Thomas Müller 2012-09-04 12:34:52 +03:00
parent 69240afd7a
commit e10f46d978
1 changed files with 14 additions and 11 deletions

View File

@ -1,32 +1,32 @@
<?php
// Init owncloud
require_once('../../lib/base.php');
require_once '../../lib/base.php';
OCP\JSON::callCheck();
// Check if we are a user
if( !OC_User::isLoggedIn() || (!OC_Group::inGroup( OC_User::getUser(), 'admin' ) && !OC_SubAdmin::isSubAdmin(OC_User::getUser()))){
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" )));
exit();
}
OCP\JSON::callCheck();
$isadmin = OC_Group::inGroup(OC_User::getUser(),'admin')?true:false;
$isadmin = OC_Group::inGroup(OC_User::getUser(), 'admin')?true:false;
if($isadmin){
if($isadmin) {
$groups = array();
if( isset( $_POST["groups"] )){
if( isset( $_POST["groups"] )) {
$groups = $_POST["groups"];
}
}else{
if(isset( $_POST["groups"] )){
if(isset( $_POST["groups"] )) {
$groups = array();
foreach($_POST["groups"] as $group){
if(OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)){
if(OC_SubAdmin::isGroupAccessible(OC_User::getUser(), $group)) {
$groups[] = $group;
}
}
if(count($groups) == 0){
if(count($groups) == 0) {
$groups = OC_SubAdmin::getSubAdminsGroups(OC_User::getUser());
}
}else{
@ -37,7 +37,7 @@ $username = $_POST["username"];
$password = $_POST["password"];
// Does the group exist?
if( in_array( $username, OC_User::getUsers())){
if( in_array( $username, OC_User::getUsers())) {
OC_JSON::error(array("data" => array( "message" => "User already exists" )));
exit();
}
@ -46,12 +46,15 @@ if( in_array( $username, OC_User::getUsers())){
try {
OC_User::createUser($username, $password);
foreach( $groups as $i ){
if(!OC_Group::groupExists($i)){
if(!OC_Group::groupExists($i)) {
OC_Group::createGroup($i);
}
OC_Group::addToGroup( $username, $i );
}
OC_JSON::success(array("data" => array( "username" => $username, "groups" => implode( ", ", OC_Group::getUserGroups( $username )))));
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())));
}