123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- namespace Gedmo\Sortable\Mapping\Driver;
- use Gedmo\Mapping\Driver\AnnotationDriverInterface,
- Gedmo\Exception\InvalidMappingException;
- /**
- * This is an annotation mapping driver for Sortable
- * behavioral extension. Used for extraction of extended
- * metadata from Annotations specificaly for Sortable
- * extension.
- *
- * @author Lukas Botsch <lukas.botsch@gmail.com>
- * @package Gedmo.Sortable.Mapping.Driver
- * @subpackage Annotation
- * @link http://www.gediminasm.org
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class Annotation implements AnnotationDriverInterface
- {
- /**
- * Annotation to mark field as one which will store node position
- */
- const POSITION = 'Gedmo\\Mapping\\Annotation\\SortablePosition';
- /**
- * Annotation to mark field as sorting group
- */
- const GROUP = 'Gedmo\\Mapping\\Annotation\\SortableGroup';
- /**
- * List of types which are valid for position fields
- *
- * @var array
- */
- private $validTypes = array(
- 'integer',
- 'smallint',
- 'bigint'
- );
- /**
- * Annotation reader instance
- *
- * @var object
- */
- private $reader;
- /**
- * original driver if it is available
- */
- protected $_originalDriver = null;
- /**
- * {@inheritDoc}
- */
- public function setAnnotationReader($reader)
- {
- $this->reader = $reader;
- }
- /**
- * {@inheritDoc}
- */
- public function readExtendedMetadata($meta, array &$config)
- {
- $class = $meta->getReflectionClass();
- if (!$class) {
- // based on recent doctrine 2.3.0-DEV maybe will be fixed in some way
- // this happens when running annotation driver in combination with
- // static reflection services. This is not the nicest fix
- $class = new \ReflectionClass($meta->name);
- }
- // property annotations
- foreach ($class->getProperties() as $property) {
- if ($meta->isMappedSuperclass && !$property->isPrivate() ||
- $meta->isInheritedField($property->name) ||
- isset($meta->associationMappings[$property->name]['inherited'])
- ) {
- continue;
- }
- // position
- if ($position = $this->reader->getPropertyAnnotation($property, self::POSITION)) {
- $field = $property->getName();
- if (!$meta->hasField($field)) {
- throw new InvalidMappingException("Unable to find 'position' - [{$field}] as mapped property in entity - {$meta->name}");
- }
- if (!$this->isValidField($meta, $field)) {
- throw new InvalidMappingException("Sortable position field - [{$field}] type is not valid and must be 'integer' in class - {$meta->name}");
- }
- $config['position'] = $field;
- }
- // group
- if ($group = $this->reader->getPropertyAnnotation($property, self::GROUP)) {
- $field = $property->getName();
- if (!$meta->hasField($field) && !$meta->hasAssociation($field)) {
- throw new InvalidMappingException("Unable to find 'group' - [{$field}] as mapped property in entity - {$meta->name}");
- }
- if (!isset($config['groups'])) {
- $config['groups'] = array();
- }
- $config['groups'][] = $field;
- }
- }
- if (!$meta->isMappedSuperclass && $config) {
- if (!isset($config['position'])) {
- throw new InvalidMappingException("Missing property: 'position' in class - {$meta->name}");
- }
- }
- }
- /**
- * Checks if $field type is valid
- *
- * @param object $meta
- * @param string $field
- * @return boolean
- */
- protected function isValidField($meta, $field)
- {
- $mapping = $meta->getFieldMapping($field);
- return $mapping && in_array($mapping['type'], $this->validTypes);
- }
- /**
- * Passes in the mapping read by original driver
- *
- * @param $driver
- * @return void
- */
- public function setOriginalDriver($driver)
- {
- $this->_originalDriver = $driver;
- }
- }
|