From 07ba8004fe2d56f18ee72b7dfc84d4a500ff2e02 Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Tue, 26 Jan 2010 15:03:25 +0000
Subject: [PATCH] Fixed: FS#1012 - Delete all records (domains, ftp users,
 etc.) of a client when the client gets deleted.

---
 interface/lib/classes/db_mysql.inc.php        | 15 ++-
 interface/web/client/client_del.php           | 93 ++++++++++++++++++-
 .../web/client/lib/lang/en_client_del.lng     |  6 ++
 interface/web/client/templates/client_del.htm | 25 +++++
 4 files changed, 128 insertions(+), 11 deletions(-)
 create mode 100644 interface/web/client/lib/lang/en_client_del.lng
 create mode 100644 interface/web/client/templates/client_del.htm

diff --git a/interface/lib/classes/db_mysql.inc.php b/interface/lib/classes/db_mysql.inc.php
index 9c4871f61d..a358598aa0 100644
--- a/interface/lib/classes/db_mysql.inc.php
+++ b/interface/lib/classes/db_mysql.inc.php
@@ -482,16 +482,15 @@ class db {
        
        
     public function tableInfo($table_name) {
-        global $go_api,$go_info;
         //* Tabellenfelder einlesen ?
-        if($rows = $go_api->db->queryAllRecords("SHOW FIELDS FROM $table_name")){
+        if($rows = $this->queryAllRecords("SHOW FIELDS FROM $table_name")){
         foreach($rows as $row) {
-            $name    = $row[0];
-            $default = $row[4];
-            $key     = $row[3];
-            $extra   = $row[5];
-            $isnull  = $row[2];
-            $type    = $row[1];
+            $name    = $row['Field'];
+            $default = $row['Default'];
+            $key     = $row['Key'];
+            $extra   = $row['Extra'];
+            $isnull  = $row['Null'];
+            $type    = $row['Type'];
         
             $column = array('name' => $name, 'defaultValue' => $default);
             //$column["type"] = $type;
diff --git a/interface/web/client/client_del.php b/interface/web/client/client_del.php
index 3a04f46236..b125ba4880 100644
--- a/interface/web/client/client_del.php
+++ b/interface/web/client/client_del.php
@@ -49,14 +49,71 @@ $app->uses('tpl,tform');
 $app->load('tform_actions');
 
 class page_action extends tform_actions {
+	
+	function onDelete() {
+		global $app, $conf,$list_def_file,$tform_def_file;
+		
+		if($_POST["confirm"] == 'yes') {
+			parent::onDelete();
+		} else {
+		
+		$app->uses('tpl');
+		$app->tpl->newTemplate("form.tpl.htm");
+		$app->tpl->setInclude('content_tpl', 'templates/client_del.htm');
+		
+		include_once($list_def_file);
+
+        // Loading tform framework
+        if(!is_object($app->tform)) $app->uses('tform');
+
+        // Load table definition from file
+        $app->tform->loadFormDef($tform_def_file);
+		
+		$this->id = intval($_REQUEST["id"]);
+		
+		$this->dataRecord = $app->tform->getDataRecord($this->id);
+		$client_id = intval($this->dataRecord['client_id']);
+		//$parent_client_id = intval($this->dataRecord['parent_client_id']);
+		//$parent_user = $app->db->queryOneRecord("SELECT userid FROM sys_user WHERE client_id = $parent_client_id");
+		$client_group = $app->db->queryOneRecord("SELECT groupid FROM sys_group WHERE client_id = $client_id");
+		
+		// Get all records (sub-clients, mail, web, etc....)  of this client.
+		$tables = 'client,dns_rr,dns_soa,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_domain,web_traffic';
+		$tables_array = explode(',',$tables);
+		$client_group_id = intval($client_group['groupid']);
+		$table_list = array();
+		if($client_group_id > 1) {
+			foreach($tables_array as $table) {
+				if($table != '') {
+					$records = $app->db->queryAllRecords("SELECT * FROM $table WHERE sys_groupid = ".$client_group_id);
+					$number = count($records);
+					if($number > 0) $table_list[] = array('table' => $table."(".$number.")");
+				}
+			}
+		}
+		
+		$app->tpl->setVar('id',$this->id);
+		$app->tpl->setLoop('records', $table_list);
+		
+		//* load language file 
+		$lng_file = 'lib/lang/'.$_SESSION['s']['language'].'_client_del.lng';
+		include($lng_file);
+		$app->tpl->setVar($wb);
+		
+		$app->tpl_defaults();
+		$app->tpl->pparse();
+		}
+	}
+	
+	
+	
+	
 	function onAfterDelete() {
 		global $app, $conf;
 		
 		$client_id = intval($this->dataRecord['client_id']);
 		
-		if($client_id > 0) {
-			// TODO: Delete all records (sub-clients, mail, web, etc....)  of this client.
-			
+		if($client_id > 0) {			
 			// remove the group of the client from the resellers group
 			$parent_client_id = intval($this->dataRecord['parent_client_id']);
 			$parent_user = $app->db->queryOneRecord("SELECT userid FROM sys_user WHERE client_id = $parent_client_id");
@@ -68,6 +125,36 @@ class page_action extends tform_actions {
 			
 			// delete the sys user(s) of the client
 			$app->db->query("DELETE FROM sys_user WHERE client_id = $client_id");
+			
+			// Delete all records (sub-clients, mail, web, etc....)  of this client.
+			$tables = 'client,dns_rr,dns_soa,ftp_user,mail_access,mail_content_filter,mail_domain,mail_forwarding,mail_get,mail_user,mail_user_filter,shell_user,spamfilter_users,support_message,web_database,web_domain,web_traffic';
+			$tables_array = explode(',',$tables);
+			$client_group_id = intval($client_group['groupid']);
+			if($client_group_id > 1) {
+				foreach($tables_array as $table) {
+					if($table != '') {
+						$records = $app->db->queryAllRecords("SELECT * FROM $table WHERE sys_groupid = ".$client_group_id);
+						// find the primary ID of the table
+						$table_info = $app->db->tableInfo($table);
+						$index_field = '';
+						foreach($table_info as $tmp) {
+							if($tmp['option'] == 'primary') $index_field = $tmp['name'];
+						}
+						// Delete the records
+						if($index_field != '') {
+							if(is_array($records)) {
+								foreach($records as $rec) {
+									$app->db->datalogDelete($table, $index_field, $rec[$index_field]);
+								}
+							}
+						}
+						
+					}
+				}
+			}
+			
+			
+			
 		}
 		
 	}
diff --git a/interface/web/client/lib/lang/en_client_del.lng b/interface/web/client/lib/lang/en_client_del.lng
new file mode 100644
index 0000000000..4d16af6afc
--- /dev/null
+++ b/interface/web/client/lib/lang/en_client_del.lng
@@ -0,0 +1,6 @@
+<?php
+$wb["confirm_action_txt"] = 'Confirm action';
+$wb["delete_explanation"] = 'This action will delete the following number of records associated with this client';
+$wb["btn_save_txt"] = 'Delete the client';
+$wb["btn_cancel_txt"] = 'Cancel without deleting the client';
+?>
diff --git a/interface/web/client/templates/client_del.htm b/interface/web/client/templates/client_del.htm
new file mode 100644
index 0000000000..81de94afa7
--- /dev/null
+++ b/interface/web/client/templates/client_del.htm
@@ -0,0 +1,25 @@
+<h2><tmpl_var name="list_head_txt"></h2>
+<p><tmpl_var name="list_desc_txt"></p>
+
+<div class="panel panel_client_del">
+  
+  <div class="pnl_formsarea">
+  
+    <div id="OKMsg">
+	<tmpl_var name="delete_explanation">:<br /><br />
+    <tmpl_loop name="records">
+	<tmpl_var name="table">, 
+	</tmpl_loop>
+	</div>
+	
+	<input type="checkbox" name="confirm" value="yes" /> <b><tmpl_var name="confirm_action_txt"></b>
+	
+    <input type="hidden" name="id" value="{tmpl_var name='id'}">
+
+    <div class="buttonHolder buttons">
+      <button class="positive iconstxt icoPositive" type="button" value="{tmpl_var name='btn_save_txt'}" onClick="submitForm('pageForm','client/client_del.php');"><span>{tmpl_var name='btn_save_txt'}</span></button>
+      <button class="negative iconstxt icoNegative" type="button" value="{tmpl_var name='btn_cancel_txt'}" onClick="loadContent('client/client_list.php');"><span>{tmpl_var name='btn_cancel_txt'}</span></button>
+    </div>
+  </div>
+  
+</div>
-- 
GitLab