1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/lib/Doctrine/Query/Condition.php

47 lines
1.4 KiB
PHP

<?php
Doctrine::autoload("Doctrine_Query_Part");
abstract class Doctrine_Query_Condition extends Doctrine_Query_Part {
/**
* DQL CONDITION PARSER
* parses the where/having part of the query string
*
*
* @param string $str
* @return string
*/
final public function parse($str) {
$tmp = trim($str);
$parts = Doctrine_Query::bracketExplode($str, array(' \&\& ', ' AND '), '(', ')');
if(count($parts) > 1) {
$ret = array();
foreach($parts as $part) {
$part = Doctrine_Query::bracketTrim($part, '(', ')');
$ret[] = $this->parse($part);
}
$r = implode(' AND ',$ret);
} else {
$parts = Doctrine_Query::bracketExplode($str, array(' \|\| ', ' OR '), '(', ')');
if(count($parts) > 1) {
$ret = array();
foreach($parts as $part) {
$part = Doctrine_Query::bracketTrim($part, '(', ')');
$ret[] = $this->parse($part);
}
$r = implode(' OR ',$ret);
} else {
if(substr($parts[0],0,1) == '(' && substr($parts[0],-1) == ')')
return $this->parse(substr($parts[0],1,-1));
else
return $this->load($parts[0]);
}
}
return '(' . $r . ')';
}
}