| Server IP : 188.114.97.2 / Your IP : 104.23.197.230 Web Server : Apache/2.4.59 (Debian) System : Linux EDL-STRETCH 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64 User : edlftp ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/nicolasj/www/b2b.ecoledelangues.be/wp-content/plugins/wp-google-maps/includes/ |
Upload File : |
<?php
namespace WPGMZA;
class Query
{
private $_type;
private $_table;
private $_fields;
private $_join;
private $_where;
private $_groupBy;
private $_orderBy;
private $_having;
private $_limit;
private $_params;
public function __construct($parts=null)
{
$this->_type = null;
$this->_table = null;
$this->_fields = new QueryFragment();
$this->_join = new QueryFragment();
$this->_where = new QueryFragment();
$this->_groupBy = new QueryFragment();
$this->_orderBy = new QueryFragment();
$this->_having = new QueryFragment();
$this->_placeholders = array();
$this->_params = new QueryFields();
}
public function __get($name)
{
if(isset($this->{"_$name"}))
{
if($this->{"_$name"} instanceof QueryFragment)
return $this->{"_$name"};
return $this->{"_$name"};
}
return $this->{$name};
}
public function __set($name, $value)
{
if(isset($this->{"_$name"}) && is_array($this->{"_$name"}) && $name != 'fields' && $name != 'limit')
throw new \Exception('Property is read only');
switch($name)
{
case 'type':
$value = strtoupper($value);
$this->{"_$name"} = $value;
$this->assertTypeValid();
break;
case 'table':
$this->{"_$name"} = $value;
$this->assertTableValid();
break;
case 'fields':
if(!is_array($value))
throw new \Exception('Fields must be an array');
foreach($value as $k => $v)
$this->_fields->{$k} = $v;
break;
case 'limit':
if(!preg_match('/\d+\s*,\s*\d+/', $value))
throw new \Exception('Invalid SQL limit');
$this->_limit = $value;
break;
default:
$this->{$name} = $value;
break;
}
}
private function assertTypeValid()
{
switch($this->_type)
{
case 'INSERT':
case 'SELECT':
case 'UPDATE':
case 'DELETE':
break;
default:
throw new \Exception('Invalid query type');
break;
}
}
private function assertTableValid()
{
if(!is_string($this->_table) || empty($this->_table))
throw new \Exception('Invalid table');
}
public function in($field, $set, $placeholder='%d')
{
if(!is_string($field))
throw new \Exception('Invalid field name');
if(!is_array($set))
throw new \Exception('Set must be an array');
if(empty($set))
return;
$count = count($set);
$placeholders = implode(', ', array_fill(0, $count, $placeholder));
$this->_where[] = "$field IN ($placeholders)";
foreach($set as $item)
$this->_params[] = $item;
return $this;
}
public function build()
{
global $wpdb;
$this->assertTypeValid();
$this->assertTableValid();
$qstr = $this->_type;
switch($this->_type)
{
case 'SELECT':
if(empty($this->_fields))
throw new \Exception('You must specify fields to select');
$arr = $this->_fields->toArray();
if(!empty($arr))
$str = implode(', ', $arr);
else
$str = '*';
$qstr .= " $str FROM";
break;
case 'INSERT':
$qstr .= " INTO";
break;
case 'DELETE':
$qstr .= " FROM";
break;
}
$qstr .= " " . $this->_table;
if(!empty($this->_join))
{
$qstr .= ' ';
foreach($this->_join as $join)
$qstr .= 'JOIN ' . $join;
}
$where = $this->_where->toArray();
if(!empty($where))
$qstr .= " WHERE " . implode(' AND ', $where);
if(!empty($this->_limit))
$qstr .= " LIMIT {$this->_limit}";
$params = $this->_params->toArray();
if(empty($params))
return $qstr;
return $wpdb->prepare($qstr, $params);
}
}