File size: 6,473 Bytes
bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 bf47729 efc9636 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 |
<?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 $comments;
public $commentmeta;
public function __construct() {
global $table_prefix;
$this->prefix = isset($table_prefix) ? $table_prefix : 'wp_';
$this->set_table_names();
$this->connect();
}
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->comments = $this->prefix . 'comments';
$this->commentmeta = $this->prefix . 'commentmeta';
}
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>';
}
}
}
// Initialize SQLite database connection
$wpdb = new SQLite_DB();
// WordPress database compatibility
if (!isset($GLOBALS['wpdb'])) {
$GLOBALS['wpdb'] = $wpdb;
} |