-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathclass_converter.php
648 lines (547 loc) · 17 KB
/
class_converter.php
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
<?php
/**
* MyBB 1.8 Merge System
* Copyright 2014 MyBB Group, All Rights Reserved
*
* Website: http://www.mybb.com
* License: http://www.mybb.com/download/merge-system/license/
*/
// Disallow direct access to this file for security reasons
if(!defined("IN_MYBB"))
{
die("Direct initialization of this file is not allowed.<br /><br />Please make sure IN_MYBB is defined.");
}
abstract class Converter
{
/**
* An array of custom defined errors (i.e. attachments directory permission error)
*/
var $errors = array();
/**
* @var Debug
*/
var $debug;
/**
* @var DB_MySQL|DB_MySQLi|DB_PgSQL|DB_SQLite|PostgresPdoDbDriver|MysqlPdoDbDriver
*/
var $old_db;
/**
* @var array
*/
var $trackers = array();
/**
* @var Cache_Handler
*/
var $get_import;
/**
* @var array
*/
var $settings;
/**
* An array of supported databases
* defaulting to every databases if not set by the board itself
*/
var $supported_databases = array("mysql", "pgsql", "sqlite");
/**
* String of the bulletin board name
*
* @var string
*/
var $bbname;
/**
* String of the plain bulletin board name
*
* @var string
*/
var $plain_bbname;
/**
* Whether or not this module requires the loginconvert.php plugin
*
* @var boolean
*/
var $requires_loginconvert = false;
/**
* Array of all of the modules
*
* @var array
*/
var $modules = array();
/**
* The table we check to verify it's "our" database
*
* @var string
*/
var $check_table;
/**
* The table prefix we suggest to use
*
* @var string
*/
var $prefix_suggestion = "";
/**
* An array of board -> mybb groups
*
* @var array
*/
var $groups = array();
/**
* What BBCode Parser we're using
*
* @var string
*/
var $parser_class;
/**
* An array of columns that should be checked against the length of our database.
*
* Form: array('old_table' => array('our_table' => array('old_column' => 'new_column')));
*
* @var array
*/
var $column_length_to_check = array();
/**
* Class constructor
*/
function __construct()
{
global $debug, $lang;
// Set the module names here
if(isset($this->modules))
{
foreach($this->modules as $key => &$module)
{
$key = str_replace(array("import_", ".", ".."), "", $key);
$lang_string = "module_{$key}";
if(isset($lang->$lang_string))
{
$module['name'] = $lang->$lang_string;
}
$desc_string = $lang_string."_desc";
if(!empty($module['description']) && isset($lang->$desc_string))
{
$module['description'] = $lang->$desc_string;
}
}
}
$this->debug = &$debug;
return 'MyBB';
}
/**
* Create a database connection on the old database we're importing from
*
*/
function db_connect()
{
global $import_session;
$this->debug->log->trace0("Setting up connection to Convert DB.");
// Attempt to connect to the db
require_once MYBB_ROOT."inc/db_{$import_session['old_db_engine']}.php";
switch($import_session['old_db_engine'])
{
case "sqlite":
$this->old_db = new DB_SQLite;
break;
case "pgsql":
$this->old_db = new DB_PgSQL;
break;
case "pgsql_pdo":
$this->old_db = new PostgresPdoDbDriver();
break;
case "mysqli":
$this->old_db = new DB_MySQLi;
break;
case "mysql_pdo":
$this->old_db = new MysqlPdoDbDriver();
break;
default:
$this->old_db = new DB_MySQL;
}
$this->old_db->type = $import_session['old_db_engine'];
$this->old_db->connect(unserialize($import_session['connect_config']));
$this->old_db->set_table_prefix($import_session['old_tbl_prefix']);
define('OLD_TABLE_PREFIX', $import_session['old_tbl_prefix']);
}
function db_configuration()
{
global $mybb, $output, $import_session, $tableprefix, $lang;
// Just posted back to this form?
if($mybb->input['dbengine'])
{
$config_data = $mybb->input['config'][$mybb->input['dbengine']];
if(strstr($mybb->input['dbengine'], "sqlite") !== false && (strstr($config_data['dbname'], "./") !== false || strstr($config_data['dbname'], "../") !== false))
{
$errors[] = $lang->error_database_relative;
}
else if(!file_exists(MYBB_ROOT."inc/db_{$mybb->input['dbengine']}.php"))
{
$errors[] = $lang->error_database_invalid_engine;
}
else
{
// Attempt to connect to the db
require_once MYBB_ROOT."inc/db_{$mybb->input['dbengine']}.php";
switch($mybb->input['dbengine'])
{
case "sqlite":
$this->old_db = new DB_SQLite;
break;
case "pgsql":
$this->old_db = new DB_PgSQL;
break;
case "pgsql_pdo":
$this->old_db = new PostgresPdoDbDriver();
break;
case "mysqli":
$this->old_db = new DB_MySQLi;
break;
case "mysql_pdo":
$this->old_db = new MysqlPdoDbDriver();
break;
default:
$this->old_db = new DB_MySQL;
}
$this->old_db->error_reporting = 0;
$connect_config['type'] = $mybb->input['dbengine'];
$connect_config['database'] = $config_data['dbname'];
$connect_config['table_prefix'] = $config_data['tableprefix'];
$connect_config['hostname'] = $config_data['dbhost'];
$connect_config['username'] = $config_data['dbuser'];
$connect_config['password'] = $config_data['dbpass'];
$connect_config['encoding'] = $config_data['encoding'];
$connection = $this->old_db->connect($connect_config);
// -1 is returned if we can connect to the server but not to the database
if(!$connection || $connection === -1)
{
$errors[] = $lang->sprintf($lang->error_database_cant_connect, $config_data['dbhost']);
}
if(empty($errors))
{
// Need to check if it is actually installed here
$this->old_db->set_table_prefix($config_data['tableprefix']);
if(isset($this->check_table) && !empty($this->check_table) && !$this->old_db->table_exists($this->check_table))
{
$errors[] = $lang->sprintf($lang->error_database_wrong_table, $this->plain_bbname, $config_data['dbname']);
}
}
// No errors? Save import DB info and then return finished
if(!isset($errors) || !is_array($errors))
{
$output->print_header("{$this->plain_bbname} {$lang->database_configuration}");
echo "<br />\n{$lang->database_check_success}<br /><br />\n";
flush();
$import_session['old_db_engine'] = $mybb->input['dbengine'];
$import_session['old_db_host'] = $config_data['dbhost'];
$import_session['old_db_user'] = $config_data['dbuser'];
$import_session['old_db_pass'] = $config_data['dbpass'];
$import_session['old_db_name'] = $config_data['dbname'];
$import_session['old_tbl_prefix'] = $config_data['tableprefix'];
$import_session['connect_config'] = serialize($connect_config);
$import_session['encode_to_utf8'] = intval($mybb->input['encode_to_utf8']);
// Create temporary import data fields
create_import_fields();
sleep(2);
$this->check_column_length();
$import_session['flash_message'] = $lang->database_success;
return true;
}
}
}
$output->print_header("{$this->plain_bbname} {$lang->database_configuration}");
// Check for errors
if(isset($errors) && is_array($errors))
{
$error_list = error_list($errors);
echo "<div class=\"error\">
<h3>{$lang->error}</h3>
<p>{$lang->error_database_list}:</p>
{$error_list}
<p>{$lang->error_database_continue}</p>
</div>";
}
else
{
echo "<p>".$lang->sprintf($lang->database_details, $this->plain_bbname)."</p>";
if($import_session['old_db_engine'])
{
$mybb->input['dbengine'] = $import_session['old_db_engine'];
}
else
{
$mybb->input['dbengine'] = $mybb->config['database']['type'];
}
if($import_session['old_db_host'])
{
$mybb->input['config'][$mybb->input['dbengine']]['dbhost'] = $import_session['old_db_host'];
}
else
{
$mybb->input['config'][$mybb->input['dbengine']]['dbhost'] = 'localhost';
}
if($import_session['old_tbl_prefix'])
{
$tableprefix = $import_session['old_tbl_prefix'];
}
else
{
$tableprefix = $this->prefix_suggestion;
}
// This looks probably odd, but we want that the table prefix is shown everywhere correctly
foreach($this->supported_databases as $dbs)
{
$mybb->input['config'][$dbs]['tableprefix'] = $tableprefix;
}
// Handling mysqli, mysql_pdo and pgsql_pdo separately.
$mybb->input['config']["mysqli"]['tableprefix'] = $tableprefix;
$mybb->input['config']["mysql_pdo"]['tableprefix'] = $tableprefix;
$mybb->input['config']["pgsql_pdo"]['tableprefix'] = $tableprefix;
if($import_session['old_db_user'])
{
$mybb->input['config'][$mybb->input['dbengine']]['dbuser'] = $import_session['old_db_user'];
}
else
{
$mybb->input['config'][$mybb->input['dbengine']]['dbuser'] = '';
}
if($import_session['old_db_name'])
{
$mybb->input['config'][$mybb->input['dbengine']]['dbname'] = $import_session['old_db_name'];
}
else
{
$mybb->input['config'][$mybb->input['dbengine']]['dbname'] = '';
}
}
$import_session['autorefresh'] = "";
$mybb->input['autorefresh'] = "no";
$extra = $this->db_extra();
$output->print_database_details_table($this->plain_bbname, $extra);
$output->print_footer();
return false;
}
/**
* Checks an array of columns whether their value fits in our database (#123)
*/
function check_column_length() {
global $output, $lang, $import_session;
// We need the total number of columns to check to show our progress bar
$total_checks = 0;
foreach($this->column_length_to_check as $old_table => $t1) {
foreach ($t1 as $new_table => $columns) {
foreach ($columns as $old_column => $new_column) {
$total_checks++;
}
}
}
if($total_checks == 0) {
return;
}
$this->db_connect();
$output->construct_progress_bar();
echo $lang->column_length_check;
flush();
$progress = $last_percent = 0;
// Structure for array is: array('old_table' => array('new_table' => array(array('old_column' => 'new_column2'))))
$invalid_columns = array();
foreach($this->column_length_to_check as $old_table => $t1) {
foreach($t1 as $new_table => $columns) {
$columnLength = get_column_length_info($new_table, false, true);
foreach($columns as $old_column => $new_column) {
$column_info = $columnLength[$new_column];
if(isset($column_info['type']) && ($column_info['type'] == MERGE_DATATYPE_FIXED || $column_info['type'] == MERGE_DATATYPE_BOOL || $column_info['type'] == MERGE_DATATYPE_INT)) {
// TODO: implement or not?
// $query = "SELECT MAX({$old_column}) as valmax, MIN({$old_column}) as valmin FROM ".OLD_TABLE_PREFIX."{$old_table}";
}
else if(isset($column_info['type']) && ($column_info['type'] == MERGE_DATATYPE_CHAR || $column_info['type'] == MERGE_DATATYPE_BIN)) {
if(isset($column_info['length_table'])) {
$limit = $column_info['length_table'];
} else {
$limit = $column_info['length'];
}
if(isset($column_info['length_type_table']) && $column_info['length_type_table'] == MERGE_DATATYPE_CHAR_LENGTHTYPE_CHAR || isset($column_info['length_type']) && $column_info['length_type'] == MERGE_DATATYPE_CHAR_LENGTHTYPE_CHAR) {
switch($this->old_db->type) {
case 'mysql':
case 'mysqli':
$select_func = 'char_length';
break;
case 'pgsql':
case 'sqlite':
$select_func = 'length';
break;
}
} else if($this->old_db->type != 'sqlite') {
$select_func = 'octet_length';
} else {
$select_func = 'length';
}
$query = "SELECT {$select_func}({$old_column}) as length FROM ".OLD_TABLE_PREFIX."{$old_table} ORDER BY length DESC LIMIT 1";
$length = $this->old_db->fetch_field($this->old_db->query($query), 'length');
if($length > $limit) {
$invalid_columns[$new_table][$new_column] = $length;
}
}
++$progress;
// 200 is maximum
$percent = round(($progress/$total_checks)*200, 1);
if($percent != $last_percent)
{
$output->update_progress_bar($percent, $lang->sprintf($lang->column_length_checking, $old_column, $old_table));
}
$last_percent = $percent;
}
}
}
$output->update_progress_bar(200, $lang->please_wait);
echo $lang->done;
if(!empty($invalid_columns)) {
// Show an error
$error = "<b>{$lang->error_column_length_desc}</b><br />";
foreach($invalid_columns as $new_table => $t1) {
$error .= $lang->sprintf($lang->error_column_length_table, $new_table)."<br />";
foreach($t1 as $new_column => $length) {
$error .= $lang->sprintf($lang->error_column_length, $new_column, $length)."<br />";
}
}
// We need to mark the db_configuration module as run to make sure the "next" button redirects to the module list
// Check to see if our module is in the 'resume modules' array still and remove it if so.
$key = array_search($import_session['module'], $import_session['resume_module']);
if(isset($key))
{
unset($import_session['resume_module'][$key]);
}
// Add our module to the completed list and clear it from the current running module field.
$import_session['completed'][] = $import_session['module'];
$import_session['module'] = '';
$output->print_error($error);
}
flush();
}
/**
* Checks if the current module is done importing or not
*
* @return bool
*/
function check_if_done()
{
global $import_session, $lang;
$this->debug->log->trace2("Checking to see if we have more importing to go: {$import_session['module']}");
$module_name = str_replace(array("import_", ".", ".."), "", $import_session['module']);
$this->debug->log->datatrace("total_{$module_name}, start_{$module_name}", array($import_session['total_'.$module_name], $this->trackers['start_'.$module_name]));
// If there are more work to do, continue, or else, move onto next module
if($import_session['total_'.$module_name] - $this->trackers['start_'.$module_name] <= 0 || $import_session['total_'.$module_name] == 0)
{
$import_session['disabled'][] = 'import_'.$module_name;
$import_session['flash_message'] = $lang->sprintf($lang->import_successfully, $this->settings['friendly_name']);
return true;
}
return false;
}
/**
* Used for modules if there are handleable errors during the import process
*
* @param string $error_message
*/
function set_error_notice_in_progress($error_message)
{
global $output, $import_session;
$this->debug->log->error($error_message);
$import_session['error_logs'][$import_session['module']][] = $error_message;
$output->set_error_notice_in_progress($error_message);
}
/**
* Used for modules if there are handleable column warnings, e.g., unknown column type or mismatched data type, during the import process
*
* @param string $type Either 'column' so that the message will exist only once per table-column or 'entry' the message will be appended.
* @param string $table
* @param string $column
* @param string $message The message that will be displayed in the output result file.
* @param string $message_log The message that will be logged into the database.
*/
function set_column_warning_in_progress($type, $table, $column, $message, $message_log)
{
global $output, $import_session;
if($type == 'column')
{
if(empty($import_session['warning_logs'][TABLE_PREFIX.$table][$column]['column']))
{
$import_session['warning_logs'][TABLE_PREFIX.$table][$column]['column'] = $message;
$this->debug->log->warning($message_log);
$output->set_error_notice_in_progress($message);
}
}
else if($type == 'entry')
{
$import_session['warning_logs'][TABLE_PREFIX.$table][$column]['entry'][] = $message;
$this->debug->log->warning($message_log);
$output->set_error_notice_in_progress($message);
}
}
/**
* @param int $gid
*
* @return int
*/
public function get_gid($gid)
{
// A default group, return the correct MyBB group
if(isset($this->groups) && isset($this->groups[$gid]))
{
return $this->groups[$gid];
}
// Custom group
else
{
$gid = $this->get_import->gid($gid);
// we found the correct group
if($gid > 0)
{
return $gid;
}
// Something went wrong
else
{
return MYBB_REGISTERED;
}
}
}
/**
* Convert a comma seperated list of original groups ids in one of mybb
*
* @param string $gids A comma seperated list of original group ids
* @param int|array $remove Either a single group id or an array of group ids which shouldn't be in the group array
* @return string group id(s)
*/
function get_group_id($gids, $remove=array())
{
if(empty($gids))
{
return '';
}
if(!is_array($gids))
{
// Fix strings like ",{id}," and then explode
$gids = explode(',', trim($gids, ','));
}
$gids = array_map('trim', $gids);
$groups = array();
foreach($gids as $gid)
{
$groups[] = $this->get_gid($gid);
}
$groups = array_unique($groups);
if(!empty($remove))
{
if(!is_array($remove))
{
$remove = array($remove);
}
$groups = array_diff($groups, $remove);
}
return implode(',', $groups);
}
/**
* @return string HTML to add to the db configuration page
*/
function db_extra()
{
return "";
}
}