. */ declare(strict_types=1); namespace App\Doctrine\Helpers; use Doctrine\DBAL\Platforms\AbstractMySQLPlatform; use Doctrine\ORM\QueryBuilder; /** * The purpose of this class is to provide help with using the FIELD functions in Doctrine, which depends on the database platform. */ final class FieldHelper { /** * Add an ORDER BY FIELD expression to the query builder. The correct FIELD function is used depending on the database platform. * In this function an already bound paramater is used. If you want to a not already bound value, use the addOrderByFieldValues function. * @param QueryBuilder $qb The query builder to apply the order by to * @param string $field_expr The expression to compare with the values * @param string|int $bound_param The already bound parameter to use for the values * @param string|null $order The order direction (ASC or DESC) * @return QueryBuilder */ public static function addOrderByFieldParam(QueryBuilder $qb, string $field_expr, string|int $bound_param, ?string $order = null): QueryBuilder { $db_platform = $qb->getEntityManager()->getConnection()->getDatabasePlatform(); //If we are on MySQL, we can just use the FIELD function if ($db_platform instanceof AbstractMySQLPlatform) { $param = (is_numeric($bound_param) ? '?' : ":") . (string) $bound_param; $qb->orderBy("FIELD($field_expr, $param)", $order); } else { //Retrieve the values from the bound parameter $param = $qb->getParameter($bound_param); if ($param === null) { throw new \InvalidArgumentException("The bound parameter $bound_param does not exist."); } //Generate a unique key from the field_expr $key = 'field2_' . (string) $bound_param; self::addSqliteOrderBy($qb, $field_expr, $key, $param->getValue(), $order); } return $qb; } private static function addSqliteOrderBy(QueryBuilder $qb, string $field_expr, string $key, array $values, ?string $order = null): void { //Otherwise we emulate it using $qb->orderBy("LOCATE(CONCAT($field_expr, ','), :$key)", $order); //The value have to end with a comma, otherwise the search using INSTR will fail $qb->setParameter($key, implode(',', $values) . ','); } /** * Add an ORDER BY FIELD expression to the query builder. The correct FIELD function is used depending on the database platform. * In this function the values are passed as an array. If you want to reuse an existing bound parameter, use the addOrderByFieldParam function. * @param QueryBuilder $qb The query builder to apply the order by to * @param string $field_expr The expression to compare with the values * @param array $values The values to compare with the expression as array * @param string|null $order The order direction (ASC or DESC) * @return QueryBuilder */ public static function addOrderByFieldValues(QueryBuilder $qb, string $field_expr, array $values, ?string $order = null): QueryBuilder { $db_platform = $qb->getEntityManager()->getConnection()->getDatabasePlatform(); $key = 'field2_' . md5($field_expr); //If we are on MySQL, we can just use the FIELD function if ($db_platform instanceof AbstractMySQLPlatform) { $qb->orderBy("FIELD($field_expr, :field_arr)", $order); } else { //Generate a unique key from the field_expr //Otherwise we have to it using the FIELD2 function self::addSqliteOrderBy($qb, $field_expr, $key, $values, $order); } $qb->setParameter($key, $values); return $qb; } }