From ecf891ab69b38ee1bcd0533d9a4f30d218c7e99c Mon Sep 17 00:00:00 2001
From: nveid <nveid@ispconfig3>
Date: Mon, 21 Nov 2011 01:04:18 -0500
Subject: [PATCH] Added remoting API call: client_get_all   @param  -> session_id   @return -> Array of all Client IDs on server

---
 interface/lib/classes/remoting.inc.php |   39 +++++++++++++++++++++++++++++++++++----
 1 files changed, 35 insertions(+), 4 deletions(-)

diff --git a/interface/lib/classes/remoting.inc.php b/interface/lib/classes/remoting.inc.php
index 0dfed21..8d043a4 100644
--- a/interface/lib/classes/remoting.inc.php
+++ b/interface/lib/classes/remoting.inc.php
@@ -1353,6 +1353,12 @@
 		if($params['system_user'] == '') $params['system_user'] = '-';
 		if($params['system_group'] == '') $params['system_group'] = '-';
 		
+		//* Set a few defaults for nginx servers
+		if($params['pm_max_children'] == '') $params['pm_max_children'] = 1;
+		if($params['pm_start_servers'] == '') $params['pm_start_servers'] = 1;
+		if($params['pm_min_spare_servers'] == '') $params['pm_min_spare_servers'] = 1;
+		if($params['pm_max_spare_servers'] == '') $params['pm_max_spare_servers'] = 1;
+		
 		$domain_id = $this->insertQuery('../sites/form/web_domain.tform.php',$client_id,$params, 'sites:web_domain:on_after_insert');
 		if ($readonly === true)
 			$app->db->query("UPDATE web_domain SET `sys_userid` = '1' WHERE domain_id = ".$domain_id);
@@ -2319,6 +2325,7 @@
 	
 	protected function checkPerm($session_id, $function_name)
     {
+        global $app;
 	$dobre=array();
 	$session = $this->getSession($session_id);
         if(!$session){
@@ -2326,7 +2333,11 @@
         }
 		
 		$dobre= str_replace(';',',',$session['remote_functions']);
-		return in_array($function_name, explode(',', $dobre) );
+		$check = in_array($function_name, explode(',', $dobre) );
+		if(!$check) {
+		  $app->log("REMOTE-LIB DENY: ".$session_id ." /". $function_name, LOGLEVEL_WARN);
+		}
+		return $check;
 	}
 	
 	
@@ -2439,6 +2450,26 @@
 			return false;
         }
     }
+      /**
+       * Get All client_id's from database
+       * @param int	session_id
+       * @return Array of all client_id's
+       */
+	public function client_get_all($session_id) {
+	  global $app;
+	  if(!$this->checkPerm($session_id, 'client_get_all')) {
+	    $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
+	    return false;
+	  }
+	  $result = $app->db->queryAllRecords("SELECT client_id FROM client WHERE 1");
+	  if(!$result) {
+	    return false;
+	  }
+	  foreach( $result as $record) {
+	    $rarrary[] = $record['client_id'];
+	  }
+	  return $rarrary;
+	}
 
     /**
      * Changes client password
@@ -2521,8 +2552,8 @@
             return false;
 		}
         $client_id = intval($client_id);
-        $sql = "SELECT database_id, database_name, database_user, database_password FROM web_database WHERE sys_userid  = $client_id ";
-        $all = $app->db->queryAllRecords($sql);
+        $sql = "SELECT d.database_id, d.database_name, d.database_user, d.database_password FROM web_database d INNER JOIN sys_user s on(d.sys_groupid = s.default_group) WHERE client_id = $client_id";
+		$all = $app->db->queryAllRecords($sql);
         return $all;
 	}
 	
@@ -2948,4 +2979,4 @@
 	
 	
 }
-?>
\ No newline at end of file
+?>

--
Gitblit v1.9.1