wp_db.php
5.38 KB
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
<?php
if (!defined('ABSPATH')) exit;
if (!class_exists('PTNWPDb')) :
class PTNWPDb {
public function dbprefix() {
global $wpdb;
$prefix = $wpdb->base_prefix ? $wpdb->base_prefix : $wpdb->prefix;
return $prefix;
}
public function prepare($query, $args) {
global $wpdb;
return $wpdb->prepare($query, $args);
}
public function getSiteId() {
global $wpdb;
return $wpdb->siteid;
}
public function getResult($query, $obj = ARRAY_A) {
global $wpdb;
return $wpdb->get_results($query, $obj);
}
public function query($query) {
global $wpdb;
return $wpdb->query($query);
}
public function getVar($query, $col = 0, $row = 0) {
global $wpdb;
return $wpdb->get_var($query, $col, $row);
}
public function getCol($query, $col = 0) {
global $wpdb;
return $wpdb->get_col($query, $col);
}
public function tableName($table) {
return $table[0];
}
public function showTables() {
$tables = $this->getResult("SHOW TABLES", ARRAY_N);
return array_map(array($this, 'tableName'), $tables);
}
public function showTableStatus() {
return $this->getResult("SHOW TABLE STATUS");
}
public function tableKeys($table) {
return $this->getResult("SHOW KEYS FROM $table;");
}
public function showDbVariables($variable) {
$variables = $this->getResult("Show variables like '%$variable%' ;");
$result = array();
foreach ($variables as $variable) {
$result[$variable["Variable_name"]] = $variable["Value"];
}
return $result;
}
public function describeTable($table) {
return $this->getResult("DESCRIBE $table;");
}
public function showTableIndex($table) {
return $this->getResult("SHOW INDEX FROM $table");
}
public function checkTable($table, $type) {
return $this->getResult("CHECK TABLE $table $type;");
}
public function repairTable($table) {
return $this->getResult("REPAIR TABLE $table;");
}
public function showTableCreate($table) {
return $this->getVar("SHOW CREATE TABLE $table;", 1);
}
public function rowsCount($table) {
$count = $this->getVar("SELECT COUNT(*) FROM $table;");
return intval($count);
}
public function createTable($query, $name, $usedbdelta = false) {
$table = $this->getBVTable($name);
if (!$this->isTablePresent($table)) {
if ($usedbdelta) {
if (!function_exists('dbDelta'))
require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
dbDelta($query);
} else {
$this->query($query);
}
}
return $this->isTablePresent($table);
}
public function createTables($tables, $usedbdelta = false) {
$result = array();
foreach ($tables as $table => $query) {
$result[$table] = $this->createTable($query, $table, $usedbdelta);
}
return $result;
}
public function alterBVTable($query, $name) {
$resp = false;
$table = $this->getBVTable($name);
if ($this->isTablePresent($table)) {
$resp = $this->query($query);
}
return $resp;
}
public function alterTables($tables) {
$result = array();
foreach ($tables as $table => $query) {
$result[$table] = $this->alterBVTable($query, $table);
}
return $result;
}
public function getTableContent($table, $fields = '*', $filter = '', $limit = 0, $offset = 0) {
$query = "SELECT $fields from $table $filter";
if ($limit > 0)
$query .= " LIMIT $limit";
if ($offset > 0)
$query .= " OFFSET $offset";
$rows = $this->getResult($query);
return $rows;
}
public function isTablePresent($table) {
return ($this->getVar("SHOW TABLES LIKE '$table'") === $table);
}
public function getCharsetCollate() {
global $wpdb;
return $wpdb->get_charset_collate();
}
public function getWPTable($name) {
return ($this->dbprefix() . $name);
}
public function getBVTable($name) {
return ($this->getWPTable("bv_" . $name));
}
public function truncateBVTable($name) {
$table = $this->getBVTable($name);
if ($this->isTablePresent($table)) {
return $this->query("TRUNCATE TABLE $table;");
} else {
return false;
}
}
public function deleteBVTableContent($name, $filter = "") {
$table = $this->getBVTable($name);
if ($this->isTablePresent($table)) {
return $this->query("DELETE FROM $table $filter;");
} else {
return false;
}
}
public function dropBVTable($name) {
$table = $this->getBVTable($name);
if ($this->isTablePresent($table)) {
$this->query("DROP TABLE IF EXISTS $table;");
}
return !$this->isTablePresent($table);
}
public function dropTables($tables) {
$result = array();
foreach ($tables as $table) {
$result[$table] = $this->dropBVTable($table);
}
return $result;
}
public function truncateTables($tables) {
$result = array();
foreach ($tables as $table) {
$result[$table] = $this->truncateBVTable($table);
}
return $result;
}
public function deleteRowsFromtable($name, $count = 1) {
$table = $this->getBVTable($name);
if ($this->isTablePresent($table)) {
return $this->getResult("DELETE FROM $table LIMIT $count;");
} else {
return false;
}
}
public function replaceIntoBVTable($name, $value) {
global $wpdb;
$table = $this->getBVTable($name);
return $wpdb->replace($table, $value);
}
public function tinfo($name) {
$result = array();
$table = $this->getBVTable($name);
$result['name'] = $table;
if ($this->isTablePresent($table)) {
$result['exists'] = true;
$result['createquery'] = $this->showTableCreate($table);
}
return $result;
}
public function getMysqlVersion() {
return $this->showDbVariables('version')['version'];
}
}
endif;