Major change in the installation of modules to also accept an SQL-file for upload.
[fa-stable.git] / admin / db / maintenance_db.inc
1 <?php
2
3 function write_config_db($new = false)
4 {
5         global $path_to_root, $def_coy, $db_connections, $tb_pref_counter;
6         include_once($path_to_root . "/config_db.php");
7
8         if ($new)
9                 $tb_pref_counter++;
10         $n = count($db_connections);
11         $msg = "<?php\n\n";
12         $msg .= "/*Connection Information for the database\n";
13         $msg .= "- \$def_coy is the default company that is pre-selected on login\n\n";
14         $msg .= "- host is the computer ip address or name where the database is the default is localhost assuming that the web server is also the sql server\n\n";
15         $msg .= "- user is the user name under which the database should be accessed - need to change to the mysql (or other DB) user set up for purpose\n";
16         $msg .= "  NB it is not secure to use root as the user with no password - a user with appropriate privileges must be set up\n\n";
17         $msg .= "- password is the password the user of the database requires to be sent to authorise the above database user\n\n";
18         $msg .= "- DatabaseName is the name of the database as defined in the RDMS being used. Typically RDMS allow many databases to be maintained under the same server.\n";
19         $msg .= "  The scripts for MySQL provided use the name logicworks */\n\n\n";
20
21         $msg .= "\$def_coy = " . $def_coy . ";\n\n";  
22         $msg .= "\$tb_pref_counter = " . $tb_pref_counter . ";\n\n";  
23         $msg .= "\$db_connections = array (\n";
24         $msg .= "\t0 => ";
25         for ($i = 0; $i < $n; $i++)
26         {
27                 if ($i > 0)
28                         $msg .= "\tarray ";
29                 else
30                         $msg .= "array ";
31                 $msg .= "('name' => '" . $db_connections[$i]['name'] . "',\n";
32                 $msg .= "\t\t'host' => '" . $db_connections[$i]['host'] . "',\n";
33                 $msg .= "\t\t'dbuser' => '" . $db_connections[$i]['dbuser'] . "',\n";
34                 $msg .= "\t\t'dbpassword' => '" . $db_connections[$i]['dbpassword'] . "',\n";
35                 $msg .= "\t\t'dbname' => '" . $db_connections[$i]['dbname'] . "',\n";
36                 $msg .= "\t\t'tbpref' => '" . $db_connections[$i]['tbpref'] . "')";
37                 if ($i != $n - 1)
38                         $msg .= ",";
39                 $msg .= "\n\n";
40         }
41         $msg .= "\t);\n?>";
42
43         $filename = $path_to_root . "/config_db.php";
44         // Check if the file exists and is writable first.
45         if (file_exists($filename) && is_writable($filename)) 
46         {
47                 if (!$zp = fopen($filename, 'w')) 
48                 {
49                         return -1;
50                 } 
51                 else 
52                 {
53                         if (!fwrite($zp, $msg)) 
54                         {
55                                 fclose($zp);
56                                 return -2;
57                         }
58                         // Close file
59                         fclose($zp);
60                 }
61         } 
62         else 
63         {
64                 return -3;
65         }
66         return 0;
67 }
68
69 function db_create_db($connection)
70 {
71         $db = mysql_connect($connection["host"] ,
72                 $connection["dbuser"], $connection["dbpassword"]);
73         if (!mysql_select_db($connection["dbname"], $db))
74         {
75                 $sql = "CREATE DATABASE " . $connection["dbname"] . "";
76                 if (!mysql_query($sql))
77                         return 0;
78                 mysql_select_db($connection["dbname"], $db);    
79         }               
80         return $db;
81 }
82
83 function db_drop_db($connection)
84 {
85         if ($connection["tbpref"] == "")
86         {
87                 $sql = "DROP DATABASE " . $connection["dbname"] . "";
88                 return mysql_query($sql);
89         }
90         else
91         {
92         $res = db_query("show table status");
93         $all_tables = array();
94         while($row = db_fetch($res)) 
95                 $all_tables[] = $row;
96         // get table structures
97                 foreach ($all_tables as $table) 
98                 {
99                         if (strpos($table['Name'], $connection["tbpref"]) !== false)
100                                 db_query("DROP TABLE `".$table['Name'] . "`");
101                 }
102                 //deleting the tables, how??
103                 return true;
104         }
105 }       
106
107 function db_import($filename, $connection) 
108 {
109         $data_queries = array();
110         $drop_queries = array();
111         $table_queries = array();
112
113         // uncrompress gziped backup files
114         if (strpos($filename, ".gzip") || strpos($filename, ".GZIP"))
115                 $lines = db_ungzip("lines", $filename);
116         elseif (strpos($filename, ".zip") || strpos($filename, ".ZIP"))
117                 $lines = db_unzip("lines", $filename);
118         else 
119                 $lines = file("". $filename);
120
121         // divide insert and create sql queries
122         // $table is set to TRUE if the next line belongs to a create sql query
123         $table = false;
124         foreach($lines as $line)
125         {
126                 $line = trim($line);
127
128                 $line = str_replace("0_", $connection["tbpref"], $line);
129                 $line = str_replace("Y_", "0_", $line);
130                 // the last line did not belong to a 'create' sql query
131                 if (!$table) 
132                 {
133
134                         // this line does not, too
135                         if (strtolower(substr($line,0,6)) == "insert") 
136                         {
137                                 $data_queries[] = substr($line, 0, strlen($line) - 1);
138
139                         // this line does not, too
140                         } 
141                         elseif (strtolower(substr($line, 0, 20)) == "drop table if exists") 
142                         {
143                                 $drop_queries[] = substr($line, 0, strlen($line) - 1);
144
145                         // this line does!
146                         } 
147                         elseif (strtolower(substr($line, 0, 6)) == "create") 
148                         {
149                                 $table = true;
150                                 $table_queries[] = $line . "\n";
151                         }
152
153                 // the current line belongs to a create sql query
154                 } 
155                 else 
156                 {
157
158                         // create sql query ending in this line
159                         if (strtolower(substr($line, 0, 1)) == ")") 
160                                 $table = false;
161                         $table_queries[count($table_queries) - 1] .= $line . "\n";
162                 }
163         }
164
165         $sql_error = false;
166
167         // execute drop tables if exists queries
168         if (is_array($drop_queries)) 
169         {
170                 foreach($drop_queries as $drop_query) 
171                 {
172                         $sql_error = false;
173                         if (!db_query($drop_query)) 
174                         {
175                                 $sql_error = true;
176                                 //if ($CONF['import_error']) echo nl2br($drop_query)."\n<div class=\"bold_left\">".mysql_error()."</div><br>\n";
177                         }
178                 }
179         }
180
181         // execute create tables queries
182         if (is_array($table_queries)) 
183         {
184                 foreach($table_queries as $table_query) 
185                 {
186                         $sql_error = false;
187                         if (!db_query($table_query)) 
188                         {
189                                 $sql_error = true;
190                                 //if ($CONF['import_error']) echo nl2br($table_query)."\n<div class=\"bold_left\">".mysql_error()."</div><br>\n";
191                         }
192                 }
193         }
194
195         // execute insert data queries
196         if (is_array($data_queries)) 
197         {
198                 foreach($data_queries as $data_query) 
199                 {
200                         $sql_error = false;
201                         if (!db_query($data_query))
202                         {
203                                 //if ($CONF['import_error']) echo $data_query."\n<div class=\"bold_left\">".mysql_error()."</div><br>\n";
204                                 $sql_error = true;
205                         }
206                 }
207         }
208
209         // show number successful executed querys or if an error did occur
210         if ($sql_error == 1) 
211                 return false;
212                 //echo "<div class=\"red\">".IM_ERROR.".</div>\n";
213         else 
214                 return true;
215                 //echo "<div class=\"green\">".IM_SUCCESS." ".count($table_queries)." ".IM_TABLES." ".count($data_queries)." ".IM_ROWS." (".$import_file.")</div>\n";
216         //$shell_command = C_MYSQL_PATH . " -h $host -u $user -p{$password} $dbname < $filename";
217         //shell_exec($shell_command);
218 }
219
220 // returns the content of the gziped $path backup file. use of $mode see below
221 function db_ungzip($mode, $path) 
222 {
223     $file_data = gzfile($path);
224     // returns one string or an array of lines
225     if ($mode != "lines") 
226         return implode("",$file_data); 
227     else 
228         return $file_data;
229 }
230
231 // returns the content of the ziped $path backup file. use of $mode see below
232 function db_unzip($mode, $path) 
233 {
234     $all = false;
235     $all = implode("", file($path));
236
237     // convert path to name of ziped file
238     $filename = ereg_replace(".*/", "", $path);
239     $filename = substr($filename, 0, strlen($filename) - 4);
240         
241     // compare filname in zip and filename from $_GET
242     if (substr($all, 30, strlen($filename)) != $filename) 
243     {
244                 return '';
245         // exit if names differ
246         //echo F_WRONG_FILE.".";
247         //exit;
248     } 
249     else 
250     {
251         // get the suffix of the filename in hex
252         $crc_bugfix = substr(substr($filename, 0, strlen($filename) - 4), strlen($filename) - 12 - 4);
253         $suffix = false;
254
255         // convert hex to ascii
256         for ($i=0; $i < 12; ) 
257                 $suffix .= chr($crc_bugfix[$i++] . $crc_bugfix[$i++] . $crc_bugfix[$i++]);
258
259         // remove central directory information (we have always just one ziped file)
260         $comp = substr($all, -(strlen($all) - 30 - strlen($filename)));
261         $comp = substr($comp, 0, (strlen($comp) - 80 - strlen($filename)));
262
263         // fix the crc bugfix (see function save_to_file)
264         $comp = "x\9c" . $comp . $suffix;
265         $file_data = gzuncompress($comp);
266     }
267
268     // returns one string or an array of lines
269     if ($mode != "lines") 
270         return $file_data; 
271     else 
272         return explode("\n", $file_data);
273 }
274
275 // generates a dump of $db database
276 // $drop and $zip tell if to include the drop table statement or dry to pack
277 function db_export($conn, $filename, $zip='no', $comment='') 
278 {
279
280         global $app_title, $version, $power_url, $path_to_root;
281     
282     $error = false;
283     
284     // set max string size before writing to file
285     $max_size = 1048576 * 2; // 2 MB
286     // changes max size if value can be retrieved
287     if (ini_get("memory_limit")) 
288         $max_size = 900000 * ini_get("memory_limit");
289     
290     // set backupfile name
291     if ($zip == "gzip") 
292         $backupfile = $filename . ".gz";
293     elseif ($zip == "zip") 
294         $backupfile = $filename . ".zip";
295     else 
296         $backupfile = $filename;
297     $company = get_company_pref('coy_name');                
298     //create comment
299     $out="# MySQL dump of database '".$conn["dbname"]."' on host '".$conn["host"]."'\n";
300     $out.="# Backup Date and Time: ".date("Y-m-d H:i")."\n";
301     $out.="# Built by " . $app_title . " " . $version ."\n";
302     $out.="# ".$power_url."\n";
303     $out.="# Company: ".$company."\n";
304     $out.="# User: ".$_SESSION["wa_current_user"]->name."\n\n";
305
306         // write users comment
307         if ($comment) 
308         {
309                 $out .= "# Comment:\n";
310                 $comment=preg_replace("'\n'","\n# ","# ".$comment);
311                 //$comment=str_replace("\n", "\n# ", $comment);
312                 foreach(explode("\n",$comment) as $line) 
313                         $out .= $line."\n";
314                 $out.="\n";
315         }
316         
317     //$out.="use ".$db.";\n"; we don't use this option.
318
319     // get auto_increment values and names of all tables
320     $res = db_query("show table status");
321     $all_tables = array();
322     while($row = db_fetch($res)) 
323     {
324                 if ($conn["tbpref"] == "" || strpos($row['Name'], $conn["tbpref"]) !== false)
325                 $all_tables[] = $row;
326     }   
327         // get table structures
328         foreach ($all_tables as $table) 
329         {
330                 $res1 = db_query("SHOW CREATE TABLE `" . $table['Name'] . "`");
331                 $tmp = db_fetch($res1);
332                 $table_sql[$table['Name']] = $tmp["Create Table"];
333         }
334
335         // find foreign keys
336         $fks = array();
337         if (isset($table_sql))
338         {
339                 foreach($table_sql as $tablenme=>$table) 
340                 {
341                         $tmp_table=$table;
342                         // save all tables, needed for creating this table in $fks
343                         while (($ref_pos = strpos($tmp_table, " REFERENCES ")) > 0) 
344                         {
345                                 $tmp_table = substr($tmp_table, $ref_pos + 12);
346                                 $ref_pos = strpos($tmp_table, "(");
347                                 $fks[$tablenme][] = substr($tmp_table, 0, $ref_pos);
348                         }
349                 }
350         }
351         // order $all_tables
352         $all_tables = order_sql_tables($all_tables, $fks);
353
354         // as long as no error occurred
355         if (!$error) 
356         {
357                 //while($row=@mysql_fetch_array($res)) 
358                 foreach ($all_tables as $row) 
359                 {
360                         $tablename = $row['Name'];
361                         $auto_incr[$tablename] = $row['Auto_increment'];
362
363                         $out.="\n\n";
364                         // export tables
365                         $out.="### Structure of table `".$tablename."` ###\n\n";
366
367                         $out.="DROP TABLE IF EXISTS `".$tablename."`;\n\n";
368                         $out.=$table_sql[$tablename];
369
370                         // add auto_increment value
371                         if ($auto_incr[$tablename]) 
372                                 $out.=" AUTO_INCREMENT=".$auto_incr[$tablename];
373                         $out.=" ;";
374                         $out.="\n\n\n";
375
376                         // export data
377                         if (!$error) 
378                         {
379                                 $out.="### Data of table `".$tablename."` ###\n\n";
380
381                                 // check if field types are NULL or NOT NULL
382                                 $res3 = db_query("SHOW COLUMNS FROM `" . $tablename . "`");
383
384                                 $field_type = array();
385                                 for ($j = 0; $j < db_num_rows($res3); $j++)
386                                 {
387                                         $row3 = db_fetch($res3);
388                                         $field_type[] = $row3[2];
389                                 }
390
391                                 $res2 = db_query("SELECT * FROM `" . $tablename . "`");
392                                 for ($j = 0; $j < db_num_rows($res2); $j++)
393                                 {
394                                         $out .= "INSERT INTO `" . $tablename . "` VALUES (";
395                                         $row2 = db_fetch_row($res2);
396                                         // run through each field
397                                         for ($k = 0; $k < $nf = db_num_fields($res2); $k++) 
398                                         {
399                                                 // identify null values and save them as null instead of ''
400                                                 if ($field_type[$k] != "" && $row2[$k] == "") 
401                                                         $out .= "NULL"; 
402                                                 else 
403                                                         $out .= "'" . db_escape($row2[$k]) . "'";
404                                                 if ($k < ($nf - 1)) 
405                                                         $out .= ", ";
406                                         }
407                                         $out .= ");\n";
408
409                                         // if saving is successful, then empty $out, else set error flag
410                                         if (strlen($out) > $max_size && $zip != "zip") 
411                                         {
412                                                 if (save_to_file($backupfile, $zip, $out)) 
413                                                         $out = ""; 
414                                                 else 
415                                                         $error = true;
416                                         }
417                                 }
418
419                         // an error occurred! Try to delete file and return error status
420                         } 
421                         elseif ($error) 
422                         {
423                                 @unlink($path_to_root . BACKUP_PATH . $backupfile);
424                                 return false;
425                         }
426
427                         // if saving is successful, then empty $out, else set error flag
428                         if (strlen($out) > $max_size && $zip != "zip") 
429                         {
430                                 if (save_to_file($backupfile, $zip, $out)) 
431                                         $out= ""; 
432                                 else 
433                                         $error = true;
434                         }
435                 }
436
437         // an error occurred! Try to delete file and return error status
438         } 
439         else 
440         {
441                 @unlink($path_to_root . BACKUP_PATH . $backupfile);
442                 return false;
443         }
444
445         // if (mysql_error()) return "DB_ERROR";
446         //@mysql_close($con);
447
448         //if ($zip == "zip") 
449         //      $zip = $time;
450         if (save_to_file($backupfile, $zip, $out)) 
451         {
452                 $out = "";
453         } 
454         else 
455         {
456                 @unlink($path_to_root . BACKUP_PATH . $backupfile);
457                 return false;
458         }
459     return $backupfile;
460 }
461
462 // orders the tables in $tables according to the constraints in $fks
463 // $fks musst be filled like this: $fks[tablename][0]=needed_table1; $fks[tablename][1]=needed_table2; ...
464 function order_sql_tables($tables, $fks) 
465 {
466         // do not order if no contraints exist
467         if (!count($fks)) 
468                 return $tables;
469
470         // order
471         $new_tables = array();
472         $existing = array();
473         $modified = true;
474         while (count($tables) && $modified == true) 
475         {
476                 $modified = false;
477             foreach ($tables as $key=>$row) 
478             {
479                 // delete from $tables and add to $new_tables
480                 if (isset($fks[$row['Name']])) 
481                 {
482                         foreach($fks[$row['Name']] as $needed) 
483                         {
484                         // go to next table if not all needed tables exist in $existing
485                         if (!in_array($needed,$existing)) 
486                                 continue 2;
487                     }
488                 }
489             // delete from $tables and add to $new_tables
490                 $existing[] = $row['Name'];
491                         $new_tables[] = $row;
492             prev($tables);
493             unset($tables[$key]);
494             $modified = true;
495
496             }
497         }
498
499         if (count($tables)) 
500         {
501             // probably there are 'circles' in the constraints, bacause of that no proper backups can be created yet
502             // TODO: this will be fixed sometime later through using 'alter table' commands to add the constraints after generating the tables
503             // until now, just add the lasting tables to $new_tables, return them and print a warning
504             foreach($tables as $row) 
505                 $new_tables[] = $row;
506             echo "<div class=\"red_left\">THIS DATABASE SEEMS TO CONTAIN 'RING CONSTRAINTS'. WA DOES NOT SUPPORT THEM. PROBABLY THE FOLOWING BACKUP IS DEFECT!</div>";
507         }
508         return $new_tables;
509 }
510
511 // saves the string in $fileData to the file $backupfile as gz file or not ($zip)
512 // returns backup file name if name has changed (zip), else TRUE. If saving failed, return value is FALSE
513 function save_to_file($backupfile, $zip, $fileData) 
514 {
515         global $path_to_root;
516         
517     if ($zip == "gzip") 
518     {
519         if ($zp = @gzopen($path_to_root . BACKUP_PATH . $backupfile, "a9")) 
520         {
521                         @gzwrite($zp, $fileData);
522                         @gzclose($zp);
523                         return true;
524         } 
525         else 
526         {
527                 return false;
528         }
529         
530     // $zip contains the timestamp
531     } 
532     elseif ($zip == "zip") 
533     {
534         // based on zip.lib.php 2.2 from phpMyBackupAdmin
535         // offical zip format: http://www.pkware.com/appnote.txt
536         
537         // End of central directory record
538         $eof_ctrl_dir = "\x50\x4b\x05\x06\x00\x00\x00\x00";
539
540         // "local file header" segment
541         $unc_len = strlen($fileData);
542         $crc = crc32($fileData);
543         $zdata = gzcompress($fileData);
544
545         // string needed for decoding (because of crc bug)
546         //$name_suffix = substr($zdata, -4, 4);
547         //$name_suffix2 = "_";
548         //for ($i = 0; $i < 4; $i++) 
549         //      $name_suffix2 .= sprintf("%03d", ord($name_suffix[$i]));
550         //$backupfile = substr($backupfile, 0, strlen($backupfile) - 8) . $name_suffix2 . ".sql.zip";
551         $name = substr($backupfile, 0, strlen($backupfile) -4);
552
553         // fix crc bug
554         $zdata = substr(substr($zdata, 0, strlen($zdata) - 4), 2);
555         $c_len = strlen($zdata);
556
557         // dos time
558         $timearray = getdate($zip);
559         $dostime = (($timearray['year'] - 1980) << 25) | ($timearray['mon'] << 21) | ($timearray['mday'] << 16) |
560             ($timearray['hours'] << 11) | ($timearray['minutes'] << 5) | ($timearray['seconds'] >> 1);
561         $dtime = dechex($dostime);
562         $hexdtime = "\x" . $dtime[6] . $dtime[7] . "\x" . $dtime[4].$dtime[5] . "\x" . $dtime[2] . $dtime[3] . "\x" . $dtime[0] . $dtime[1];
563         eval('$hexdtime="' . $hexdtime . '";');
564
565         // ver needed to extract, gen purpose bit flag, compression method, last mod time and date
566         $sub1 = "\x14\x00" . "\x00\x00" . "\x08\x00" . $hexdtime;
567
568         // crc32, compressed filesize, uncompressed filesize
569         $sub2 = pack('V', $crc) . pack('V', $c_len) . pack('V', $unc_len);
570         
571         $fr = "\x50\x4b\x03\x04" . $sub1. $sub2;
572         
573         // length of filename, extra field length
574         $fr .= pack('v', strlen($name)) . pack('v', 0);
575         $fr .= $name;
576
577         // "file data" segment and "data descriptor" segment (optional but necessary if archive is not served as file)
578         $fr .= $zdata . $sub2;
579
580         // now add to central directory record
581         $cdrec = "\x50\x4b\x01\x02";
582         $cdrec .= "\x00\x00";                // version made by
583         $cdrec .= $sub1 . $sub2;
584         
585          // length of filename, extra field length, file comment length, disk number start, internal file attributes, external file attributes - 'archive' bit set, offset
586         $cdrec .= pack('v', strlen($name)) . pack('v', 0) . pack('v', 0) . pack('v', 0) . pack('v', 0) . pack('V', 32) . pack('V',0);
587         $cdrec .= $name;
588
589         // combine data
590         $fileData = $fr . $cdrec . $eof_ctrl_dir;
591         
592         // total # of entries "on this disk", total # of entries overall, size of central dir, offset to start of central dir, .zip file comment length
593         $fileData .= pack('v', 1) . pack('v', 1) . pack('V', strlen($cdrec)) . pack('V', strlen($fr)) . "\x00\x00";
594         
595         if ($zp = @fopen($path_to_root . BACKUP_PATH . $backupfile, "a")) 
596         {
597                         @fwrite($zp, $fileData);
598                         @fclose($zp);
599                         return true;
600         } 
601         else 
602         {
603                 return false;
604         }
605         
606         // uncompressed
607     } 
608     else 
609     {
610         if ($zp = @fopen($path_to_root . BACKUP_PATH . $backupfile, "a")) 
611         {
612                         @fwrite($zp, $fileData);
613                         @fclose($zp);
614                         return true;
615         } 
616         else 
617         {
618                 return false;
619         }
620     }
621 }
622
623
624 ?>