2024-06-17 21:38:16 +02:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 - 2024 Jan Böhmer (https://github.com/jbtronics)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published
|
|
|
|
* by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
|
|
|
|
namespace App\Doctrine\Functions;
|
|
|
|
|
|
|
|
use Doctrine\DBAL\Driver\AbstractPostgreSQLDriver;
|
|
|
|
use Doctrine\DBAL\Platforms\MariaDBPlatform;
|
2024-06-17 22:33:40 +02:00
|
|
|
use Doctrine\DBAL\Platforms\PostgreSQLPlatform;
|
2024-06-17 21:38:16 +02:00
|
|
|
use Doctrine\ORM\Query\AST\Functions\FunctionNode;
|
|
|
|
use Doctrine\ORM\Query\AST\Node;
|
|
|
|
use Doctrine\ORM\Query\Parser;
|
|
|
|
use Doctrine\ORM\Query\SqlWalker;
|
|
|
|
use Doctrine\ORM\Query\TokenType;
|
|
|
|
|
|
|
|
class Natsort extends FunctionNode
|
|
|
|
{
|
2024-06-17 22:33:40 +02:00
|
|
|
private ?Node $field = null;
|
2024-06-17 21:38:16 +02:00
|
|
|
|
|
|
|
public function parse(Parser $parser): void
|
|
|
|
{
|
|
|
|
$parser->match(TokenType::T_IDENTIFIER);
|
|
|
|
$parser->match(TokenType::T_OPEN_PARENTHESIS);
|
|
|
|
|
|
|
|
$this->field = $parser->ArithmeticExpression();
|
|
|
|
|
|
|
|
$parser->match(TokenType::T_CLOSE_PARENTHESIS);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getSql(SqlWalker $sqlWalker): string
|
|
|
|
{
|
2024-06-17 22:33:40 +02:00
|
|
|
assert($this->field !== null, 'Field is not set');
|
|
|
|
|
2024-06-17 21:38:16 +02:00
|
|
|
$platform = $sqlWalker->getConnection()->getDatabasePlatform();
|
|
|
|
|
2024-06-17 22:33:40 +02:00
|
|
|
if ($platform instanceof PostgreSQLPlatform) {
|
2024-06-17 21:38:16 +02:00
|
|
|
return $this->field->dispatch($sqlWalker) . ' COLLATE numeric';
|
|
|
|
}
|
|
|
|
|
2024-06-17 22:33:40 +02:00
|
|
|
/*if ($platform instanceof MariaDBPlatform && $sqlWalker->getConnection()->getServerVersion()) {
|
2024-06-17 21:38:16 +02:00
|
|
|
|
2024-06-17 22:33:40 +02:00
|
|
|
}*/
|
2024-06-17 21:38:16 +02:00
|
|
|
|
|
|
|
//For every other platform, return the field as is
|
|
|
|
return $this->field->dispatch($sqlWalker);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|