Newer
Older
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
<?
/*********************************************************************
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__) . '/../../../main.inc.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'),
);
var $epilog =
"The SQL of the import is written to standard outout";
var $stream;
var $header;
var $source_ost_info;
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');
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 = '';
while (!feof($this->stream) && (($c = fgetc($this->stream)) != "\x1e"))
$block .= $c;
if ($json = JsonDataParser::decode($block))
return $json;
if (strlen($block)) {
$this->stderr->write("Unable to read block from input");
die();
}
}
function send_statement($stmt) {
if ($this->getOption('prime-time'))
db_query($stmt);
else {
$this->stdout->write($stmt);
$this->stdout->write(";\n");
}
}
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();
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'])
.')');
}
}
function truncate_table($info) {
$this->send_statement('TRUNCATE TABLE '.TABLE_PREFIX.$info[1]);
$indexes = array();
foreach ($info[3] as $idx) {
if ($idx['Key_name'] == 'PRIMARY')
continue;
$indexes[$idx['Key_name']] =
'`'.TABLE_PREFIX.$info[1].'`.`'.$idx['Key_name'].'`';
}
foreach ($indexes as $T=>$fqn)
$this->send_statement('DROP INDEX IF EXISTS '.$fqn);
}
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 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');
while ($this->import_table());
@fclose($this->stream);
}
}
Module::register('import', 'Importer');
?>