Small update
[iDB.git] / inc / admin / sqldumper / mysql.php
blobe221b3b51fdc8042dad734a82dcb20d0c738c27b
1 <?php
2 /*
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the Revised BSD License.
6 This program is distributed in the hope that it will be useful,
7 but WITHOUT ANY WARRANTY; without even the implied warranty of
8 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 Revised BSD License for more details.
11 Copyright 2004-2019 iDB Support - https://idb.osdn.jp/support/category.php?act=view&id=1
12 Copyright 2004-2019 Game Maker 2k - https://idb.osdn.jp/support/category.php?act=view&id=2
14 $FileInfo: mysql.php - Last Update: 08/02/2019 SVN 905 - Author: cooldude2k $
16 $File3Name = basename($_SERVER['SCRIPT_NAME']);
17 if ($File3Name=="mysql.php"||$File3Name=="/mysql.php") {
18 require('index.php');
19 exit(); }
21 if($_SESSION['UserGroup']==$Settings['GuestGroup']||$GroupInfo['HasAdminCP']=="no") {
22 redirect("location",$rbasedir.url_maker($exfile['index'],$Settings['file_ext'],"act=view",$Settings['qstr'],$Settings['qsep'],$prexqstr['index'],$exqstr['index'],false));
23 ob_clean(); header("Content-Type: text/plain; charset=".$Settings['charset']);
24 gzip_page($Settings['use_gzip'],$GZipEncode['Type']); session_write_close(); die(); }
25 if($Settings['sqltype']!="mysql"&&$Settings['sqltype']!="mysqli") {
26 redirect("location",$rbasedir.url_maker($exfile['index'],$Settings['file_ext'],"act=view",$Settings['qstr'],$Settings['qsep'],$prexqstr['index'],$exqstr['index'],false));
27 ob_clean(); header("Content-Type: text/plain; charset=".$Settings['charset']);
28 gzip_page($Settings['use_gzip'],$GZipEncode['Type']); session_write_close(); die(); }
29 if(!isset($_GET['outtype'])) { $_GET['outtype'] = "UTF-8"; }
30 header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
31 header("Cache-Control: private",false);
32 header("Content-Description: File Transfer");
33 if(!isset($_GET['comlevel'])) {
34 $_GET['comlevel'] = -1; }
35 if(!is_numeric($_GET['comlevel'])) {
36 $_GET['comlevel'] = -1; }
37 if($_GET['comlevel']>9||$_GET['comlevel']<-1) {
38 $_GET['comlevel'] = -1; }
39 if(!isset($_GET['compress'])) {
40 $_GET['compress'] = "none"; }
41 if($_GET['compress']=="gzip") {
42 $_GET['compress'] = "gzencode"; }
43 if($_GET['compress']=="bzip"||
44 $_GET['compress']=="bzip2") {
45 $_GET['compress'] = "bzcompress"; }
46 if($_GET['compress']!="none"&&
47 $_GET['compress']!="gzencode"&&
48 $_GET['compress']!="gzcompress"&&
49 $_GET['compress']!="gzdeflate"&&
50 $_GET['compress']!="bzcompress") {
51 $_GET['compress'] = "none"; }
52 if(!extension_loaded("zlib")) {
53 if($_GET['compress']=="gzencode"&&
54 $_GET['compress']=="gzcompress"&&
55 $_GET['compress']=="gzdeflate") {
56 $_GET['compress'] = "none"; } }
57 if(!extension_loaded("bz2")) {
58 if($_GET['compress']=="bzcompress") {
59 $_GET['compress'] = "none"; } }
60 if($_GET['compress']=="bzcompress") {
61 if($_GET['comlevel']>9||$_GET['comlevel']<0) {
62 $_GET['comlevel'] = 4; } }
63 $fname = null;
64 if(isset($Settings['sqldb'])&&$Settings['sqldb']!="") {
65 $fname = str_replace("_","", $Settings['sqldb'])."_"; }
66 if($_GET['compress']=="none") {
67 $fname .= str_replace("_","", $Settings['sqltable']).".sql"; }
68 if($_GET['compress']=="gzencode") {
69 $fname .= str_replace("_","", $Settings['sqltable']).".sql.gz"; }
70 if($_GET['compress']=="gzcompress") {
71 $fname .= str_replace("_","", $Settings['sqltable']).".sql.gz"; }
72 if($_GET['compress']=="gzdeflate") {
73 $fname .= str_replace("_","", $Settings['sqltable']).".sql.gz"; }
74 if($_GET['compress']=="bzcompress") {
75 $fname .= str_replace("_","", $Settings['sqltable']).".sql.bz2"; }
76 header("Content-Disposition: attachment; filename=".$fname);
77 header("Content-Type: application/octet-stream");
78 header("Content-Transfer-Encoding: binary");
79 if(!isset($AltSQLDumper)||$AltSQLDumper===null) {
80 $SQLDumper = "SQL Dumper"; }
81 if(isset($AltSQLDumper)&&$AltSQLDumper!==null) {
82 $SQLDumper = $AltSQLDumper; }
83 function GetAllRows($table) { $rene_j = 0; $trowout = null;
84 global $SQLStat;
85 $tresult = sql_query("SELECT * FROM \"".$table."\"",$SQLStat);
86 while ($trow = sql_fetch_assoc($tresult)) {
87 $trowout[$rene_j] = $trow;
88 ++$rene_j; }
89 sql_free_result($tresult);
90 return $trowout; }
91 $TablePreFix = $Settings['sqltable'];
92 function add_prefix($tarray) {
93 global $TablePreFix;
94 return $TablePreFix.$tarray; }
95 $TableChCk = array("categories", "catpermissions", "events", "forums", "groups", "levels", "members", "mempermissions", "messenger", "permissions", "polls", "posts", "restrictedwords", "sessions", "smileys", "themes", "topics", "wordfilter");
96 $TableChCk = array_map("add_prefix",$TableChCk);
97 if(!isset($_GET['outtype'])||$_GET['outtype']=="UTF-8") {
98 header("Content-Type: text/plain; charset=UTF-8"); }
99 if($_GET['outtype']=="latin1") {
100 header("Content-Type: text/plain; charset=ISO-8859-1"); }
101 if($_GET['outtype']=="latin15") {
102 header("Content-Type: text/plain; charset=ISO-8859-15"); }
103 $sql = "SHOW TABLES LIKE '".$Settings['sqltable']."%'";
104 $result = sql_query($sql,$SQLStat);
105 if (!$result) {
106 echo "DB Error, could not list tables\n";
107 echo 'MySQL Error: ' . sql_error($SQLStat);
108 exit; }
109 $DropTable = null; $CreateTable = null; $TableNames = null; $l = 0;
110 while ($row = sql_fetch_row($result)) {
111 if(in_array($row[0],$TableChCk)) {
112 $TableNames[$l] = $row[0];
113 $DropTable[$l] = "DROP TABLE IF EXISTS \"".$row[0]."\";\n";
114 $CreateTable[$l] = "CREATE TABLE IF NOT EXISTS \"".$row[0]."\" (\n";
115 $CreateTable[$l] = null;
116 $result2 = sql_query("SHOW COLUMNS FROM ".$row[0],$SQLStat);
117 $tabsta = sql_query("SHOW TABLE STATUS LIKE '".$row[0]."'",$SQLStat);
118 $tabstats = sql_fetch_array($tabsta); $AutoIncrement = " ";
119 $tabstaz = sql_query("SHOW CREATE TABLE \"".$row[0]."\"",$SQLStat);
120 $tabstatz = sql_fetch_array($tabstaz);
121 $FullTable[$l] = $DropTable[$l].$tabstatz[1].";\n";
122 $tabstats = sql_fetch_array($tabsta); $AutoIncrement = " ";
124 if($tabstats["Auto_increment"]!="") {
125 $AutoIncrement = " AUTO_INCREMENT=".$tabstats["Auto_increment"]." "; }
126 $TableInfo[$l] = null; $TableStats = null; $i = 0;
127 while ($row2 = sql_fetch_assoc($result2)) {
128 $row2["Default"] = "'".$row2["Default"]."'";
129 if($i==0) { $row2["Default"] = null; } $DefaVaule = null;
130 if($row2["Default"]!=null) { $DefaVaule = " default ".$row2["Default"]; }
131 if($row2["Extra"]!="") { $row2["Extra"] = " ".$row2["Extra"]; }
132 if($row2["Type"]=="text") { $DefaVaule = null; }
133 if(isset($PrimaryKey[$l])) {
134 if($row2["Key"]=="PRI"||$row2["Key"]=="UNI") {
135 $PrimaryKey[$l] .= ",\n"; } }
136 if(!isset($PrimaryKey[$l])) { $PrimaryKey[$l] = null; }
137 $TableInfo[$l] .= " \"".$row2["Field"]."\" ".$row2["Type"]." NOT NULL".$DefaVaule.$row2["Extra"].",\n";
138 if($row2["Key"]=="PRI") { $PrimaryKey[$l] .= " PRIMARY KEY (\"".$row2["Field"]."\")"; }
139 if($row2["Key"]=="UNI") { $PrimaryKey[$l] .= " UNIQUE KEY \"".$row2["Field"]."\" (\"".$row2["Field"]."\")"; }
140 ++$i; } */
142 $TableStats[$l] = ") ENGINE=".$tabstats["Engine"]." DEFAULT CHARSET=".mysql_client_encoding()." COLLATE=".$tabstats["Collation"].$AutoIncrement.";\n";
143 $TableInfo[$l] .= $PrimaryKey[$l]."\n".$TableStats[$l];
144 $FullTable[$l] = $DropTable[$l].$CreateTable[$l].$TableInfo[$l];
146 $TableStats[$l] = ") ENGINE=".$tabstats["Engine"]." DEFAULT CHARSET=".mysql_client_encoding()." COLLATE=".$tabstats["Collation"].$AutoIncrement.";\n";
147 $TableInfo[$l] .= $PrimaryKey[$l]."\n".$TableStats[$l];
148 $FullTable[$l] = $DropTable[$l].$CreateTable[$l].$TableInfo[$l]; */ }
149 if (!$result2) {
150 echo 'Could not run query: ' . sql_error($SQLStat);
151 exit; }
152 sql_free_result($result2);
153 sql_free_result($tabsta);
154 ++$l; } $tableout = null;
155 $num = count($TableNames); $melanie_p = 0;
156 $sqldump = "-- ".$OrgName." ".$SQLDumper."\n";
157 $sqldump .= "-- version ".$VerInfo['iDB_Ver_SVN']."\n";
158 $sqldump .= "-- ".$iDBHome."support/\n";
159 $sqldump .= "--\n";
160 $sqldump .= "-- Host: ".$Settings['sqlhost']."\n";
161 $sqldump .= "-- Generation Time: ".$usercurtime->format('F d, Y \a\t h:i A')."\n";
162 $sqldump .= "-- Server version: ".sql_server_info($SQLStat)."\n";
163 $sqldump .= "-- PHP Version: ".phpversion()."\n\n";
164 $sqldump .= "SET SESSION SQL_MODE='ANSI_QUOTES,NO_AUTO_VALUE_ON_ZERO';\n\n";
165 $sqldump .= "--\n";
166 $sqldump .= "-- Database: \"".$Settings['sqldb']."\"\n";
167 $sqldump .= "--\n\n";
168 $sqldump .= "-- --------------------------------------------------------\n\n";
169 while ($melanie_p < $num) { $tnum = $num - 1;
170 $trow = GetAllRows($TableNames[$melanie_p]);
171 $numz = count($trow); $kazuki_p = 0;
172 $sqldump .= "--\n";
173 $sqldump .= "-- Table structure for table \"".$TableNames[$melanie_p]."\"\n";
174 $sqldump .= "--\n\n";
175 $sqldump .= $FullTable[$melanie_p]."\n";
176 while ($kazuki_p < $numz) { $tnumz = $numz - 1;
177 $srow = null; $srowvalue = null;
178 $trownew = $trow[$kazuki_p];
179 $trowname = array_keys($trownew);
180 $nums = count($trownew); $il = 0;
181 while ($il < $nums) { $tnums = $nums - 1;
182 $trowrname = sql_escape_string($trowname[$il],$SQLStat);
183 $trowrvalue = sql_escape_string($trownew[$trowrname],$SQLStat);
184 if($_GET['outtype']=="UTF-8"&&$Settings['charset']!="UTF-8") {
185 $trowrvalue = utf8_encode($trowrvalue); }
186 $trowrvalue = str_replace( array("\n", "\r"), array('\n', '\r'), $trowrvalue);
187 /*if($kazuki_p===0) {*/
188 if($il===0) { $srow = "INSERT INTO \"".$TableNames[$melanie_p]."\" ("; }
189 if($il<$tnums&&$il!=$tnums) { $srow .= "\"".$trowrname."\", "; }
190 if($il==$tnums) { $srow .= "\"".$trowrname."\") VALUES"; } /*}*/
191 if($il===0) { $srowvalue = "("; }
192 if(!is_numeric($trowrvalue)) { $trowrvalue = "'".$trowrvalue."'"; }
193 if($il<$tnums) { $srowvalue .= $trowrvalue.", "; }
194 if($il==$tnums) { $srowvalue .= $trowrvalue;
195 /*if($kazuki_p<$tnumz) { $srowvalue .= "),"; }*/
196 /*if($kazuki_p==$tnumz) {*/ $srowvalue .= ");"; /*}*/ }
197 ++$il; }
198 if($kazuki_p===0) {
199 $sqldump .= "--\n";
200 $sqldump .= "-- Dumping data for table \"".$TableNames[$melanie_p]."\"\n";
201 $sqldump .= "--\n\n"; }
202 $sqldump .= $srow."\n"; /*}*/
203 $sqldump .= $srowvalue."\n";
204 if($kazuki_p==$tnumz&&$melanie_p<$tnum) {
205 $sqldump .= "\n-- --------------------------------------------------------\n"; }
206 ++$kazuki_p; }
207 if($numz===0) {
208 $sqldump .= "--\n";
209 $sqldump .= "-- Dumping data for table \"".$TableNames[$melanie_p]."\"\n";
210 $sqldump .= "--\n\n";
211 $sqldump .= "\n-- --------------------------------------------------------\n"; }
212 $sqldump .= "\n";
213 ++$melanie_p; }
214 if($_GET['compress']=="none") { echo $sqldump; }
215 if($_GET['compress']=="gzencode") { echo gzencode($sqldump,$_GET['comlevel']); }
216 if($_GET['compress']=="gzcompress") { echo gzcompress($sqldump,$_GET['comlevel']); }
217 if($_GET['compress']=="gzdeflate") { echo gzdeflate($sqldump,$_GET['comlevel']); }
218 if($_GET['compress']=="bzcompress") { echo bzcompress($sqldump,$_GET['comlevel']); }
219 fix_amp($Settings['use_gzip'],$GZipEncode['Type']);