* @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ class Annotation extends AbstractAnnotationDriver { /** * Annotation field is ipTraceable */ const IP_TRACEABLE = 'Gedmo\\Mapping\\Annotation\\IpTraceable'; /** * List of types which are valid for IP * * @var array */ protected $validTypes = array( 'string', ); /** * {@inheritDoc} */ public function readExtendedMetadata($meta, array &$config) { $class = $this->getMetaReflectionClass($meta); // property annotations foreach ($class->getProperties() as $property) { if ($meta->isMappedSuperclass && !$property->isPrivate() || $meta->isInheritedField($property->name) || isset($meta->associationMappings[$property->name]['inherited']) ) { continue; } if ($ipTraceable = $this->reader->getPropertyAnnotation($property, self::IP_TRACEABLE)) { $field = $property->getName(); if (!$meta->hasField($field)) { throw new InvalidMappingException("Unable to find ipTraceable [{$field}] as mapped property in entity - {$meta->name}"); } if ($meta->hasField($field) && !$this->isValidField($meta, $field)) { throw new InvalidMappingException("Field - [{$field}] type is not valid and must be 'string' - {$meta->name}"); } if (!in_array($ipTraceable->on, array('update', 'create', 'change'))) { throw new InvalidMappingException("Field - [{$field}] trigger 'on' is not one of [update, create, change] in class - {$meta->name}"); } if ($ipTraceable->on == 'change') { if (!isset($ipTraceable->field)) { throw new InvalidMappingException("Missing parameters on property - {$field}, field must be set on [change] trigger in class - {$meta->name}"); } if (is_array($ipTraceable->field) && isset($ipTraceable->value)) { throw new InvalidMappingException("IpTraceable extension does not support multiple value changeset detection yet."); } $field = array( 'field' => $field, 'trackedField' => $ipTraceable->field, 'value' => $ipTraceable->value, ); } // properties are unique and mapper checks that, no risk here $config[$ipTraceable->on][] = $field; } } } }