Minor adjustments in function db_export on line 325
[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) replaced
325                 if (($conn["tbpref"] == "" && !preg_match('/[0-9]+_/', $row['Name'])) ||
326                         ($conn["tbpref"] != "" && strpos($row['Name'], $conn["tbpref"]) !== false))
327                 $all_tables[] = $row;
328     }
329         // get table structures
330         foreach ($all_tables as $table)
331         {
332                 $res1 = db_query("SHOW CREATE TABLE `" . $table['Name'] . "`");
333                 $tmp = db_fetch($res1);
334                 $table_sql[$table['Name']] = $tmp["Create Table"];
335         }
336
337         // find foreign keys
338         $fks = array();
339         if (isset($table_sql))
340         {
341                 foreach($table_sql as $tablenme=>$table)
342                 {
343                         $tmp_table=$table;
344                         // save all tables, needed for creating this table in $fks
345                         while (($ref_pos = strpos($tmp_table, " REFERENCES ")) > 0)
346                         {
347                                 $tmp_table = substr($tmp_table, $ref_pos + 12);
348                                 $ref_pos = strpos($tmp_table, "(");
349                                 $fks[$tablenme][] = substr($tmp_table, 0, $ref_pos);
350                         }
351                 }
352         }
353         // order $all_tables
354         $all_tables = order_sql_tables($all_tables, $fks);
355
356         // as long as no error occurred
357         if (!$error)
358         {
359                 //while($row=@mysql_fetch_array($res))
360                 foreach ($all_tables as $row)
361                 {
362                         $tablename = $row['Name'];
363                         $auto_incr[$tablename] = $row['Auto_increment'];
364
365                         $out.="\n\n";
366                         // export tables
367                         $out.="### Structure of table `".$tablename."` ###\n\n";
368
369                         $out.="DROP TABLE IF EXISTS `".$tablename."`;\n\n";
370                         $out.=$table_sql[$tablename];
371
372                         // add auto_increment value
373                         if ($auto_incr[$tablename])
374                                 $out.=" AUTO_INCREMENT=".$auto_incr[$tablename];
375                         $out.=" ;";
376                         $out.="\n\n\n";
377
378                         // export data
379                         if (!$error)
380                         {
381                                 $out.="### Data of table `".$tablename."` ###\n\n";
382
383                                 // check if field types are NULL or NOT NULL
384                                 $res3 = db_query("SHOW COLUMNS FROM `" . $tablename . "`");
385
386                                 $field_type = array();
387                                 for ($j = 0; $j < db_num_rows($res3); $j++)
388                                 {
389                                         $row3 = db_fetch($res3);
390                                         $field_type[] = $row3[2];
391                                 }
392
393                                 $res2 = db_query("SELECT * FROM `" . $tablename . "`");
394                                 for ($j = 0; $j < db_num_rows($res2); $j++)
395                                 {
396                                         $out .= "INSERT INTO `" . $tablename . "` VALUES (";
397                                         $row2 = db_fetch_row($res2);
398                                         // run through each field
399                                         for ($k = 0; $k < $nf = db_num_fields($res2); $k++)
400                                         {
401                                                 // identify null values and save them as null instead of ''
402                                                 if ($field_type[$k] != "" && $field_type[$k] != "NO" && $row2[$k] == "")
403                                                         $out .= "NULL";
404                                                 else
405                                                         $out .= "'" . db_escape($row2[$k]) . "'";
406                                                 if ($k < ($nf - 1))
407                                                         $out .= ", ";
408                                         }
409                                         $out .= ");\n";
410
411                                         // if saving is successful, then empty $out, else set error flag
412                                         if (strlen($out) > $max_size && $zip != "zip")
413                                         {
414                                                 if (save_to_file($backupfile, $zip, $out))
415                                                         $out = "";
416                                                 else
417                                                         $error = true;
418                                         }
419                                 }
420
421                         // an error occurred! Try to delete file and return error status
422                         }
423                         elseif ($error)
424                         {
425                                 @unlink($path_to_root . BACKUP_PATH . $backupfile);
426                                 return false;
427                         }
428
429                         // if saving is successful, then empty $out, else set error flag
430                         if (strlen($out) > $max_size && $zip != "zip")
431                         {
432                                 if (save_to_file($backupfile, $zip, $out))
433                                         $out= "";
434                                 else
435                                         $error = true;
436                         }
437                 }
438
439         // an error occurred! Try to delete file and return error status
440         }
441         else
442         {
443                 @unlink($path_to_root . BACKUP_PATH . $backupfile);
444                 return false;
445         }
446
447         // if (mysql_error()) return "DB_ERROR";
448         //@mysql_close($con);
449
450         //if ($zip == "zip")
451         //      $zip = $time;
452         if (save_to_file($backupfile, $zip, $out))
453         {
454                 $out = "";
455         }
456         else
457         {
458                 @unlink($path_to_root . BACKUP_PATH . $backupfile);
459                 return false;
460         }
461     return $backupfile;
462 }
463
464 // orders the tables in $tables according to the constraints in $fks
465 // $fks musst be filled like this: $fks[tablename][0]=needed_table1; $fks[tablename][1]=needed_table2; ...
466 function order_sql_tables($tables, $fks)
467 {
468         // do not order if no contraints exist
469         if (!count($fks))
470                 return $tables;
471
472         // order
473         $new_tables = array();
474         $existing = array();
475         $modified = true;
476         while (count($tables) && $modified == true)
477         {
478                 $modified = false;
479             foreach ($tables as $key=>$row)
480             {
481                 // delete from $tables and add to $new_tables
482                 if (isset($fks[$row['Name']]))
483                 {
484                         foreach($fks[$row['Name']] as $needed)
485                         {
486                         // go to next table if not all needed tables exist in $existing
487                         if (!in_array($needed,$existing))
488                                 continue 2;
489                     }
490                 }
491             // delete from $tables and add to $new_tables
492                 $existing[] = $row['Name'];
493                         $new_tables[] = $row;
494             prev($tables);
495             unset($tables[$key]);
496             $modified = true;
497
498             }
499         }
500
501         if (count($tables))
502         {
503             // probably there are 'circles' in the constraints, bacause of that no proper backups can be created yet
504             // TODO: this will be fixed sometime later through using 'alter table' commands to add the constraints after generating the tables
505             // until now, just add the lasting tables to $new_tables, return them and print a warning
506             foreach($tables as $row)
507                 $new_tables[] = $row;
508             echo "<div class=\"red_left\">THIS DATABASE SEEMS TO CONTAIN 'RING CONSTRAINTS'. WA DOES NOT SUPPORT THEM. PROBABLY THE FOLOWING BACKUP IS DEFECT!</div>";
509         }
510         return $new_tables;
511 }
512
513 // saves the string in $fileData to the file $backupfile as gz file or not ($zip)
514 // returns backup file name if name has changed (zip), else TRUE. If saving failed, return value is FALSE
515 function save_to_file($backupfile, $zip, $fileData)
516 {
517         global $path_to_root;
518
519     if ($zip == "gzip")
520     {
521         if ($zp = @gzopen($path_to_root . BACKUP_PATH . $backupfile, "a9"))
522         {
523                         @gzwrite($zp, $fileData);
524                         @gzclose($zp);
525                         return true;
526         }
527         else
528         {
529                 return false;
530         }
531
532     // $zip contains the timestamp
533     }
534     elseif ($zip == "zip")
535     {
536         // based on zip.lib.php 2.2 from phpMyBackupAdmin
537         // offical zip format: http://www.pkware.com/appnote.txt
538
539         // End of central directory record
540         $eof_ctrl_dir = "\x50\x4b\x05\x06\x00\x00\x00\x00";
541
542         // "local file header" segment
543         $unc_len = strlen($fileData);
544         $crc = crc32($fileData);
545         $zdata = gzcompress($fileData);
546
547         // string needed for decoding (because of crc bug)
548         //$name_suffix = substr($zdata, -4, 4);
549         //$name_suffix2 = "_";
550         //for ($i = 0; $i < 4; $i++)
551         //      $name_suffix2 .= sprintf("%03d", ord($name_suffix[$i]));
552         //$backupfile = substr($backupfile, 0, strlen($backupfile) - 8) . $name_suffix2 . ".sql.zip";
553         $name = substr($backupfile, 0, strlen($backupfile) -4);
554
555         // fix crc bug
556         $zdata = substr(substr($zdata, 0, strlen($zdata) - 4), 2);
557         $c_len = strlen($zdata);
558
559         // dos time
560         $timearray = getdate($zip);
561         $dostime = (($timearray['year'] - 1980) << 25) | ($timearray['mon'] << 21) | ($timearray['mday'] << 16) |
562             ($timearray['hours'] << 11) | ($timearray['minutes'] << 5) | ($timearray['seconds'] >> 1);
563         $dtime = dechex($dostime);
564         $hexdtime = "\x" . $dtime[6] . $dtime[7] . "\x" . $dtime[4].$dtime[5] . "\x" . $dtime[2] . $dtime[3] . "\x" . $dtime[0] . $dtime[1];
565         eval('$hexdtime="' . $hexdtime . '";');
566
567         // ver needed to extract, gen purpose bit flag, compression method, last mod time and date
568         $sub1 = "\x14\x00" . "\x00\x00" . "\x08\x00" . $hexdtime;
569
570         // crc32, compressed filesize, uncompressed filesize
571         $sub2 = pack('V', $crc) . pack('V', $c_len) . pack('V', $unc_len);
572
573         $fr = "\x50\x4b\x03\x04" . $sub1. $sub2;
574
575         // length of filename, extra field length
576         $fr .= pack('v', strlen($name)) . pack('v', 0);
577         $fr .= $name;
578
579         // "file data" segment and "data descriptor" segment (optional but necessary if archive is not served as file)
580         $fr .= $zdata . $sub2;
581
582         // now add to central directory record
583         $cdrec = "\x50\x4b\x01\x02";
584         $cdrec .= "\x00\x00";                // version made by
585         $cdrec .= $sub1 . $sub2;
586
587          // length of filename, extra field length, file comment length, disk number start, internal file attributes, external file attributes - 'archive' bit set, offset
588         $cdrec .= pack('v', strlen($name)) . pack('v', 0) . pack('v', 0) . pack('v', 0) . pack('v', 0) . pack('V', 32) . pack('V',0);
589         $cdrec .= $name;
590
591         // combine data
592         $fileData = $fr . $cdrec . $eof_ctrl_dir;
593
594         // total # of entries "on this disk", total # of entries overall, size of central dir, offset to start of central dir, .zip file comment length
595         $fileData .= pack('v', 1) . pack('v', 1) . pack('V', strlen($cdrec)) . pack('V', strlen($fr)) . "\x00\x00";
596
597         if ($zp = @fopen($path_to_root . BACKUP_PATH . $backupfile, "a"))
598         {
599                         @fwrite($zp, $fileData);
600                         @fclose($zp);
601                         return true;
602         }
603         else
604         {
605                 return false;
606         }
607
608         // uncompressed
609     }
610     else
611     {
612         if ($zp = @fopen($path_to_root . BACKUP_PATH . $backupfile, "a"))
613         {
614                         @fwrite($zp, $fileData);
615                         @fclose($zp);
616                         return true;
617         }
618         else
619         {
620                 return false;
621         }
622     }
623 }
624
625
626 ?>