Example #1
0
 public function execute($params = array())
 {
     if (array_key_exists('binds', $params)) {
         $binds = $params['binds'];
         $this->query->bind($binds);
     }
     if (array_key_exists('order', $params)) {
         $order = $params['order'];
         $this->query->orderBy($order);
     }
     if (array_key_exists('limit', $params)) {
         $limit = $params['limit'];
         $this->query->limit($limit[0], $limit[1]);
     }
     try {
         return $this->query->execute();
     } catch (Exception $e) {
         return false;
     }
 }
Example #2
0
 public function fromInput($modelName, $data)
 {
     if (!is_array($data)) {
         throw new Exception("Input data must be an Array");
     }
     $conditions = array();
     if (count($data)) {
         $metaData = $this->getDI()->getShared('modelsMetadata');
         $model = new $modelName();
         $dataTypes = $metaData->getDataTypes($model);
         $columnMap = $metaData->getReverseColumnMap($model);
         $bind = array();
         foreach ($data as $fieldName => $value) {
             if (isset($columnMap[$fieldName])) {
                 $field = $columnMap[$fieldName];
             } else {
                 continue;
             }
             if (isset($dataTypes[$field])) {
                 if (!is_null($value)) {
                     if ($value != '') {
                         $type = $dataTypes[$field];
                         if ($type == 2) {
                             $condition = $fieldName . " LIKE :" . $fieldName . ":";
                             $bind[$fieldName] = '%' . $value . '%';
                         } else {
                             $condition = $fieldName . ' = :' . $fieldName . ':';
                             $bind[$fieldName] = $value;
                         }
                         $conditions[] = $condition;
                     }
                 }
             }
         }
     }
     $criteria = new Criteria();
     if (count($conditions)) {
         $joinConditions = join(' AND ', $conditions);
         $criteria->where($joinConditions);
         $criteria->bind($bind);
     }
     return $criteria;
 }
Example #3
0
 /**
  * Builds a \Phalcon\Mvc\Model\Criteria based on an input array like $_POST
  *
  * @param \Phalcon\DiInterface $dependencyInjector
  * @param string $modelName
  * @param array $data
  * @return \Phalcon\Mvc\Model\Criteria
  * @throws Exception
  */
 public static function fromInput($dependencyInjector, $modelName, $data)
 {
     if (is_object($dependencyInjector) === false || $dependencyInjector instanceof DiInterface === false) {
         throw new Exception('A dependency injector container is required to obtain the ORM services');
     }
     if (is_string($modelName) === false) {
         throw new Exception('Invalid parameter type.');
     }
     if (is_array($data) === false) {
         throw new Exception('Model data must be an Array');
     }
     if (empty($data) === false) {
         $conditions = array();
         $metaData = $dependencyInjector->getShared('modelsMetadata');
         $model = new $modelName();
         $dataTypes = $metaData->getDataTypes($model);
         $bind = array();
         //We look for attributes in the array passed as data
         foreach ($data as $field => $value) {
             if (isset($dataTypes[$field]) === true && is_null($value) === false && $value !== '') {
                 if ($dataTypes[$field] === 2) {
                     //For varchar types we use LIKE operator
                     $condition = $field . ' LIKE :' . $field . ':';
                     $bind[$field] = '%' . $value . '%';
                 } else {
                     //For the rest of data types we use a plain = operator
                     $condition = $field . '=:' . $field . ':';
                     $bind[$field] = $value;
                 }
                 $conditions[] = $condition;
             }
         }
     }
     //Create an object instance and pass the parameters to it
     $criteria = new Criteria();
     if (isset($conditions) === true && empty($conditions) === false) {
         $criteria->where(implode(' AND ', $conditions));
         $criteria->bind($bind);
     }
     $criteria->setModelName($modelName);
     return $criteria;
 }