A super easy PHP Framework for web development!
https://github.com/exacti/phacil-framework
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
407 lines
11 KiB
407 lines
11 KiB
<?php
|
|
/**
|
|
* Copyright © 2023 ExacTI Technology Solutions. All rights reserved.
|
|
* GPLv3 General License.
|
|
* https://exacti.com.br
|
|
* Phacil PHP Framework - https://github.com/exacti/phacil-framework
|
|
*/
|
|
|
|
namespace Phacil\Framework\MagiQL\Builder\Syntax;
|
|
|
|
use Phacil\Framework\MagiQL\Manipulation\Select;
|
|
use Phacil\Framework\MagiQL\Syntax\Column;
|
|
use Phacil\Framework\MagiQL\Syntax\SyntaxFactory;
|
|
use Phacil\Framework\MagiQL\Syntax\Where;
|
|
|
|
/**
|
|
* Class WhereWriter.
|
|
*/
|
|
class WhereWriter extends AbstractBaseWriter
|
|
{
|
|
/**
|
|
* @var array
|
|
*/
|
|
protected $matchMode = [
|
|
'natural' => '(MATCH({{columnNames}}) AGAINST({{columnValues}}))',
|
|
'boolean' => '(MATCH({{columnNames}}) AGAINST({{columnValues}} IN BOOLEAN MODE))',
|
|
'query_expansion' => '(MATCH({{columnNames}}) AGAINST({{columnValues}} WITH QUERY EXPANSION))',
|
|
];
|
|
|
|
/**
|
|
* @param Where $where
|
|
*
|
|
* @return string
|
|
*/
|
|
public function writeWhere(Where $where)
|
|
{
|
|
$clauses = $this->writeWhereClauses($where);
|
|
$clauses = \array_filter($clauses);
|
|
|
|
if (empty($clauses)) {
|
|
return '';
|
|
}
|
|
|
|
return \implode($this->writer->writeConjunction($where->getConjunction()), $clauses);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
*
|
|
* @return array
|
|
*/
|
|
public function writeWhereClauses(Where $where)
|
|
{
|
|
$whereArray = [];
|
|
|
|
$this->writeWhereMatches($where, $whereArray);
|
|
$this->writeWhereIns($where, $whereArray);
|
|
$this->writeWhereNotIns($where, $whereArray);
|
|
$this->writeWhereBetweens($where, $whereArray);
|
|
$this->writeWhereNotBetweens($where, $whereArray);
|
|
$this->writeWhereComparisons($where, $whereArray);
|
|
$this->writeWhereIsNulls($where, $whereArray);
|
|
$this->writeWhereIsNotNulls($where, $whereArray);
|
|
$this->writeWhereBooleans($where, $whereArray);
|
|
$this->writeExists($where, $whereArray);
|
|
$this->writeNotExists($where, $whereArray);
|
|
$this->writeSubWheres($where, $whereArray);
|
|
|
|
return $whereArray;
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereMatches(Where $where, array &$whereArray)
|
|
{
|
|
$matches = [];
|
|
|
|
foreach ($where->getMatches() as $values) {
|
|
$columns = SyntaxFactory::createColumns($values['columns'], $where->getTable());
|
|
$columnNames = $this->getColumnNames($columns);
|
|
|
|
$columnValues = array(\implode(' ', $values['values']));
|
|
$columnValues = \implode(', ', $this->writer->writeValues($columnValues));
|
|
|
|
$matches[] = \str_replace(
|
|
['{{columnNames}}', '{{columnValues}}'],
|
|
[$columnNames, $columnValues],
|
|
$this->matchMode[$values['mode']]
|
|
);
|
|
}
|
|
|
|
$whereArray = \array_merge($whereArray, $matches);
|
|
}
|
|
|
|
/**
|
|
* @param $columns
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function getColumnNames($columns)
|
|
{
|
|
$columnNames = [];
|
|
foreach ($columns as &$column) {
|
|
$columnNames[] = $this->columnWriter->writeColumn($column);
|
|
}
|
|
|
|
return \implode(', ', $columnNames);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereIns(Where $where, array &$whereArray)
|
|
{
|
|
$whereArray = \array_merge(
|
|
$whereArray,
|
|
$this->writeWhereIn($where, 'getIns', 'IN')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param string $method
|
|
* @param string $operation
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereIn(Where $where, $method, $operation)
|
|
{
|
|
$collection = [];
|
|
|
|
foreach ($where->$method() as $column => $values) {
|
|
$newColumn = array($column);
|
|
$column = SyntaxFactory::createColumn($newColumn, $where->getTable());
|
|
$column = $this->columnWriter->writeColumn($column);
|
|
|
|
$values = $this->writer->writeValues($values);
|
|
$values = \implode(', ', $values);
|
|
|
|
$collection[] = "({$column} $operation ({$values}))";
|
|
}
|
|
|
|
return $collection;
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereNotIns(Where $where, array &$whereArray)
|
|
{
|
|
$whereArray = \array_merge(
|
|
$whereArray,
|
|
$this->writeWhereIn($where, 'getNotIns', 'NOT IN')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereBetweens(Where $where, array &$whereArray)
|
|
{
|
|
$between = $where->getBetweens();
|
|
\array_walk(
|
|
$between,
|
|
function (&$between) {
|
|
|
|
$between = '('
|
|
.$this->columnWriter->writeColumn($between['subject'])
|
|
.' BETWEEN '
|
|
.$this->writer->writePlaceholderValue($between['a'])
|
|
.' AND '
|
|
.$this->writer->writePlaceholderValue($between['b'])
|
|
.')';
|
|
}
|
|
);
|
|
|
|
$whereArray = \array_merge($whereArray, $between);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereNotBetweens(Where $where, array &$whereArray)
|
|
{
|
|
$between = $where->getNotBetweens();
|
|
\array_walk(
|
|
$between,
|
|
function (&$between) {
|
|
|
|
$between = '('
|
|
.$this->columnWriter->writeColumn($between['subject'])
|
|
.' NOT BETWEEN '
|
|
.$this->writer->writePlaceholderValue($between['a'])
|
|
.' AND '
|
|
.$this->writer->writePlaceholderValue($between['b'])
|
|
.')';
|
|
}
|
|
);
|
|
|
|
$whereArray = \array_merge($whereArray, $between);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereComparisons(Where $where, array &$whereArray)
|
|
{
|
|
$comparisons = $where->getComparisons();
|
|
\array_walk(
|
|
$comparisons,
|
|
function (&$comparison) {
|
|
|
|
if (!is_array($comparison)) {
|
|
return;
|
|
}
|
|
|
|
$str = $this->writeWherePartialCondition($comparison['subject']);
|
|
$str .= $this->writer->writeConjunction($comparison['conjunction']);
|
|
$str .= $this->writeWherePartialCondition($comparison['target']);
|
|
|
|
$comparison = "($str)";
|
|
}
|
|
);
|
|
|
|
$whereArray = \array_merge($whereArray, $comparisons);
|
|
}
|
|
|
|
/**
|
|
* @param $subject
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function writeWherePartialCondition(&$subject)
|
|
{
|
|
if ($subject instanceof Column) {
|
|
$str = $this->columnWriter->writeColumn($subject);
|
|
} elseif ($subject instanceof Select) {
|
|
$selectWriter = WriterFactory::createSelectWriter($this->writer, $this->placeholderWriter);
|
|
$str = '('.$selectWriter->write($subject).')';
|
|
} else {
|
|
$str = $this->writer->writePlaceholderValue($subject);
|
|
//$str = $subject;
|
|
}
|
|
|
|
return $str;
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereIsNulls(Where $where, array &$whereArray)
|
|
{
|
|
$whereArray = \array_merge(
|
|
$whereArray,
|
|
$this->writeWhereIsNullable($where, 'getNull', 'writeIsNull')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param string $getMethod
|
|
* @param string $writeMethod
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereIsNullable(Where $where, $getMethod, $writeMethod)
|
|
{
|
|
$collection = $where->$getMethod();
|
|
|
|
\array_walk(
|
|
$collection,
|
|
function (&$collection) use ($writeMethod) {
|
|
$collection =
|
|
'('.$this->columnWriter->writeColumn($collection['subject'])
|
|
.$this->writer->$writeMethod().')';
|
|
}
|
|
);
|
|
|
|
return $collection;
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereIsNotNulls(Where $where, array &$whereArray)
|
|
{
|
|
$whereArray = \array_merge(
|
|
$whereArray,
|
|
$this->writeWhereIsNullable($where, 'getNotNull', 'writeIsNotNull')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeWhereBooleans(Where $where, array &$whereArray)
|
|
{
|
|
$booleans = $where->getBooleans();
|
|
$placeholderWriter = $this->placeholderWriter;
|
|
|
|
\array_walk(
|
|
$booleans,
|
|
function (&$boolean) use (&$placeholderWriter) {
|
|
$column = $this->columnWriter->writeColumn($boolean['subject']);
|
|
$value = $this->placeholderWriter->add($boolean['value']);
|
|
|
|
$boolean = '(ISNULL('.$column.', 0) = '.$value.')';
|
|
}
|
|
);
|
|
|
|
$whereArray = \array_merge($whereArray, $booleans);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeExists(Where $where, array &$whereArray)
|
|
{
|
|
$whereArray = \array_merge(
|
|
$whereArray,
|
|
$this->writeExistence($where, 'getExists', 'EXISTS')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param string $method
|
|
* @param string $operation
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeExistence(Where $where, $method, $operation)
|
|
{
|
|
$exists = [];
|
|
|
|
foreach ($where->$method() as $select) {
|
|
$exists[] = "$operation (".$this->writer->write($select, false).')';
|
|
}
|
|
|
|
return $exists;
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeNotExists(Where $where, array &$whereArray)
|
|
{
|
|
$whereArray = \array_merge(
|
|
$whereArray,
|
|
$this->writeExistence($where, 'getNotExists', 'NOT EXISTS')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param Where $where
|
|
* @param array $whereArray
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function writeSubWheres(Where $where, array &$whereArray)
|
|
{
|
|
$subWheres = $where->getSubWheres();
|
|
|
|
\array_walk(
|
|
$subWheres,
|
|
function (&$subWhere) {
|
|
$subWhere = "({$this->writeWhere($subWhere)})";
|
|
}
|
|
);
|
|
|
|
$whereArray = \array_merge($whereArray, $subWheres);
|
|
}
|
|
}
|
|
|