File size: 13,066 Bytes
bf47729 efc9636 bf47729 efc9636 1fb22f2 efc9636 1fb22f2 bf47729 efc9636 1fb22f2 efc9636 bf47729 1fb22f2 bf47729 efc9636 1fb22f2 efc9636 1fb22f2 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 1fb22f2 bf47729 |
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 |
<?php
/**
* SQLite integration for WordPress
* This file enables WordPress to use SQLite database instead of MySQL
*/
// Prevent direct access
if (!defined('ABSPATH')) {
exit;
}
// Check if SQLite extension is available
if (!extension_loaded('pdo_sqlite')) {
wp_die('SQLite PDO extension is not available. Please install php-sqlite3.');
}
// Define SQLite database path
if (!defined('DB_FILE')) {
define('DB_FILE', ABSPATH . 'wp-content/database/wordpress.db');
}
// Create database directory if it doesn't exist
$db_dir = dirname(DB_FILE);
if (!file_exists($db_dir)) {
wp_mkdir_p($db_dir);
}
/**
* Custom database class for SQLite - WordPress wpdb compatible
*/
class SQLite_DB {
public $pdo;
public $last_error = '';
public $insert_id = 0;
public $num_rows = 0;
public $last_query = '';
public $last_result = null;
public $prefix = 'wp_';
// WordPress compatibility properties
public $posts;
public $users;
public $options;
public $postmeta;
public $usermeta;
public $terms;
public $term_taxonomy;
public $term_relationships;
public $termmeta;
public $comments;
public $commentmeta;
public $links;
public $field_types = array();
public $charset;
public $collate;
public $dbname;
public $ready = false;
public function __construct() {
global $table_prefix;
$this->prefix = isset($table_prefix) ? $table_prefix : 'wp_';
$this->charset = 'utf8';
$this->collate = '';
$this->dbname = 'wordpress';
$this->set_table_names();
$this->connect();
$this->ready = true;
}
private function set_table_names() {
$this->posts = $this->prefix . 'posts';
$this->users = $this->prefix . 'users';
$this->options = $this->prefix . 'options';
$this->postmeta = $this->prefix . 'postmeta';
$this->usermeta = $this->prefix . 'usermeta';
$this->terms = $this->prefix . 'terms';
$this->term_taxonomy = $this->prefix . 'term_taxonomy';
$this->term_relationships = $this->prefix . 'term_relationships';
$this->termmeta = $this->prefix . 'termmeta';
$this->comments = $this->prefix . 'comments';
$this->commentmeta = $this->prefix . 'commentmeta';
$this->links = $this->prefix . 'links';
}
private function connect() {
try {
$this->pdo = new PDO('sqlite:' . DB_FILE);
$this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$this->pdo->exec('PRAGMA foreign_keys = ON');
} catch (PDOException $e) {
$this->last_error = $e->getMessage();
wp_die('Database connection failed: ' . $this->last_error);
}
}
public function query($sql) {
$this->last_query = $sql;
$this->last_error = '';
$this->last_result = null;
try {
// Convert MySQL syntax to SQLite
$sql = $this->mysql_to_sqlite($sql);
$stmt = $this->pdo->prepare($sql);
$result = $stmt->execute();
if ($result) {
$this->insert_id = $this->pdo->lastInsertId();
$this->num_rows = $stmt->rowCount();
$this->last_result = $stmt;
// For SELECT queries, return the number of rows
if (stripos(trim($sql), 'SELECT') === 0) {
return $this->num_rows;
}
// For INSERT, UPDATE, DELETE, return true
return true;
}
return false;
} catch (PDOException $e) {
$this->last_error = $e->getMessage();
return false;
}
}
private function mysql_to_sqlite($sql) {
// Basic MySQL to SQLite conversion
$sql = str_replace('`', '"', $sql);
$sql = preg_replace('/AUTO_INCREMENT/i', 'AUTOINCREMENT', $sql);
$sql = preg_replace('/INT\(\d+\)/i', 'INTEGER', $sql);
$sql = preg_replace('/TINYINT\(\d+\)/i', 'INTEGER', $sql);
$sql = preg_replace('/BIGINT\(\d+\)/i', 'INTEGER', $sql);
$sql = preg_replace('/VARCHAR\((\d+)\)/i', 'TEXT', $sql);
$sql = preg_replace('/LONGTEXT/i', 'TEXT', $sql);
$sql = preg_replace('/DATETIME/i', 'TEXT', $sql);
$sql = preg_replace('/TIMESTAMP/i', 'TEXT', $sql);
return $sql;
}
public function get_results($sql, $output = OBJECT) {
$this->query($sql);
if (!$this->last_result) return null;
$results = [];
while ($row = $this->last_result->fetch(PDO::FETCH_ASSOC)) {
if ($output === OBJECT) {
$results[] = (object) $row;
} else {
$results[] = $row;
}
}
return $results;
}
public function get_row($sql, $output = OBJECT) {
$this->query($sql);
if (!$this->last_result) return null;
$row = $this->last_result->fetch(PDO::FETCH_ASSOC);
if (!$row) return null;
if ($output === OBJECT) {
return (object) $row;
}
return $row;
}
public function get_var($sql) {
$this->query($sql);
if (!$this->last_result) return null;
$row = $this->last_result->fetch(PDO::FETCH_NUM);
return $row ? $row[0] : null;
}
public function insert_id() {
return $this->insert_id;
}
public function last_error() {
return $this->last_error;
}
public function num_rows() {
return $this->num_rows;
}
// WordPress compatibility methods
public function prepare($query, ...$args) {
if (empty($args)) {
return $query;
}
$query = str_replace("'%s'", '%s', $query);
$query = str_replace('"%s"', '%s', $query);
$query = str_replace('%s', "'%s'", $query);
$query = str_replace("'%d'", '%d', $query);
$query = str_replace('"%d"', '%d', $query);
return vsprintf($query, $args);
}
public function get_charset_collate() {
return '';
}
public function esc_like($text) {
return addcslashes($text, '\\%_');
}
public function print_error($str = '') {
if ($this->last_error) {
echo '<div id="error"><p class="wpdberror"><strong>WordPress database error:</strong> [' . $this->last_error . ']<br /><code>' . $this->last_query . '</code></p></div>';
}
}
// WordPress required methods
public function set_prefix($prefix, $set_table_names = true) {
if (preg_match('|[^a-z0-9_]|i', $prefix)) {
// Return false instead of WP_Error since WP_Error might not be available yet
return false;
}
$old_prefix = $this->prefix;
$this->prefix = $prefix;
if ($set_table_names) {
$this->set_table_names();
}
return $old_prefix;
}
public function set_blog_id($blog_id, $network_id = 0) {
// For single site, just return
return $this->prefix;
}
public function get_blog_prefix($blog_id = null) {
return $this->prefix;
}
public function tables($scope = 'all', $prefix = true, $blog_id = 0) {
$tables = array(
'posts', 'comments', 'links', 'options', 'postmeta',
'terms', 'term_taxonomy', 'term_relationships', 'termmeta',
'commentmeta', 'users', 'usermeta'
);
if ($prefix) {
$prefixed_tables = array();
foreach ($tables as $table) {
$prefixed_tables[] = $this->prefix . $table;
}
return $prefixed_tables;
}
return $tables;
}
public function get_table_charset($table) {
return 'utf8';
}
public function get_col_charset($table, $column) {
return 'utf8';
}
public function check_connection($allow_bail = true) {
return true;
}
public function db_version() {
return $this->get_var('SELECT sqlite_version()');
}
public function flush() {
$this->last_result = null;
$this->last_query = null;
$this->last_error = '';
}
public function close() {
$this->pdo = null;
return true;
}
public function has_cap($db_cap) {
switch (strtolower($db_cap)) {
case 'collation':
case 'group_concat':
case 'subqueries':
return true;
default:
return false;
}
}
public function get_caller() {
if (function_exists('wp_debug_backtrace_summary')) {
return wp_debug_backtrace_summary(__CLASS__);
}
return '';
}
public function init_charset() {
// SQLite uses UTF-8 by default
return true;
}
public function set_charset($dbh, $charset = null, $collate = null) {
// SQLite uses UTF-8 by default
return true;
}
// WordPress data manipulation methods
public function insert($table, $data, $format = null) {
return $this->_insert_replace_helper($table, $data, $format, 'INSERT');
}
public function replace($table, $data, $format = null) {
return $this->_insert_replace_helper($table, $data, $format, 'REPLACE');
}
public function update($table, $data, $where, $format = null, $where_format = null) {
if (!is_array($data) || !is_array($where)) {
return false;
}
$formats = $format = (array) $format;
$bits = $wheres = array();
foreach ((array) array_keys($data) as $field) {
if (!empty($formats)) {
$form = ($form = array_shift($formats)) ? $form : $formats[0];
} elseif (isset($this->field_types[$field])) {
$form = $this->field_types[$field];
} else {
$form = '%s';
}
$bits[] = "`$field` = {$form}";
}
$where_formats = $where_format = (array) $where_format;
foreach ((array) array_keys($where) as $field) {
if (!empty($where_formats)) {
$form = ($form = array_shift($where_formats)) ? $form : $where_formats[0];
} elseif (isset($this->field_types[$field])) {
$form = $this->field_types[$field];
} else {
$form = '%s';
}
$wheres[] = "`$field` = {$form}";
}
$sql = "UPDATE `$table` SET " . implode(', ', $bits) . ' WHERE ' . implode(' AND ', $wheres);
return $this->query($this->prepare($sql, array_merge(array_values($data), array_values($where))));
}
public function delete($table, $where, $where_format = null) {
if (!is_array($where)) {
return false;
}
$where_formats = $where_format = (array) $where_format;
$wheres = array();
foreach (array_keys($where) as $field) {
if (!empty($where_formats)) {
$form = ($form = array_shift($where_formats)) ? $form : $where_formats[0];
} elseif (isset($this->field_types[$field])) {
$form = $this->field_types[$field];
} else {
$form = '%s';
}
$wheres[] = "`$field` = {$form}";
}
$sql = "DELETE FROM `$table` WHERE " . implode(' AND ', $wheres);
return $this->query($this->prepare($sql, array_values($where)));
}
private function _insert_replace_helper($table, $data, $format = null, $type = 'INSERT') {
if (!in_array(strtoupper($type), array('INSERT', 'REPLACE'))) {
return false;
}
if (!is_array($data)) {
return false;
}
$formats = $format = (array) $format;
$fields = array_keys($data);
$formatted_fields = array();
foreach ($fields as $field) {
if (!empty($formats)) {
$form = ($form = array_shift($formats)) ? $form : $formats[0];
} elseif (isset($this->field_types[$field])) {
$form = $this->field_types[$field];
} else {
$form = '%s';
}
$formatted_fields[] = $form;
}
$sql = "$type INTO `$table` (`" . implode('`,`', $fields) . '`) VALUES (' . implode(',', $formatted_fields) . ')';
return $this->query($this->prepare($sql, array_values($data)));
}
}
// Initialize SQLite database connection
$wpdb = new SQLite_DB();
// WordPress database compatibility
if (!isset($GLOBALS['wpdb'])) {
$GLOBALS['wpdb'] = $wpdb;
} |