123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- <?php
- namespace Gedmo\Blameable\Mapping\Driver;
- use Gedmo\Mapping\Driver\Xml as BaseXml,
- Gedmo\Exception\InvalidMappingException;
- /**
- * This is a xml mapping driver for Blameable
- * behavioral extension. Used for extraction of extended
- * metadata from xml specificaly for Blameable
- * extension.
- *
- * @author David Buchmann <mail@davidbu.ch>
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class Xml extends BaseXml
- {
- /**
- * List of types which are valid for blame
- *
- * @var array
- */
- private $validTypes = array(
- 'one',
- 'string',
- 'int',
- );
- /**
- * {@inheritDoc}
- */
- public function readExtendedMetadata($meta, array &$config)
- {
- /**
- * @var \SimpleXmlElement $mapping
- */
- $mapping = $this->_getMapping($meta->name);
- if (isset($mapping->field)) {
- /**
- * @var \SimpleXmlElement $fieldMapping
- */
- foreach ($mapping->field as $fieldMapping) {
- $fieldMappingDoctrine = $fieldMapping;
- $fieldMapping = $fieldMapping->children(self::GEDMO_NAMESPACE_URI);
- if (isset($fieldMapping->blameable)) {
- /**
- * @var \SimpleXmlElement $data
- */
- $data = $fieldMapping->blameable;
- $field = $this->_getAttribute($fieldMappingDoctrine, 'name');
- if (!$this->isValidField($meta, $field)) {
- throw new InvalidMappingException("Field - [{$field}] type is not valid and must be 'string' or a reference in class - {$meta->name}");
- }
- if (!$this->_isAttributeSet($data, 'on') || !in_array($this->_getAttribute($data, 'on'), array('update', 'create', 'change'))) {
- throw new InvalidMappingException("Field - [{$field}] trigger 'on' is not one of [update, create, change] in class - {$meta->name}");
- }
- if ($this->_getAttribute($data, 'on') == 'change') {
- if (!$this->_isAttributeSet($data, 'field')) {
- throw new InvalidMappingException("Missing parameters on property - {$field}, field must be set on [change] trigger in class - {$meta->name}");
- }
- $trackedFieldAttribute = $this->_getAttribute($data, 'field');
- $valueAttribute = $this->_isAttributeSet($data, 'value') ? $this->_getAttribute($data, 'value' ) : null;
- if (is_array($trackedFieldAttribute) && null !== $valueAttribute) {
- throw new InvalidMappingException("Blameable extension does not support multiple value changeset detection yet.");
- }
- $field = array(
- 'field' => $field,
- 'trackedField' => $trackedFieldAttribute,
- 'value' => $valueAttribute,
- );
- }
- $config[$this->_getAttribute($data, 'on')][] = $field;
- }
- }
- }
- if (isset($mapping->{'many-to-one'})) {
- foreach ($mapping->{'many-to-one'} as $fieldMapping) {
- $field = $this->_getAttribute($fieldMapping, 'field');
- $fieldMapping = $fieldMapping->children(self::GEDMO_NAMESPACE_URI);
- if (isset($fieldMapping->blameable)) {
- $data = $fieldMapping->blameable;
- if (! $meta->isSingleValuedAssociation($field)) {
- throw new InvalidMappingException("Association - [{$field}] is not valid, it must be a one-to-many relation or a string field - {$meta->name}");
- }
- if (!$this->_isAttributeSet($data, 'on') || !in_array($this->_getAttribute($data, 'on'), array('update', 'create', 'change'))) {
- throw new InvalidMappingException("Field - [{$field}] trigger 'on' is not one of [update, create, change] in class - {$meta->name}");
- }
- if ($this->_getAttribute($data, 'on') == 'change') {
- if (!$this->_isAttributeSet($data, 'field')) {
- throw new InvalidMappingException("Missing parameters on property - {$field}, field must be set on [change] trigger in class - {$meta->name}");
- }
- $trackedFieldAttribute = $this->_getAttribute($data, 'field');
- $valueAttribute = $this->_isAttributeSet($data, 'value') ? $this->_getAttribute($data, 'value' ) : null;
- if (is_array($trackedFieldAttribute) && null !== $valueAttribute) {
- throw new InvalidMappingException("Blameable extension does not support multiple value changeset detection yet.");
- }
- $field = array(
- 'field' => $field,
- 'trackedField' => $trackedFieldAttribute,
- 'value' => $valueAttribute,
- );
- }
- $config[$this->_getAttribute($data, 'on')][] = $field;
- }
- }
- }
- }
- /**
- * 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);
- }
- }
|