2024-07-21 01:47:21 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Daniel J. Summers <daniel@bitbadger.solutions>
|
|
|
|
* @license MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2024-06-08 23:58:45 +00:00
|
|
|
|
|
|
|
namespace BitBadger\PDODocument;
|
|
|
|
|
2024-07-21 01:47:21 +00:00
|
|
|
use Exception;
|
|
|
|
|
2024-06-08 23:58:45 +00:00
|
|
|
/**
|
|
|
|
* Criteria for a field WHERE clause
|
|
|
|
*/
|
|
|
|
class Field
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Constructor
|
|
|
|
*
|
|
|
|
* NOTE: Use static construction methods rather than using this directly; different properties are required
|
|
|
|
* depending on the operation being performed. This is only public so it can be tested.
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field
|
|
|
|
* @param Op $op The operation by which the field will be compared
|
|
|
|
* @param mixed $value The value of the field
|
|
|
|
* @param string $paramName The name of the parameter to which this should be bound
|
|
|
|
* @param string $qualifier A table qualifier for the `data` column
|
|
|
|
*/
|
|
|
|
public function __construct(public string $fieldName = '', public Op $op = Op::EQ, public mixed $value = '',
|
|
|
|
public string $paramName = '', public string $qualifier = '') { }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Append the parameter name and value to the given associative array
|
|
|
|
*
|
2024-08-30 13:24:25 +00:00
|
|
|
* @param array<string, mixed> $existing The existing parameters
|
|
|
|
* @return array<string, mixed> The given parameter array with this field's name and value(s) appended
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
|
|
|
public function appendParameter(array $existing): array
|
|
|
|
{
|
|
|
|
switch ($this->op) {
|
|
|
|
case Op::EX:
|
|
|
|
case Op::NEX:
|
|
|
|
break;
|
|
|
|
case Op::BT:
|
|
|
|
$existing["{$this->paramName}min"] = $this->value[0];
|
|
|
|
$existing["{$this->paramName}max"] = $this->value[1];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$existing[$this->paramName] = $this->value;
|
|
|
|
}
|
|
|
|
return $existing;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the WHERE clause fragment for this parameter
|
|
|
|
*
|
|
|
|
* @return string The WHERE clause fragment for this parameter
|
2024-07-21 01:47:21 +00:00
|
|
|
* @throws Exception|DocumentException If the database mode has not been set
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
|
|
|
public function toWhere(): string
|
|
|
|
{
|
2024-07-21 01:47:21 +00:00
|
|
|
$mode = Configuration::mode('make field WHERE clause');
|
|
|
|
$fieldName = (empty($this->qualifier) ? '' : "$this->qualifier.") . 'data' . match (true) {
|
2024-06-21 13:46:41 +00:00
|
|
|
!str_contains($this->fieldName, '.') => "->>'$this->fieldName'",
|
2024-07-21 01:47:21 +00:00
|
|
|
$mode === Mode::PgSQL => "#>>'{" . implode(',', explode('.', $this->fieldName)) . "}'",
|
2024-07-22 02:02:16 +00:00
|
|
|
$mode === Mode::SQLite => "->>'" . implode("'->>'", explode('.', $this->fieldName)) . "'",
|
2024-06-21 13:46:41 +00:00
|
|
|
};
|
2024-07-21 01:47:21 +00:00
|
|
|
$fieldPath = match ($mode) {
|
2024-06-21 13:46:41 +00:00
|
|
|
Mode::PgSQL => match (true) {
|
2024-07-21 01:47:21 +00:00
|
|
|
$this->op === Op::BT => is_numeric($this->value[0]) ? "($fieldName)::numeric" : $fieldName,
|
2024-06-21 13:46:41 +00:00
|
|
|
is_numeric($this->value) => "($fieldName)::numeric",
|
2024-07-22 02:02:16 +00:00
|
|
|
default => $fieldName,
|
2024-06-21 13:46:41 +00:00
|
|
|
},
|
2024-07-22 02:02:16 +00:00
|
|
|
default => $fieldName,
|
2024-06-21 13:46:41 +00:00
|
|
|
};
|
2024-06-08 23:58:45 +00:00
|
|
|
$criteria = match ($this->op) {
|
|
|
|
Op::EX, Op::NEX => '',
|
|
|
|
Op::BT => " {$this->paramName}min AND {$this->paramName}max",
|
2024-07-22 02:02:16 +00:00
|
|
|
default => " $this->paramName",
|
2024-06-08 23:58:45 +00:00
|
|
|
};
|
2024-07-21 01:47:21 +00:00
|
|
|
return $fieldPath . ' ' . $this->op->toSQL() . $criteria;
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an equals (=) field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field against which the value will be compared
|
|
|
|
* @param mixed $value The value for which equality will be checked
|
|
|
|
* @param string $paramName The name of the parameter to which this should be bound (optional; generated if blank)
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function EQ(string $fieldName, mixed $value, string $paramName = ''): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::EQ, $value, $paramName);
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a greater than (>) field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field against which the value will be compared
|
|
|
|
* @param mixed $value The value for the greater than comparison
|
|
|
|
* @param string $paramName The name of the parameter to which this should be bound (optional; generated if blank)
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function GT(string $fieldName, mixed $value, string $paramName = ''): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::GT, $value, $paramName);
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a greater than or equal to (>=) field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field against which the value will be compared
|
|
|
|
* @param mixed $value The value for the greater than or equal to comparison
|
|
|
|
* @param string $paramName The name of the parameter to which this should be bound (optional; generated if blank)
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function GE(string $fieldName, mixed $value, string $paramName = ''): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::GE, $value, $paramName);
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a less than (<) field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field against which the value will be compared
|
|
|
|
* @param mixed $value The value for the less than comparison
|
|
|
|
* @param string $paramName The name of the parameter to which this should be bound (optional; generated if blank)
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function LT(string $fieldName, mixed $value, string $paramName = ''): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::LT, $value, $paramName);
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a less than or equal to (<=) field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field against which the value will be compared
|
|
|
|
* @param mixed $value The value for the less than or equal to comparison
|
|
|
|
* @param string $paramName The name of the parameter to which this should be bound (optional; generated if blank)
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function LE(string $fieldName, mixed $value, string $paramName = ''): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::LE, $value, $paramName);
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a not equals (<>) field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field against which the value will be compared
|
|
|
|
* @param mixed $value The value for the not equals comparison
|
|
|
|
* @param string $paramName The name of the parameter to which this should be bound (optional; generated if blank)
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function NE(string $fieldName, mixed $value, string $paramName = ''): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::NE, $value, $paramName);
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a BETWEEN field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field against which the value will be compared
|
|
|
|
* @param mixed $minValue The lower value for range
|
|
|
|
* @param mixed $maxValue The upper value for the range
|
|
|
|
* @param string $paramName The name of the parameter to which this should be bound (optional; generated if blank)
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function BT(string $fieldName, mixed $minValue, mixed $maxValue, string $paramName = ''): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::BT, [$minValue, $maxValue], $paramName);
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an exists (IS NOT NULL) field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field for which existence will be checked
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function EX(string $fieldName): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::EX, '', '');
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a not exists (IS NULL) field criterion
|
|
|
|
*
|
|
|
|
* @param string $fieldName The name of the field for which non-existence will be checked
|
2024-08-30 13:24:25 +00:00
|
|
|
* @return self The field with the requested criterion
|
2024-06-08 23:58:45 +00:00
|
|
|
*/
|
2024-08-30 13:24:25 +00:00
|
|
|
public static function NEX(string $fieldName): self
|
2024-06-08 23:58:45 +00:00
|
|
|
{
|
2024-08-30 13:24:25 +00:00
|
|
|
return new self($fieldName, Op::NEX, '', '');
|
2024-06-08 23:58:45 +00:00
|
|
|
}
|
|
|
|
}
|