1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?php
- namespace Gedmo\IpTraceable\Mapping\Driver;
- use Gedmo\Mapping\Driver\AbstractAnnotationDriver;
- use Gedmo\Exception\InvalidMappingException;
- /**
- * This is an annotation mapping driver for IpTraceable
- * behavioral extension. Used for extraction of extended
- * metadata from Annotations specifically for IpTraceable
- * extension.
- *
- * @author Pierre-Charles Bertineau <pc.bertineau@alterphp.com>
- * @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;
- }
- }
- }
- }
|