1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
|
<?php /* * Nucleus: PHP/MySQL Weblog CMS (http://nucleuscms.org/) * Copyright (C) 2002-2005 The Nucleus Group * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * (see nucleus/documentation/index.html#license for more info) */ /** * Scripts to create/restore a backup of the Nucleus database * * Based on code in phpBB (http://phpBB.sourceforge.net) * * @license http://nucleuscms.org/license.txt GNU General Public License * @copyright Copyright (C) 2002-2005 The Nucleus Group * @version $Id: backup.php,v 1.19.2.1 2005/08/15 10:50:12 dekarma Exp $ */
/** * This function creates an sql dump of the database and sends it to * the user as a file (can be gzipped if they want) * * @requires * no output may have preceded (new headers are sent) * @param gzip * 1 = compress backup file, 0 = no compression (default) */ function do_backup($gzip = 0) { global $manager;
// tables of which backup is needed $tables = array( sql_table('actionlog'), sql_table('ban'), sql_table('blog'), sql_table('comment'), sql_table('config'), sql_table('item'), sql_table('karma'), sql_table('member'), sql_table('skin'), sql_table('skin_desc'), sql_table('team'), sql_table('template'), sql_table('template_desc'), sql_table('plugin'), sql_table('plugin_event'), sql_table('plugin_option'), sql_table('plugin_option_desc'), sql_table('category'), sql_table('activation'), sql_table('tickets'), );
// add tables that plugins want to backup to the list // catch all output generated by plugins ob_start(); $res = sql_query('SELECT pfile FROM '.sql_table('plugin')); while ($plugName = mysql_fetch_object($res)) { $plug =& $manager->getPlugin($plugName->pfile); if ($plug) $tables = array_merge($tables, $plug->getTableList()); } ob_end_clean(); // remove duplicates $tables = array_unique($tables); // make sure browsers don't cache the backup header("Pragma: no-cache"); // don't allow gzip compression when extension is not loaded if (($gzip != 0) && !extension_loaded("zlib")) $gzip = 0;
if ($gzip) { // use an output buffer @ob_start(); @ob_implicit_flush(0); // set filename $filename = 'nucleus_db_backup_'.strftime("%Y%m%d", time()).".sql.gz"; } else { $filename = 'nucleus_db_backup_'.strftime("%Y%m%d", time()).".sql"; } // send headers that tell the browser a file is coming header("Content-Type: text/x-delimtext; name=\"$filename\""); header("Content-disposition: attachment; filename=$filename"); // dump header echo "#\n"; echo "# This is a backup file generated by Nucleus \n"; echo "# http://www.nucleuscms.org/\n"; echo "#\n"; echo "# backup-date: " . gmdate("d-m-Y H:i:s", time()) . " GMT\n"; global $nucleus; echo "# Nucleus CMS version: " . $nucleus['version'] . "\n"; echo "#\n"; echo "# WARNING: Only try to restore on servers running the exact same version of Nucleus\n"; echo "#\n"; // dump all tables reset($tables); array_walk($tables, '_backup_dump_table'); if($gzip) { $Size = ob_get_length(); $Crc = crc32(ob_get_contents()); $contents = gzcompress(ob_get_contents()); ob_end_clean(); echo "\x1f\x8b\x08\x00\x00\x00\x00\x00".substr($contents, 0, strlen($contents) - 4).gzip_PrintFourChars($Crc).gzip_PrintFourChars($Size); } exit;
}
/** * Creates a dump for a single table * ($tablename and $key are filled in by array_walk) */ function _backup_dump_table($tablename, $key) {
echo "#\n"; echo "# TABLE: " . $tablename . "\n"; echo "#\n"; // dump table structure _backup_dump_structure($tablename);
// dump table contents _backup_dump_contents($tablename); }
function _backup_dump_structure($tablename) { // add command to drop table on restore echo "DROP TABLE IF EXISTS $tablename;\n"; echo "CREATE TABLE $tablename(\n";
// // Ok lets grab the fields... // $result = mysql_query("SHOW FIELDS FROM $tablename"); $row = mysql_fetch_array($result); while ($row) {
echo ' ' . $row['Field'] . ' ' . $row['Type'];
if(!empty($row['Default'])) echo ' DEFAULT \'' . $row['Default'] . '\'';
if($row['Null'] != "YES") echo ' NOT NULL';
if($row['Extra'] != "") echo ' ' . $row['Extra'];
$row = mysql_fetch_array($result);
// add comma's except for last one if ($row) echo ",\n"; }
// // Get any Indexed fields from the database... // $result = mysql_query("SHOW KEYS FROM $tablename"); while($row = mysql_fetch_array($result)) { $kname = $row['Key_name'];
if(($kname != 'PRIMARY') && ($row['Non_unique'] == 0)) $kname = "UNIQUE|$kname"; if(($kname != 'PRIMARY') && ($row['Index_type'] == 'FULLTEXT')) $kname = "FULLTEXT|$kname"; if(!is_array($index[$kname])) $index[$kname] = array(); $index[$kname][] = $row['Column_name']; }
while(list($x, $columns) = @each($index)) { echo ", \n";
if($x == 'PRIMARY') echo ' PRIMARY KEY (' . implode($columns, ', ') . ')'; elseif (substr($x,0,6) == 'UNIQUE') echo ' UNIQUE KEY ' . substr($x,7) . ' (' . implode($columns, ', ') . ')'; elseif (substr($x,0,8) == 'FULLTEXT') echo ' FULLTEXT KEY ' . substr($x,9) . ' (' . implode($columns, ', ') . ')'; elseif (($x == 'ibody') || ($x == 'cbody')) // karma 2004-05-30 quick and dirty fix. fulltext keys were not in SQL correctly. echo ' FULLTEXT KEY ' . substr($x,9) . ' (' . implode($columns, ', ') . ')'; else echo " KEY $x (" . implode($columns, ', ') . ')'; }
echo "\n);\n\n"; }
function _backup_dump_contents($tablename) { // // Grab the data from the table. // $result = mysql_query("SELECT * FROM $tablename");
if(mysql_numrows($result) > 0) echo "\n#\n# Table Data for $tablename\n#\n";
// // Loop through the resulting rows and build the sql statement. // while ($row = mysql_fetch_array($result)) { $tablename_list = '('; $num_fields = mysql_num_fields($result);
// // Grab the list of field names. // for ($j = 0; $j < $num_fields; $j++) $tablename_list .= mysql_field_name($result, $j) . ', ';
// // Get rid of the last comma // $tablename_list = ereg_replace(', $', '', $tablename_list); $tablename_list .= ')';
// Start building the SQL statement.
echo "INSERT INTO $tablename $tablename_list VALUES(";
// Loop through the rows and fill in data for each column for ($j = 0; $j < $num_fields; $j++) { if(!isset($row[$j])) { // no data for column echo ' NULL'; } elseif ($row[$j] != '') { // data echo " '" . addslashes($row[$j]) . "'"; } else { // empty column (!= no data!) echo "''"; }
// only add comma when not last column if ($j != ($num_fields - 1)) echo ","; }
echo ");\n";
} echo "\n";
}
// copied from phpBB function gzip_PrintFourChars($Val) { for ($i = 0; $i < 4; $i ++) { $return .= chr($Val % 256); $Val = floor($Val / 256); } return $return; }
function do_restore() { $uploadInfo = postFileInfo('backup_file'); // first of all: get uploaded file: if (empty($uploadInfo['name'])) return 'No file uploaded'; if (!is_uploaded_file($uploadInfo['tmp_name'])) return 'No file uploaded'; $backup_file_name = $uploadInfo['name']; $backup_file_tmpname = $uploadInfo['tmp_name']; $backup_file_type = $uploadInfo['type'];
if (!file_exists($backup_file_tmpname)) return 'File Upload Error'; if (!preg_match("/^(text\/[a-zA-Z]+)|(application\/(x\-)?gzip(\-compressed)?)|(application\/octet-stream)$/is", $backup_file_type) ) return 'The uploaded file is not of the correct type'; if (preg_match("/\.gz/is",$backup_file_name)) $gzip = 1; else $gzip = 0; if (!extension_loaded("zlib") && $gzip) return "Cannot decompress gzipped backup (zlib package not installed)";
// get sql query according to gzip setting (either decompress, or not) if($gzip) { // decompress and read $gz_ptr = gzopen($backup_file_tmpname, 'rb'); $sql_query = ""; while( !gzeof($gz_ptr) ) $sql_query .= gzgets($gz_ptr, 100000); } else { // just read $fsize = filesize($backup_file_tmpname); if ($fsize <= 0) $sql_query = ''; else $sql_query = fread(fopen($backup_file_tmpname, 'r'), $fsize); }
// time to execute the query _execute_queries($sql_query); }
function _execute_queries($sql_query) { if (!$sql_query) return;
// Strip out sql comments... $sql_query = remove_remarks($sql_query); $pieces = split_sql_file($sql_query);
$sql_count = count($pieces); for($i = 0; $i < $sql_count; $i++) { $sql = trim($pieces[$i]);
if(!empty($sql) and $sql[0] != "#") { // DEBUG // debug("Executing: " . htmlspecialchars($sql) . "\n");
$result = mysql_query($sql); if (!$result) debug('SQL Error: ' . mysql_error());
} }
}
// // remove_remarks will strip the sql comment lines out of an uploaded sql file // function remove_remarks($sql) { $lines = explode("\n", $sql); // try to keep mem. use down $sql = ""; $linecount = count($lines); $output = "";
for ($i = 0; $i < $linecount; $i++) { if (($i != ($linecount - 1)) || (strlen($lines[$i]) > 0)) { if ($lines[$i][0] != "#") { $output .= $lines[$i] . "\n"; } else { $output .= "\n"; } // Trading a bit of speed for lower mem. use here. $lines[$i] = ""; } } return $output; }
// // split_sql_file will split an uploaded sql file into single sql statements. // Note: expects trim() to have already been run on $sql. // // taken from phpBB // function split_sql_file($sql) { // Split up our string into "possible" SQL statements. $tokens = explode( ";", $sql);
// try to save mem. $sql = ""; $output = array(); // we don't actually care about the matches preg gives us. $matches = array(); // this is faster than calling count($tokens) every time thru the loop. $token_count = count($tokens); for ($i = 0; $i < $token_count; $i++) { // Don't wanna add an empty string as the last thing in the array. if (($i != ($token_count - 1)) || (strlen($tokens[$i] > 0))) { // even number of quotes means a complete SQL statement if (_evenNumberOfQuotes($tokens[$i])) { $output[] = $tokens[$i]; $tokens[$i] = ""; // save memory. } else { // incomplete sql statement. keep adding tokens until we have a complete one. // $temp will hold what we have so far. $temp = $tokens[$i] . ";"; $tokens[$i] = ""; // save memory.. // Do we have a complete statement yet? $complete_stmt = false; for ($j = $i + 1; (!$complete_stmt && ($j < $token_count)); $j++) { // odd number of quotes means a completed statement // (in combination with the odd number we had already) if (!_evenNumberOfQuotes($tokens[$j])) { $output[] = $temp . $tokens[$j];
// save memory. $tokens[$j] = ""; $temp = ""; // exit the loop. $complete_stmt = true; // make sure the outer loop continues at the right point. $i = $j; } else { // even number of unescaped quotes. We still don't have a complete statement. // (1 odd and 1 even always make an odd) $temp .= $tokens[$j] . ";"; // save memory. $tokens[$j] = ""; } } // for.. } // else } }
return $output; }
function _evenNumberOfQuotes($text) { // This is the total number of single quotes in the token. $total_quotes = preg_match_all("/'/", $text, $matches); // Counts single quotes that are preceded by an odd number of backslashes, // which means they're escaped quotes. $escaped_quotes = preg_match_all("/(?<!\\\\)(\\\\\\\\)*\\\\'/", $text, $matches);
$unescaped_quotes = $total_quotes - $escaped_quotes; // debug($total_quotes . "-" . $escaped_quotes . "-" . $unescaped_quotes); return (($unescaped_quotes % 2) == 0); }
?>
|