model = $query->applyRelation($this->relation); $modifiers = $this->getModifiers(); $where = DB::getConn()->comparisonClause( $this->getDbName(), Convert::raw2sql($this->getValue()), true, // exact? false, // negate? $this->getCaseSensitive() ); return $query->where($where); } /** * Applies an exact match (equals) on a field value against multiple * possible values. * * @return DataQuery */ protected function applyMany(DataQuery $query) { $this->model = $query->applyRelation($this->relation); $modifiers = $this->getModifiers(); $values = array(); foreach($this->getValue() as $value) { $values[] = Convert::raw2sql($value); } if(!in_array('case', $modifiers) && !in_array('nocase', $modifiers)) { $valueStr = "'" . implode("', '", $values) . "'"; return $query->where(sprintf( '%s IN (%s)', $this->getDbName(), $valueStr )); } else { foreach($values as &$v) { $v = DB::getConn()->comparisonClause( $this->getDbName(), $v, true, // exact? false, // negate? $this->getCaseSensitive() ); } $where = implode(' OR ', $values); return $query->where($where); } } /** * Excludes an exact match (equals) on a field value. * * @return DataQuery */ protected function excludeOne(DataQuery $query) { $this->model = $query->applyRelation($this->relation); $modifiers = $this->getModifiers(); $where = DB::getConn()->comparisonClause( $this->getDbName(), Convert::raw2sql($this->getValue()), true, // exact? true, // negate? $this->getCaseSensitive() ); return $query->where($where); } /** * Excludes an exact match (equals) on a field value against multiple * possible values. * * @return DataQuery */ protected function excludeMany(DataQuery $query) { $this->model = $query->applyRelation($this->relation); $modifiers = $this->getModifiers(); $values = array(); foreach($this->getValue() as $value) { $values[] = Convert::raw2sql($value); } if(!in_array('case', $modifiers) && !in_array('nocase', $modifiers)) { $valueStr = "'" . implode("', '", $values) . "'"; return $query->where(sprintf( '%s NOT IN (%s)', $this->getDbName(), $valueStr )); } else { foreach($values as &$v) { $v = DB::getConn()->comparisonClause( $this->getDbName(), $v, true, // exact? true, // negate? $this->getCaseSensitive() ); } $where = implode(' OR ', $values); return $query->where($where); } } public function isEmpty() { return $this->getValue() === array() || $this->getValue() === null || $this->getValue() === ''; } }