]> source.dussan.org Git - nextcloud-server.git/commitdiff
Update settings/ajax/createuser.php
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 09:34:52 +0000 (12:34 +0300)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 09:34:52 +0000 (12:34 +0300)
respect coding style

settings/ajax/createuser.php

index eaca5b50745fe47fcfbeffdff577cf0e7a17b04b..22320b870e8d0c6b98df2cbe6741620caaf1581d 100644 (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())));
 }