Newer
Older
/*********************************************************************
cli/import.php
osTicket data importer, used for migration and backup recovery
Jared Hancock <jared@osticket.com>
Copyright (c) 2006-2013 osTicket
http://www.osticket.com
Released under the GNU General Public License WITHOUT ANY WARRANTY.
See LICENSE.TXT for details.
vim: expandtab sw=4 ts=4 sts=4:
**********************************************************************/
require_once dirname(__file__) . "/class.module.php";
require_once dirname(__file__) . "../../cli.inc.php";
require_once INCLUDE_DIR . "class.export.php";
require_once INCLUDE_DIR . 'class.json.php';
class Importer extends Module {
var $prologue =
"Imports data from a previous backup (using the exporter)";
var $options = array(
'stream' => array('-i', '--input', 'default'=>'php://stdin',
'metavar'=>'FILE', 'help'=>
"File or stream from which to read the export. As a default,
data is received from standard in."),
'compress' => array('-z', '--compress', 'action'=>'store_true',
'help'=>'Read zlib compressed data (use -z with the export
command)'),
'tables' => array('-t', '--table', 'action'=>'append',
'metavar'=>'TABLE', 'help'=>
"Table to be restored from the backup. Default is to restore all
tables. This option can be specified more than once"),
'drop' => array('-D', '--drop', 'action'=>'store_true', 'help'=>
'Issue DROP TABLE statements before the create statemente'),
'go-baby' => array('-P', '--prime-time', 'action'=>'store_true',
'help'=>'Load data into live database. Use at your own risk'),
);
var $epilog =
"The SQL of the import is written to standard outout";
var $stream;
var $header;
var $source_ost_info;
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
var $parent;
function __construct($parent=false) {
parent::__construct();
if ($parent) {
$this->parent = $parent;
$this->stream = $parent->stream;
}
}
function __get($what) {
return $this->parent->{$what};
}
function __call($what, $how) {
return call_user_func_array(array($this->parent, $what), $how);
}
function run($args, $options) {
$stream = $options['stream'];
if ($options['compress']) $stream = "compress.zlib://$stream";
if (!($this->stream = fopen($stream, 'rb'))) {
$this->stderr->write('Unable to open input stream');
die();
}
if (!$this->verify_header())
die('Unable to verify backup header');
Bootstrap::connect();
$class = 'Importer_' . $this->header[1];
$importer = new $class($this);
while ($importer->import_table());
@fclose($this->stream);
}
function verify_header() {
list($header, $info) = $this->read_block();
if (!$header || $header[0] != OSTICKET_BACKUP_SIGNATURE) {
$this->stderr->write("Header mismatch -- not an osTicket backup\n");
return false;
}
else
$this->header = $header;
if (!$info || $info['dbtype'] != 'mysql') {
$this->stderr->write('Only mysql imports are supported currently');
return false;
}
$this->source_ost_info = $info;
return true;
}
function read_block() {
$block = fgets($this->stream);
if ($json = JsonDataParser::decode($block))
return $json;
if (strlen($block)) {
$this->stderr->write("Unable to read block from input");
die();
}
}
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
function load_row($info, $row, $flush=false) {
static $header = null;
static $rows = array();
static $length = 0;
if ($info && $header === null) {
$header = "INSERT INTO `".TABLE_PREFIX.$info[1].'` (';
$cols = array();
foreach ($info[2] as $col)
$cols[] = "`{$col['Field']}`";
$header .= implode(', ', $cols);
$header .= ") VALUES ";
}
if ($row) {
$values = array();
foreach ($info[2] as $i=>$col)
$values[] = (is_numeric($row[$i]))
? $row[$i]
: ($row[$i] ? '0x'.bin2hex($row[$i]) : "''");
$values = "(" . implode(', ', $values) . ")";
$length += strlen($values);
$rows[] = &$values;
}
if (($flush || $length > 16000) && $header) {
$this->send_statement($header . implode(',', $rows));
$header = null;
$rows = array();
$length = 0;
}
}
function send_statement($stmt) {
if ($this->getOption('prime-time'))
db_query($stmt);
else {
$this->stdout->write($stmt);
$this->stdout->write(";\n");
}
}
}
class Importer_A extends Importer {
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
function import_table() {
if (!($header = $this->read_block()))
return false;
else if ($header[0] != 'table') {
$this->stderr->write('Unable to read table header');
return false;
}
// TODO: Consider included tables and excluded tables
$this->stderr->write("Importing table: {$header[1]}\n");
$this->create_table($header);
$this->create_indexes($header);
while (($row=$this->read_block())) {
if (isset($row[0]) && ($row[0] == 'end-table')) {
$this->load_row(null, null, true);
return true;
}
$this->load_row($header, $row);
}
return false;
}
function create_table($info) {
if ($this->getOption('drop'))
$this->send_statement('DROP TABLE IF EXISTS `'.TABLE_PREFIX.'`');
$sql = 'CREATE TABLE `'.TABLE_PREFIX.$info[1].'` (';
$pk = array();
$fields = array();
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
foreach ($info[2] as $col) {
$field = "`{$col['Field']}` {$col['Type']}";
if ($col['Null'] == 'NO')
$field .= ' NOT NULL ';
if ($col['Default'] == 'CURRENT_TIMESTAMP')
$field .= ' DEFAULT CURRENT_TIMESTAMP';
elseif ($col['Default'] !== null)
$field .= ' DEFAULT '.db_input($col['Default']);
$field .= ' '.$col['Extra'];
$fields[] = $field;
}
// Generate PRIMARY KEY
foreach ($info[3] as $idx) {
if ($idx['Key_name'] == 'PRIMARY') {
$col = '`'.$idx['Column_name'].'`';
if ($idx['Collation'] != 'A')
$col .= ' DESC';
$pk[(int)$idx['Seq_in_index']] = $col;
}
}
$sql .= implode(", ", $fields);
if ($pk)
$sql .= ', PRIMARY KEY ('.implode(',',$pk).')';
$sql .= ') DEFAULT CHARSET=utf8';
$queries[] = $sql;
$this->send_statement($sql);
}
function create_indexes($header) {
$indexes = array();
foreach ($header[3] as $idx) {
if ($idx['Key_name'] == 'PRIMARY')
continue;
if (!isset($indexes[$idx['Key_name']]))
$indexes[$idx['Key_name']] = array(
'cols'=>array(),
// XXX: Drop table-prefix
'table'=>substr($idx['Table'],
strlen($this->source_ost_info['table_prefix'])),
'type'=>$idx['Index_type'],
'unique'=>!$idx['Non_unique']);
$index = &$indexes[$idx['Key_name']];
$col = '`'.$idx['Column_name'].'`';
if ($idx['Collation'] != 'A')
$col .= ' DESC';
$index[(int)$idx['Seq_in_index']] = $col;
$index['cols'][] = $col;
}
foreach ($indexes as $name=>$info) {
$cols = array();
$this->send_statement('CREATE '
.(($info['unique']) ? 'UNIQUE ' : '')
.'INDEX `'.$name
.'` USING '.$info['type']
.' ON `'.TABLE_PREFIX.$info['table'].'` ('
.implode(',', $info['cols'])
.')');
}
}
class Importer_B extends Importer {
function truncate_table($info) {
$this->send_statement('TRUNCATE TABLE '.TABLE_PREFIX.$info[1]);
}
function import_table() {
if (!($header = $this->read_block()))
return false;
else if ($header[0] != 'table') {
$this->stderr->write('Unable to read table header');
return false;
// TODO: Consider included tables and excluded tables
$this->stderr->write("Importing table: {$header[1]}\n");
$res = db_query("select column_name from information_schema.columns
where table_schema=DATABASE() and table_name='{$header[1]}'");
while (list($field) = db_fetch_row($res))
if (!in_array($field, $header[2]))
$this->fail($header[1]
.": Destination table does not have the `$field` field");
if (!isset($header[3]['truncate']) || $header[3]['truncate'])
$this->truncate_table($header);
while (($row=$this->read_block())) {
if (isset($row[0]) && ($row[0] == 'end-table')) {
$this->load_row(null, null, true);
return true;
}
$this->load_row($header, $row);
}
return false;
}
function load_row($info, $row, $flush=false) {
static $header = null;
static $rows = array();
static $length = 0;
if ($info && $header === null) {
$header = "INSERT INTO `".TABLE_PREFIX.$info[1].'` (';
$cols = array();
foreach ($info[2] as $col)
$header .= implode(', ', $cols);
$header .= ") VALUES ";
}
if ($row) {
$values = array();
foreach ($info[2] as $i=>$col)
$values[] = (is_numeric($row[$i]))
? $row[$i]
: ($row[$i] ? '0x'.bin2hex($row[$i]) : "''");
$values = "(" . implode(', ', $values) . ")";
$length += strlen($values);
$rows[] = &$values;
}
if (($flush || $length > 16000) && $header) {
$this->send_statement($header . implode(',', $rows));
$header = null;
$rows = array();
$length = 0;
}
}
}
Module::register('import', 'Importer');
?>