Added cancel edition hotkey
[fa-stable.git] / admin / db / maintenance_db.inc
index 97eea2a8670811bcebedc209c975e935e909859d..44ba4bb95f458bda1dbe0ec91794e17728e62bf0 100644 (file)
@@ -1,4 +1,14 @@
 <?php
+/**********************************************************************
+    Copyright (C) FrontAccounting, LLC.
+       Released under the terms of the GNU General Public License,
+       GPL, as published by the Free Software Foundation, either version 
+       3 of the License, or (at your option) any later version.
+    This program is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
+    See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
+***********************************************************************/
 
 function write_config_db($new = false)
 {
@@ -114,13 +124,22 @@ function db_import($filename, $connection, $force=true)
                "insert" => 'data_queries', 
                "update" => 'data_queries', 
                "drop table if exists" => 'drop_queries');
-
+       $ignored_mysql_errors = array( //errors ignored in normal (non forced) mode
+               '1022', // duplicate key
+               '1050', // Table %s already exists
+               '1060', // duplicate column name
+               '1061', // duplicate key name
+               '1062', // duplicate key entry
+               '1091'  // can't drop key/column check if exists
+       );
        $data_queries = array();
        $drop_queries = array();
        $table_queries = array();
        $sql_errors = array();
 
        ini_set("max_execution_time", "180");
+       db_query("SET foreign_key_checks=0");
+
        // uncrompress gziped backup files
        if (strpos($filename, ".gzip") || strpos($filename, ".GZIP"))
                $lines = db_ungzip("lines", $filename);
@@ -161,13 +180,13 @@ function db_import($filename, $connection, $force=true)
                }
                
        }
-
-/*     {       // for debugging purposes
+/*
+       {       // for debugging purposes
        global $path_to_root;
-       $f = fopen($path_to_root.'/tmp/dbimport.txt', 'w');
+       $f = fopen($path_to_root.'/tmp/dbimport.txt', 'w+');
        fwrite($f, print_r($drop_queries,true) ."\n");
-       fwrite(print_r($table_queries,true) ."\n");
-       fwrite(print_r($data_queries,true));
+       fwrite($f, print_r($table_queries,true) ."\n");
+       fwrite($f, print_r($data_queries,true));
        fclose($f);
        }
 */
@@ -178,7 +197,8 @@ function db_import($filename, $connection, $force=true)
                {
                        if (!db_query($drop_query[0]))
                        {
-                               $sql_errors[] = array(db_error_msg($db), $drop_query[1]);
+                               if (!in_array(db_error_no(), $ignored_mysql_errors))
+                                       $sql_errors[] = array(db_error_msg($db), $drop_query[1]);
                        }
                }
        }
@@ -189,8 +209,10 @@ function db_import($filename, $connection, $force=true)
                foreach($table_queries as $table_query)
                {
                        if (!db_query($table_query[0]))
-                       {
-                               $sql_errors[] = array(db_error_msg($db), $table_query[1]);
+                       {       
+                               if (!in_array(db_error_no(), $ignored_mysql_errors) || !$force) {
+                                       $sql_errors[] = array(db_error_msg($db), $table_query[1]);
+                               }
                        }
                }
        }
@@ -202,12 +224,14 @@ function db_import($filename, $connection, $force=true)
                {
                        if (!db_query($data_query[0]))
                        {
-                               $sql_errors[] = array(db_error_msg($db), $data_query[1]);
-                               break;
+                               if (!in_array(db_error_no(),$ignored_mysql_errors) || !$force)
+                                       $sql_errors[] = array(db_error_msg($db), $data_query[1]);
                        }
                }
        }
        
+       db_query("SET foreign_key_checks=1");
+
        if (count($sql_errors)) {
                // display first failure message; the rest are probably derivative 
                $err = $sql_errors[0];
@@ -621,5 +645,21 @@ function save_to_file($backupfile, $zip, $fileData)
     }
 }
 
-
+function create_comp_dirs($comp_path, $comp_subdirs)
+{
+               $index = "<?php\nheader(\"Location: ../index.php\");\n?>";
+           $cdir = $comp_path;
+           @mkdir($cdir);
+               $f = @fopen("$cdir/index.php", "wb");
+               @fwrite($f, $index);
+               @fclose($f);
+
+           foreach($comp_subdirs as $dir)
+           {
+                       @mkdir($cdir.'/'.$dir);
+                       $f = @fopen("$cdir/$dir/index.php", "wb");
+                       @fwrite($f, $index);
+                       @fclose($f);
+           }
+}
 ?>
\ No newline at end of file