tbrehm
2011-11-21 edf806b98d675a2037b019644aff76b7e8b7738c
interface/lib/classes/remoting.inc.php
@@ -1342,6 +1342,23 @@
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      if(!isset($params['client_group_id']) or (isset($params['client_group_id']) && empty($params['client_group_id']))) {
         $rec = $app->db->queryOneRecord("SELECT groupid FROM sys_group WHERE client_id = ".intval($client_id));
         $params['client_group_id'] = $rec['groupid'];
      }
      //* Set a few params to "not empty" values which get overwritten by the sites_web_domain_plugin
      if($params['document_root'] == '') $params['document_root'] = '-';
      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);
@@ -1355,6 +1372,13 @@
         $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
         return false;
      }
      //* 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;
      $affected_rows = $this->updateQuery('../sites/form/web_domain.tform.php',$client_id,$primary_id,$params);
      return $affected_rows;
   }
@@ -2132,23 +2156,28 @@
      
      //* Get the SQL query
      $sql = $app->remoting_lib->getSQL($params,'INSERT',0);
      $app->db->query($sql);
      if($app->remoting_lib->errorMessage != '') {
         $this->server->fault('data_processing_error', $app->remoting_lib->errorMessage);
         return false;
      }
      
      $app->db->query($sql);
      $insert_id = $app->db->insertID();
      $this->id = $insert_id;
      $this->dataRecord = $params;
      
      $app->plugin->raiseEvent('client:client:on_after_insert',$this);
      
      /*
      if($app->db->errorMessage != '') {
         $this->server->fault('database_error', $app->db->errorMessage . ' '.$sql);
         return false;
      }
      */
      
      $insert_id = $app->db->insertID();
      //$app->uses('tform');
      //* Save changes to Datalog
      if($app->remoting_lib->formDef["db_history"] == 'yes') {
@@ -2303,6 +2332,7 @@
   
   protected function checkPerm($session_id, $function_name)
    {
        global $app;
   $dobre=array();
   $session = $this->getSession($session_id);
        if(!$session){
@@ -2310,7 +2340,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;
   }
   
   
@@ -2423,6 +2457,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
@@ -2500,13 +2554,13 @@
   public function sites_database_get_all_by_user($session_id, $client_id)
    {
        global $app;
      if(!$this->checkPerm($session_id, 'sites_database_get_all_by_user')) {
      if(!$this->checkPerm($session_id, 'sites_database_get')) {
           $this->server->fault('permission_denied', 'You do not have the permissions to access this function.');
            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;
   }
   
@@ -2932,4 +2986,4 @@
   
   
}
?>
?>