Example #1
0
 /**
  * Map a field.
  *
  * @param array $mapping The mapping information.
  *
  * @return array
  *
  * @throws MappingException
  */
 public function mapField(array $mapping)
 {
     if (!isset($mapping['fieldName']) && isset($mapping['name'])) {
         $mapping['fieldName'] = $mapping['name'];
     }
     if (!isset($mapping['fieldName'])) {
         throw MappingException::missingFieldName($this->name);
     }
     if (!isset($mapping['name'])) {
         $mapping['name'] = $mapping['fieldName'];
     }
     if ($this->identifier === $mapping['name'] && empty($mapping['id'])) {
         throw MappingException::mustNotChangeIdentifierFieldsType($this->name, $mapping['name']);
     }
     if (isset($this->fieldMappings[$mapping['fieldName']])) {
         //throw MappingException::duplicateFieldMapping($this->name, $mapping['fieldName']);
     }
     if ($this->discriminatorField !== null && $this->discriminatorField == $mapping['name']) {
         throw MappingException::discriminatorFieldConflict($this->name, $this->discriminatorField);
     }
     if (isset($mapping['targetDocument']) && strpos($mapping['targetDocument'], '\\') === false && strlen($this->namespace)) {
         $mapping['targetDocument'] = $this->namespace . '\\' . $mapping['targetDocument'];
     }
     if (isset($mapping['discriminatorMap'])) {
         foreach ($mapping['discriminatorMap'] as $key => $class) {
             if (strpos($class, '\\') === false && strlen($this->namespace)) {
                 $mapping['discriminatorMap'][$key] = $this->namespace . '\\' . $class;
             }
         }
     }
     if (isset($mapping['cascade']) && isset($mapping['embedded'])) {
         throw MappingException::cascadeOnEmbeddedNotAllowed($this->name, $mapping['fieldName']);
     }
     $cascades = isset($mapping['cascade']) ? array_map('strtolower', (array) $mapping['cascade']) : array();
     if (in_array('all', $cascades) || isset($mapping['embedded'])) {
         $cascades = array('remove', 'persist', 'refresh', 'merge', 'detach');
     }
     if (isset($mapping['embedded'])) {
         unset($mapping['cascade']);
     } elseif (isset($mapping['cascade'])) {
         $mapping['cascade'] = $cascades;
     }
     $mapping['isCascadeRemove'] = in_array('remove', $cascades);
     $mapping['isCascadePersist'] = in_array('persist', $cascades);
     $mapping['isCascadeRefresh'] = in_array('refresh', $cascades);
     $mapping['isCascadeMerge'] = in_array('merge', $cascades);
     $mapping['isCascadeDetach'] = in_array('detach', $cascades);
     if (isset($mapping['type']) && $mapping['type'] === 'file') {
         $mapping['file'] = true;
     }
     if (isset($mapping['file']) && $mapping['file'] === true) {
         $this->file = $mapping['fieldName'];
         $mapping['name'] = 'file';
     }
     if (isset($mapping['distance']) && $mapping['distance'] === true) {
         $this->distance = $mapping['fieldName'];
     }
     if (isset($mapping['id']) && $mapping['id'] === true) {
         $mapping['name'] = '_id';
         $this->identifier = $mapping['fieldName'];
         if (isset($mapping['strategy'])) {
             $this->generatorType = constant('CosmoW\\ODM\\Riak\\Mapping\\ClassMetadata::GENERATOR_TYPE_' . strtoupper($mapping['strategy']));
         }
         $this->generatorOptions = isset($mapping['options']) ? $mapping['options'] : array();
         switch ($this->generatorType) {
             case self::GENERATOR_TYPE_AUTO:
                 $mapping['type'] = 'id';
                 break;
             default:
                 if (!empty($this->generatorOptions['type'])) {
                     $mapping['type'] = $this->generatorOptions['type'];
                 } elseif (empty($mapping['type'])) {
                     $mapping['type'] = $this->generatorType === self::GENERATOR_TYPE_INCREMENT ? 'int_id' : 'custom_id';
                 }
         }
         unset($this->generatorOptions['type']);
     }
     if (!isset($mapping['nullable'])) {
         $mapping['nullable'] = false;
     }
     if (isset($mapping['reference']) && !empty($mapping['simple']) && !isset($mapping['targetDocument'])) {
         throw MappingException::simpleReferenceRequiresTargetDocument($this->name, $mapping['fieldName']);
     }
     if (isset($mapping['reference']) && empty($mapping['targetDocument']) && empty($mapping['discriminatorMap']) && (isset($mapping['mappedBy']) || isset($mapping['inversedBy']))) {
         throw MappingException::owningAndInverseReferencesRequireTargetDocument($this->name, $mapping['fieldName']);
     }
     if ($this->isEmbeddedDocument && $mapping['type'] === 'many' && CollectionHelper::isAtomic($mapping['strategy'])) {
         throw MappingException::atomicCollectionStrategyNotAllowed($mapping['strategy'], $this->name, $mapping['fieldName']);
     }
     if (isset($mapping['reference']) && $mapping['type'] === 'one') {
         $mapping['association'] = self::REFERENCE_ONE;
     }
     if (isset($mapping['reference']) && $mapping['type'] === 'many') {
         $mapping['association'] = self::REFERENCE_MANY;
     }
     if (isset($mapping['embedded']) && $mapping['type'] === 'one') {
         $mapping['association'] = self::EMBED_ONE;
     }
     if (isset($mapping['embedded']) && $mapping['type'] === 'many') {
         $mapping['association'] = self::EMBED_MANY;
     }
     if (isset($mapping['association']) && !isset($mapping['targetDocument']) && !isset($mapping['discriminatorField'])) {
         $mapping['discriminatorField'] = self::DEFAULT_DISCRIMINATOR_FIELD;
     }
     /*
     if (isset($mapping['type']) && ($mapping['type'] === 'one' || $mapping['type'] === 'many')) {
         $mapping['type'] = $mapping['type'] === 'one' ? self::ONE : self::MANY;
     }
     */
     if (isset($mapping['version'])) {
         $mapping['notSaved'] = true;
         $this->setVersionMapping($mapping);
     }
     if (isset($mapping['lock'])) {
         $mapping['notSaved'] = true;
         $this->setLockMapping($mapping);
     }
     $mapping['isOwningSide'] = true;
     $mapping['isInverseSide'] = false;
     if (isset($mapping['reference'])) {
         if (isset($mapping['inversedBy']) && $mapping['inversedBy']) {
             $mapping['isOwningSide'] = true;
             $mapping['isInverseSide'] = false;
         }
         if (isset($mapping['mappedBy']) && $mapping['mappedBy']) {
             $mapping['isInverseSide'] = true;
             $mapping['isOwningSide'] = false;
         }
         if (isset($mapping['repositoryMethod'])) {
             $mapping['isInverseSide'] = true;
             $mapping['isOwningSide'] = false;
         }
         if (!isset($mapping['orphanRemoval'])) {
             $mapping['orphanRemoval'] = false;
         }
     }
     if (isset($mapping['reference']) && $mapping['type'] === 'many' && $mapping['isOwningSide'] && !empty($mapping['sort']) && !CollectionHelper::usesSet($mapping['strategy'])) {
         throw MappingException::referenceManySortMustNotBeUsedWithNonSetCollectionStrategy($this->name, $mapping['fieldName'], $mapping['strategy']);
     }
     $this->fieldMappings[$mapping['fieldName']] = $mapping;
     if (isset($mapping['association'])) {
         $this->associationMappings[$mapping['fieldName']] = $mapping;
     }
     return $mapping;
 }