2020-04-02 00:02:51 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Driver\SQL;
|
|
|
|
|
|
|
|
use \Api\Parameter\Parameter;
|
|
|
|
|
2021-01-07 14:59:36 +01:00
|
|
|
use DateTime;
|
2020-04-02 00:02:51 +02:00
|
|
|
use \Driver\SQL\Column\Column;
|
|
|
|
use \Driver\SQL\Column\IntColumn;
|
|
|
|
use \Driver\SQL\Column\SerialColumn;
|
|
|
|
use \Driver\SQL\Column\StringColumn;
|
|
|
|
use \Driver\SQL\Column\EnumColumn;
|
|
|
|
use \Driver\SQL\Column\DateTimeColumn;
|
|
|
|
use Driver\SQL\Column\BoolColumn;
|
|
|
|
use Driver\SQL\Column\JsonColumn;
|
|
|
|
|
2020-06-24 16:09:04 +02:00
|
|
|
use Driver\SQL\Condition\CondRegex;
|
2020-06-17 23:50:08 +02:00
|
|
|
use Driver\SQL\Expression\Add;
|
2021-04-08 19:08:05 +02:00
|
|
|
use Driver\SQL\Expression\CurrentTimeStamp;
|
|
|
|
use Driver\SQL\Expression\DateAdd;
|
|
|
|
use Driver\SQL\Expression\Expression;
|
2021-04-08 18:29:47 +02:00
|
|
|
use Driver\SQL\Query\CreateProcedure;
|
|
|
|
use Driver\SQL\Query\CreateTrigger;
|
|
|
|
use Driver\SQL\Query\Query;
|
2020-04-03 17:39:58 +02:00
|
|
|
use Driver\SQL\Strategy\Strategy;
|
2020-04-02 00:02:51 +02:00
|
|
|
use \Driver\SQL\Strategy\UpdateStrategy;
|
2021-04-08 18:29:47 +02:00
|
|
|
use Driver\SQL\Type\CurrentColumn;
|
|
|
|
use Driver\SQL\Type\CurrentTable;
|
|
|
|
use Driver\SQL\Type\Trigger;
|
2020-04-02 00:02:51 +02:00
|
|
|
|
|
|
|
class MySQL extends SQL {
|
|
|
|
|
|
|
|
public function __construct($connectionData) {
|
2020-04-02 01:48:46 +02:00
|
|
|
parent::__construct($connectionData);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function checkRequirements() {
|
|
|
|
return function_exists('mysqli_connect');
|
|
|
|
}
|
|
|
|
|
2020-04-02 15:08:14 +02:00
|
|
|
public function getDriverName() {
|
2020-04-02 01:48:46 +02:00
|
|
|
return 'mysqli';
|
2020-04-02 00:02:51 +02:00
|
|
|
}
|
|
|
|
|
2020-04-03 18:09:01 +02:00
|
|
|
// Connection Management
|
2020-04-02 00:02:51 +02:00
|
|
|
public function connect() {
|
|
|
|
|
|
|
|
if(!is_null($this->connection)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@$this->connection = mysqli_connect(
|
|
|
|
$this->connectionData->getHost(),
|
|
|
|
$this->connectionData->getLogin(),
|
|
|
|
$this->connectionData->getPassword(),
|
|
|
|
$this->connectionData->getProperty('database'),
|
|
|
|
$this->connectionData->getPort()
|
|
|
|
);
|
|
|
|
|
2020-04-03 17:39:58 +02:00
|
|
|
if (mysqli_connect_errno()) {
|
2020-04-02 00:02:51 +02:00
|
|
|
$this->lastError = "Failed to connect to MySQL: " . mysqli_connect_error();
|
|
|
|
$this->connection = NULL;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-04-02 01:48:46 +02:00
|
|
|
mysqli_set_charset($this->connection, $this->connectionData->getProperty('encoding', 'UTF-8'));
|
2020-04-02 00:02:51 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function disconnect() {
|
|
|
|
if(is_null($this->connection)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
mysqli_close($this->connection);
|
2020-04-03 17:39:58 +02:00
|
|
|
return true;
|
2020-04-02 00:02:51 +02:00
|
|
|
}
|
|
|
|
|
2021-04-08 18:29:47 +02:00
|
|
|
public function getLastError(): string {
|
2020-04-02 00:02:51 +02:00
|
|
|
$lastError = parent::getLastError();
|
|
|
|
if (empty($lastError)) {
|
|
|
|
$lastError = mysqli_error($this->connection);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $lastError;
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getPreparedParams($values) {
|
|
|
|
$sqlParams = array('');
|
|
|
|
foreach($values as $value) {
|
|
|
|
$paramType = Parameter::parseType($value);
|
|
|
|
switch($paramType) {
|
|
|
|
case Parameter::TYPE_BOOLEAN:
|
|
|
|
$value = $value ? 1 : 0;
|
2020-04-03 17:39:58 +02:00
|
|
|
$sqlParams[0] .= 'i';
|
|
|
|
break;
|
2020-04-02 00:02:51 +02:00
|
|
|
case Parameter::TYPE_INT:
|
|
|
|
$sqlParams[0] .= 'i';
|
|
|
|
break;
|
|
|
|
case Parameter::TYPE_FLOAT:
|
|
|
|
$sqlParams[0] .= 'd';
|
|
|
|
break;
|
|
|
|
case Parameter::TYPE_DATE:
|
2021-01-07 14:59:36 +01:00
|
|
|
if ($value instanceof DateTime) {
|
|
|
|
$value = $value->format('Y-m-d');
|
|
|
|
}
|
2020-04-02 00:02:51 +02:00
|
|
|
$sqlParams[0] .= 's';
|
|
|
|
break;
|
|
|
|
case Parameter::TYPE_TIME:
|
2021-01-07 14:59:36 +01:00
|
|
|
if ($value instanceof DateTime) {
|
|
|
|
$value = $value->format('H:i:s');
|
|
|
|
}
|
2020-04-02 00:02:51 +02:00
|
|
|
$sqlParams[0] .= 's';
|
|
|
|
break;
|
|
|
|
case Parameter::TYPE_DATE_TIME:
|
2021-01-07 14:59:36 +01:00
|
|
|
if ($value instanceof DateTime) {
|
|
|
|
$value = $value->format('Y-m-d H:i:s');
|
|
|
|
}
|
2020-04-02 00:02:51 +02:00
|
|
|
$sqlParams[0] .= 's';
|
|
|
|
break;
|
2020-06-27 01:18:10 +02:00
|
|
|
case Parameter::TYPE_ARRAY:
|
|
|
|
$value = json_encode($value);
|
|
|
|
$sqlParams[0] .= 's';
|
|
|
|
break;
|
2020-04-02 00:02:51 +02:00
|
|
|
case Parameter::TYPE_EMAIL:
|
|
|
|
default:
|
|
|
|
$sqlParams[0] .= 's';
|
|
|
|
}
|
|
|
|
|
|
|
|
$sqlParams[] = $value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $sqlParams;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function execute($query, $values = NULL, $returnValues = false) {
|
|
|
|
|
|
|
|
$resultRows = array();
|
|
|
|
$this->lastError = "";
|
|
|
|
|
|
|
|
if (is_null($values) || empty($values)) {
|
|
|
|
$res = mysqli_query($this->connection, $query);
|
|
|
|
$success = $res !== FALSE;
|
|
|
|
if ($success && $returnValues) {
|
|
|
|
while($row = $res->fetch_assoc()) {
|
|
|
|
$resultRows[] = $row;
|
|
|
|
}
|
|
|
|
$res->close();
|
|
|
|
}
|
|
|
|
} else if($stmt = $this->connection->prepare($query)) {
|
|
|
|
|
|
|
|
$success = false;
|
|
|
|
$sqlParams = $this->getPreparedParams($values);
|
|
|
|
$tmp = array();
|
|
|
|
foreach($sqlParams as $key => $value) $tmp[$key] = &$sqlParams[$key];
|
|
|
|
if(call_user_func_array(array($stmt, "bind_param"), $tmp)) {
|
|
|
|
if($stmt->execute()) {
|
|
|
|
if ($returnValues) {
|
|
|
|
$res = $stmt->get_result();
|
|
|
|
if($res) {
|
|
|
|
while($row = $res->fetch_assoc()) {
|
|
|
|
$resultRows[] = $row;
|
|
|
|
}
|
|
|
|
$res->close();
|
|
|
|
$success = true;
|
|
|
|
} else {
|
|
|
|
$this->lastError = "PreparedStatement::get_result failed: $stmt->error ($stmt->errno)";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$success = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->lastError = "PreparedStatement::execute failed: $stmt->error ($stmt->errno)";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$this->lastError = "PreparedStatement::prepare failed: $stmt->error ($stmt->errno)";
|
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->close();
|
|
|
|
} else {
|
|
|
|
$success = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ($success && $returnValues) ? $resultRows : $success;
|
|
|
|
}
|
|
|
|
|
2021-04-08 18:29:47 +02:00
|
|
|
public function getOnDuplicateStrategy(?Strategy $strategy, &$params): ?string {
|
2020-04-03 17:39:58 +02:00
|
|
|
if (is_null($strategy)) {
|
|
|
|
return "";
|
|
|
|
} else if ($strategy instanceof UpdateStrategy) {
|
|
|
|
$updateValues = array();
|
|
|
|
foreach($strategy->getValues() as $key => $value) {
|
|
|
|
$leftColumn = $this->columnName($key);
|
|
|
|
if ($value instanceof Column) {
|
|
|
|
$columnName = $this->columnName($value->getName());
|
2020-06-25 16:54:58 +02:00
|
|
|
$updateValues[] = "$leftColumn=VALUES($columnName)";
|
2020-06-17 23:50:08 +02:00
|
|
|
} else if($value instanceof Add) {
|
2021-04-08 19:08:05 +02:00
|
|
|
$columnName = $this->columnName($value->getLHS());
|
2020-06-17 23:50:08 +02:00
|
|
|
$operator = $value->getOperator();
|
|
|
|
$value = $value->getValue();
|
|
|
|
$updateValues[] = "$leftColumn=$columnName$operator" . $this->addValue($value, $params);
|
2020-04-03 17:39:58 +02:00
|
|
|
} else {
|
2020-06-17 23:50:08 +02:00
|
|
|
$updateValues[] = "$leftColumn=" . $this->addValue($value, $params);
|
2020-04-02 00:02:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-03 17:39:58 +02:00
|
|
|
return " ON DUPLICATE KEY UPDATE " . implode(",", $updateValues);
|
|
|
|
} else {
|
|
|
|
$strategyClass = get_class($strategy);
|
|
|
|
$this->lastError = "ON DUPLICATE Strategy $strategyClass is not supported yet.";
|
2021-04-08 18:29:47 +02:00
|
|
|
return null;
|
2020-04-02 00:02:51 +02:00
|
|
|
}
|
2020-04-03 17:39:58 +02:00
|
|
|
}
|
2020-04-02 00:02:51 +02:00
|
|
|
|
2020-04-03 17:39:58 +02:00
|
|
|
protected function fetchReturning($res, string $returningCol) {
|
|
|
|
$this->lastInsertId = mysqli_insert_id($this->connection);
|
2020-04-02 00:02:51 +02:00
|
|
|
}
|
|
|
|
|
2021-04-08 18:29:47 +02:00
|
|
|
public function getColumnType(Column $column): ?string {
|
2020-04-02 00:02:51 +02:00
|
|
|
if ($column instanceof StringColumn) {
|
|
|
|
$maxSize = $column->getMaxSize();
|
|
|
|
if ($maxSize) {
|
2021-04-08 18:29:47 +02:00
|
|
|
return "VARCHAR($maxSize)";
|
2020-04-02 00:02:51 +02:00
|
|
|
} else {
|
2021-04-08 18:29:47 +02:00
|
|
|
return "TEXT";
|
2020-04-02 00:02:51 +02:00
|
|
|
}
|
|
|
|
} else if($column instanceof SerialColumn) {
|
2021-04-08 18:29:47 +02:00
|
|
|
return "INTEGER AUTO_INCREMENT";
|
2020-04-02 00:02:51 +02:00
|
|
|
} else if($column instanceof IntColumn) {
|
2021-04-08 18:29:47 +02:00
|
|
|
return "INTEGER";
|
2020-04-02 00:02:51 +02:00
|
|
|
} else if($column instanceof DateTimeColumn) {
|
2021-04-08 18:29:47 +02:00
|
|
|
return "DATETIME";
|
2020-04-02 00:02:51 +02:00
|
|
|
} else if($column instanceof BoolColumn) {
|
2021-04-08 18:29:47 +02:00
|
|
|
return "BOOLEAN";
|
2020-04-02 00:02:51 +02:00
|
|
|
} else if($column instanceof JsonColumn) {
|
2021-04-08 18:29:47 +02:00
|
|
|
return "LONGTEXT"; # some maria db setups don't allow JSON here…
|
2020-04-02 00:02:51 +02:00
|
|
|
} else {
|
|
|
|
$this->lastError = "Unsupported Column Type: " . get_class($column);
|
|
|
|
return NULL;
|
|
|
|
}
|
2021-04-08 18:29:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getColumnDefinition(Column $column): ?string {
|
|
|
|
$columnName = $this->columnName($column->getName());
|
|
|
|
$defaultValue = $column->getDefaultValue();
|
|
|
|
$type = $this->getColumnType($column);
|
|
|
|
if (!$type) {
|
|
|
|
if ($column instanceof EnumColumn) {
|
|
|
|
$values = array();
|
|
|
|
foreach($column->getValues() as $value) {
|
|
|
|
$values[] = $this->getValueDefinition($value);
|
|
|
|
}
|
|
|
|
|
|
|
|
$values = implode(",", $values);
|
|
|
|
$type = "ENUM($values)";
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($type === "LONGTEXT") {
|
|
|
|
$defaultValue = NULL; # must be null :(
|
|
|
|
}
|
2020-04-02 00:02:51 +02:00
|
|
|
|
|
|
|
$notNull = $column->notNull() ? " NOT NULL" : "";
|
2020-04-02 21:32:26 +02:00
|
|
|
if (!is_null($defaultValue) || !$column->notNull()) {
|
2020-06-27 22:53:36 +02:00
|
|
|
$defaultValue = " DEFAULT " . $this->getValueDefinition($defaultValue);
|
2020-04-02 21:32:26 +02:00
|
|
|
} else {
|
|
|
|
$defaultValue = "";
|
2020-04-02 01:48:46 +02:00
|
|
|
}
|
2020-04-02 15:08:14 +02:00
|
|
|
|
2020-04-03 14:46:29 +02:00
|
|
|
return "$columnName $type$notNull$defaultValue";
|
2020-04-02 00:02:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getValueDefinition($value) {
|
2020-04-02 21:19:06 +02:00
|
|
|
if (is_numeric($value)) {
|
2020-04-02 00:02:51 +02:00
|
|
|
return $value;
|
2020-04-02 21:19:06 +02:00
|
|
|
} else if(is_bool($value)) {
|
|
|
|
return $value ? "TRUE" : "FALSE";
|
2020-04-02 00:02:51 +02:00
|
|
|
} else if(is_null($value)) {
|
|
|
|
return "NULL";
|
|
|
|
} else if($value instanceof Keyword) {
|
|
|
|
return $value->getValue();
|
2021-04-08 19:08:05 +02:00
|
|
|
} else if ($value instanceof CurrentTimeStamp) {
|
|
|
|
return "CURRENT_TIMESTAMP";
|
2020-04-02 00:02:51 +02:00
|
|
|
} else {
|
|
|
|
$str = addslashes($value);
|
|
|
|
return "'$str'";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-08 18:29:47 +02:00
|
|
|
public function addValue($val, &$params = NULL) {
|
2020-04-02 01:48:46 +02:00
|
|
|
if ($val instanceof Keyword) {
|
|
|
|
return $val->getValue();
|
2021-04-08 18:29:47 +02:00
|
|
|
} else if ($val instanceof CurrentColumn) {
|
|
|
|
return $val->getName();
|
|
|
|
} else if ($val instanceof Column) {
|
|
|
|
return $this->columnName($val->getName());
|
2021-04-08 19:08:05 +02:00
|
|
|
} else if ($val instanceof Expression) {
|
|
|
|
return $this->createExpression($val, $params);
|
2020-04-02 01:48:46 +02:00
|
|
|
} else {
|
|
|
|
$params[] = $val;
|
|
|
|
return "?";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-08 18:29:47 +02:00
|
|
|
public function tableName($table): string {
|
2020-04-02 21:19:06 +02:00
|
|
|
if (is_array($table)) {
|
|
|
|
$tables = array();
|
|
|
|
foreach($table as $t) $tables[] = $this->tableName($t);
|
|
|
|
return implode(",", $tables);
|
|
|
|
} else {
|
|
|
|
return "`$table`";
|
|
|
|
}
|
2020-04-02 15:08:14 +02:00
|
|
|
}
|
|
|
|
|
2021-04-08 18:29:47 +02:00
|
|
|
public function columnName($col): string {
|
2020-04-02 16:16:58 +02:00
|
|
|
if ($col instanceof Keyword) {
|
2020-04-02 15:08:14 +02:00
|
|
|
return $col->getValue();
|
2020-04-02 21:19:06 +02:00
|
|
|
} elseif(is_array($col)) {
|
|
|
|
$columns = array();
|
|
|
|
foreach($col as $c) $columns[] = $this->columnName($c);
|
|
|
|
return implode(",", $columns);
|
2020-04-02 15:08:14 +02:00
|
|
|
} else {
|
2020-04-02 16:16:58 +02:00
|
|
|
if (($index = strrpos($col, ".")) !== FALSE) {
|
|
|
|
$tableName = $this->tableName(substr($col, 0, $index));
|
|
|
|
$columnName = $this->columnName(substr($col, $index + 1));
|
|
|
|
return "$tableName.$columnName";
|
|
|
|
} else if(($index = stripos($col, " as ")) !== FALSE) {
|
|
|
|
$columnName = $this->columnName(trim(substr($col, 0, $index)));
|
|
|
|
$alias = trim(substr($col, $index + 4));
|
|
|
|
return "$columnName as $alias";
|
|
|
|
} else {
|
|
|
|
return "`$col`";
|
|
|
|
}
|
2020-04-02 15:08:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-19 13:13:13 +02:00
|
|
|
public function getStatus() {
|
|
|
|
return mysqli_stat($this->connection);
|
|
|
|
}
|
2021-04-08 18:29:47 +02:00
|
|
|
|
|
|
|
public function createTriggerBody(CreateTrigger $trigger): ?string {
|
|
|
|
$values = array();
|
|
|
|
|
|
|
|
foreach ($trigger->getProcedure()->getParameters() as $param) {
|
|
|
|
if ($param instanceof CurrentTable) {
|
|
|
|
$values[] = $this->getUnsafeValue($trigger->getTable());
|
|
|
|
} else {
|
2021-04-08 19:24:17 +02:00
|
|
|
$prefix = ($trigger->getEvent() !== "DELETE" ? "NEW." : "OLD.");
|
|
|
|
$values[] = $this->columnName($prefix . $param->getName());
|
2021-04-08 18:29:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$procName = $trigger->getProcedure()->getName();
|
|
|
|
$procParameters = implode(",", $values);
|
|
|
|
return "CALL $procName($procParameters)";
|
|
|
|
}
|
|
|
|
|
|
|
|
private function getParameterDefinition(Column $parameter, bool $out = false): string {
|
|
|
|
$out = ($out ? "OUT" : "IN");
|
|
|
|
$name = $parameter->getName();
|
|
|
|
$type = $this->getColumnType($parameter);
|
|
|
|
return "$out $name $type";
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getProcedureHead(CreateProcedure $procedure): ?string {
|
|
|
|
$name = $procedure->getName();
|
|
|
|
$returns = $procedure->getReturns();
|
|
|
|
$paramDefs = [];
|
|
|
|
|
|
|
|
foreach ($procedure->getParameters() as $param) {
|
|
|
|
if ($param instanceof Column) {
|
|
|
|
$paramDefs[] = $this->getParameterDefinition($param);
|
|
|
|
} else {
|
|
|
|
$this->setLastError("PROCEDURE parameter type " . gettype($returns) . " is not implemented yet");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($returns) {
|
|
|
|
if ($returns instanceof Column) {
|
|
|
|
$paramDefs[] = $this->getParameterDefinition($returns, true);
|
|
|
|
} else if (!($returns instanceof Trigger)) { // mysql does not need to return triggers here
|
|
|
|
$this->setLastError("PROCEDURE RETURN type " . gettype($returns) . " is not implemented yet");
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$paramDefs = implode(",", $paramDefs);
|
|
|
|
return "CREATE PROCEDURE $name($paramDefs)";
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function buildUnsafe(Query $statement): string {
|
|
|
|
$params = [];
|
|
|
|
$query = $statement->build($params);
|
|
|
|
|
|
|
|
foreach ($params as $value) {
|
|
|
|
$query = preg_replace("?", $this->getUnsafeValue($value), $query, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
2021-04-08 19:08:05 +02:00
|
|
|
|
|
|
|
protected function createExpression(Expression $exp, array &$params) {
|
|
|
|
if ($exp instanceof DateAdd) {
|
|
|
|
$lhs = $this->addValue($exp->getLHS(), $params);
|
|
|
|
$rhs = $this->addValue($exp->getRHS(), $params);
|
|
|
|
$unit = $exp->getUnit();
|
|
|
|
return "DATE_ADD($lhs, INTERVAL $rhs $unit)";
|
|
|
|
} else if ($exp instanceof CurrentTimeStamp) {
|
|
|
|
return "NOW()";
|
|
|
|
} else {
|
|
|
|
return parent::createExpression($exp, $params);
|
|
|
|
}
|
|
|
|
}
|
2020-04-03 17:39:58 +02:00
|
|
|
}
|