1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?php
- namespace Gedmo\Loggable\Mapping\Driver;
- use Gedmo\Mapping\Driver,
- Doctrine\Common\Annotations\AnnotationReader,
- Doctrine\Common\Persistence\Mapping\ClassMetadata,
- Gedmo\Exception\InvalidMappingException;
- /**
- * This is an annotation mapping driver for Loggable
- * behavioral extension. Used for extraction of extended
- * metadata from Annotations specificaly for Loggable
- * extension.
- *
- * @author Boussekeyt Jules <jules.boussekeyt@gmail.com>
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @package Gedmo.Loggable.Mapping.Driver
- * @subpackage Annotation
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class Annotation implements Driver
- {
- /**
- * Annotation to define that this object is loggable
- */
- const LOGGABLE = 'Gedmo\\Mapping\\Annotation\\Loggable';
- /**
- * Annotation to define that this property is versioned
- */
- const VERSIONED = 'Gedmo\\Mapping\\Annotation\\Versioned';
- /**
- * {@inheritDoc}
- */
- public function validateFullMetadata(ClassMetadata $meta, array $config)
- {
- if ($config && is_array($meta->identifier) && count($meta->identifier) > 1) {
- throw new InvalidMappingException("Loggable does not support composite identifiers in class - {$meta->name}");
- }
- if (isset($config['versioned']) && !isset($config['loggable'])) {
- throw new InvalidMappingException("Class must be annoted with Loggable annotation in order to track versioned fields in class - {$meta->name}");
- }
- }
- /**
- * {@inheritDoc}
- */
- public function readExtendedMetadata(ClassMetadata $meta, array &$config)
- {
- $reader = new AnnotationReader();
- $reader->setAnnotationNamespaceAlias('Gedmo\\Mapping\\Annotation\\', 'gedmo');
- $reader->setAutoloadAnnotations(true);
- $class = $meta->getReflectionClass();
- // class annotations
- $classAnnotations = $reader->getClassAnnotations($class);
- if (isset($classAnnotations[self::LOGGABLE])) {
- $config['loggable'] = true;
- $annot = $classAnnotations[self::LOGGABLE];
- if ($annot->logEntryClass) {
- if (!class_exists($annot->logEntryClass)) {
- throw new InvalidMappingException("LogEntry class: {$annot->logEntryClass} does not exist.");
- }
- $config['logEntryClass'] = $annot->logEntryClass;
- }
- }
- // property annotations
- foreach ($class->getProperties() as $property) {
- if ($meta->isMappedSuperclass && !$property->isPrivate() ||
- $meta->isInheritedField($property->name) ||
- isset($meta->associationMappings[$property->name]['inherited'])
- ) {
- continue;
- }
- // versioned property
- if ($versioned = $reader->getPropertyAnnotation($property, self::VERSIONED)) {
- $field = $property->getName();
- if ($meta->isCollectionValuedAssociation($field)) {
- throw new InvalidMappingException("Cannot versioned [{$field}] as it is collection in object - {$meta->name}");
- }
- // fields cannot be overrided and throws mapping exception
- $config['versioned'][] = $field;
- }
- }
- }
- }
|