<?php
namespace Koselig\Proxy;
use Cache;
use DB;
use Illuminate\Database\QueryException;
use wpdb;
* Replace Wordpress' database calls to Laravel's database abstraction
* to hold a single database connection, and for easier query debugging.
*
* @SuppressWarnings(PHPMD.CamelCaseMethodName)
*
* @author Jordan Doyle <jordan@doyle.wf>
*/
class WordpressDatabase extends wpdb
{
* Override the constructor as the Wordpress install doesn't actually
* need our Database details since it's all handled by laravel.
*/
public function __construct()
{
parent::__construct(null, null, null, null);
}
* Override the Wordpress select method as Laravel has already
* done this for us.
*
* @param string $db
* @param null $dbh
*/
public function select($db, $dbh = null)
{
}
* Laravel handles all the connection handling for us including reconnecting
* so we'll just pretend we're always connected to whatever is calling us.
*
* @param bool $allowBail
*
* @return bool
*/
public function check_connection($allowBail = true)
{
return true;
}
* Set the properties Wordpress expects so it will run queries for us
* through this class.
*
* @param bool $allowBail
*
* @return void
*/
public function db_connect($allowBail = true)
{
$this->is_mysql = true;
$this->has_connected = true;
$this->ready = true;
$this->set_sql_mode();
$this->init_charset();
}
* Retrieves the MySQL server version.
*
* @return null|string Null on failure, version number on success.
*/
public function db_version()
{
return Cache::remember('sql_version', config('wordpress.caching'), function () {
return DB::selectOne('SELECT version() as v')->v;
});
}
* Change the current SQL mode, and ensure its WordPress compatibility.
*
* If no modes are passed, it will ensure the current MySQL server
* modes are compatible.
*
* @since 3.9.0
*
* @param array $modes Optional. A list of SQL modes to set.
*/
public function set_sql_mode($modes = [])
{
if (empty($modes)) {
$modes = Cache::remember('sql_modes', config('wordpress.caching'), function () {
return explode(',', DB::selectOne('SELECT @@SESSION.sql_mode as sql_mode')->sql_mode);
});
}
$modes = array_change_key_case($modes, CASE_UPPER);
* Filters the list of incompatible SQL modes to exclude.
*
* @since 3.9.0
*
* @param array $incompatible_modes An array of incompatible modes.
*/
$incompatibleModes = (array) apply_filters('incompatible_sql_modes', $this->incompatible_modes);
foreach ($modes as $i => $mode) {
if (in_array($mode, $incompatibleModes, true)) {
unset($modes[$i]);
}
}
DB::statement('SET SESSION sql_mode=?', [implode(',', $modes)]);
}
* Real escape, using PDO's quote function.
*
* TODO: eventually swap this out for proper prepared statements rather than working around Wordpress' limitations.
*
* @param string $string to escape
*
* @return string escaped
*/
public function _real_escape($string)
{
return substr(DB::getPdo()->quote($string), 1, -1);
}
* Perform a MySQL database query, using current database connection.
*
* More information can be found on the codex page.
*
* @since 0.71
*
* @param string $query Database query
*
* @return false|int Number of rows affected/selected or false on error
*/
public function query($query)
{
if (!$this->ready) {
$this->check_current_query = true;
return false;
}
* Filters the database query.
*
* Some queries are made before the plugins have been loaded,
* and thus cannot be filtered with this method.
*
* @since 2.1.0
*
* @param string $query Database query.
*/
$query = apply_filters('query', $query);
$this->flush();
$this->func_call = "\$db->query(\"$query\")";
if ($this->check_current_query && !$this->check_ascii($query)) {
$strippedQuery = $this->strip_invalid_text_from_query($query);
$this->flush();
if ($strippedQuery !== $query) {
$this->insert_id = 0;
return false;
}
}
$this->check_current_query = true;
$this->last_query = $query;
try {
$this->_do_query($query);
} catch (QueryException $e) {
$this->last_error = $e->getMessage();
if ($this->insert_id && preg_match('/^\s*(insert|replace)\s/i', $query)) {
$this->insert_id = 0;
}
$this->print_error($this->last_error);
return false;
}
if (preg_match('/^\s*(create|alter|truncate|drop)\s/i', $query)) {
$return = $this->result;
} elseif (preg_match('/^\s*(insert|delete|update|replace)\s/i', $query)) {
$this->rows_affected = $return = $this->result;
if (preg_match('/^\s*(insert|replace)\s/i', $query)) {
$this->insert_id = DB::getPdo()->lastInsertId();
}
} else {
$this->num_rows = count($this->result);
$return = $this->result;
}
return $return;
}
* Internal function to perform the mysql_query() call.
*
* @since 3.9.0
* @see wpdb::query()
*
* @param string $query The query to run.
*/
private function _do_query($query)
{
if (defined('SAVEQUERIES') && SAVEQUERIES) {
$this->timer_start();
}
if (preg_match('/^\s*(insert|create|alter|truncate|drop|set)\s/i', $query)) {
$this->last_result = $this->result = DB::statement($query);
} elseif (preg_match('/^\s*(delete|update|replace)\s/i', $query)) {
$this->last_result = $this->result = DB::affectingStatement($query);
} else {
if (!config('wordpress.caching')) {
Cache::forget('q:' . $query);
}
$this->result = Cache::remember('q:' . $query, config('wordpress.caching'), function () use ($query) {
return DB::select($query);
});
$this->last_result = $this->result;
}
$this->num_queries++;
if (defined('SAVEQUERIES') && SAVEQUERIES) {
$this->queries[] = [$query, $this->timer_stop(), $this->get_caller()];
}
}
}