123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- <?php
- namespace Gedmo\Timestampable\Mapping\Driver;
- use Gedmo\Mapping\Driver\File,
- Gedmo\Mapping\Driver,
- Gedmo\Exception\InvalidMappingException;
- /**
- * This is a yaml mapping driver for Timestampable
- * behavioral extension. Used for extraction of extended
- * metadata from yaml specificaly for Timestampable
- * extension.
- *
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class Yaml extends File implements Driver
- {
- /**
- * File extension
- * @var string
- */
- protected $_extension = '.dcm.yml';
- /**
- * List of types which are valid for timestamp
- *
- * @var array
- */
- private $validTypes = array(
- 'date',
- 'time',
- 'datetime',
- 'datetimetz',
- 'timestamp',
- 'zenddate',
- 'vardatetime',
- 'integer'
- );
- /**
- * {@inheritDoc}
- */
- public function readExtendedMetadata($meta, array &$config)
- {
- $mapping = $this->_getMapping($meta->name);
- if (isset($mapping['fields'])) {
- foreach ($mapping['fields'] as $field => $fieldMapping) {
- if (isset($fieldMapping['gedmo']['timestampable'])) {
- $mappingProperty = $fieldMapping['gedmo']['timestampable'];
- if (!$this->isValidField($meta, $field)) {
- throw new InvalidMappingException("Field - [{$field}] type is not valid and must be 'date', 'datetime' or 'time' in class - {$meta->name}");
- }
- if (!isset($mappingProperty['on']) || !in_array($mappingProperty['on'], array('update', 'create', 'change'))) {
- throw new InvalidMappingException("Field - [{$field}] trigger 'on' is not one of [update, create, change] in class - {$meta->name}");
- }
- if ($mappingProperty['on'] == 'change') {
- if (!isset($mappingProperty['field'])) {
- throw new InvalidMappingException("Missing parameters on property - {$field}, field must be set on [change] trigger in class - {$meta->name}");
- }
- $trackedFieldAttribute = $mappingProperty['field'];
- $valueAttribute = isset($mappingProperty['value']) ? $mappingProperty['value'] : null;
- if (is_array($trackedFieldAttribute) && null !== $valueAttribute) {
- throw new InvalidMappingException("Timestampable extension does not support multiple value changeset detection yet.");
- }
- $field = array(
- 'field' => $field,
- 'trackedField' => $trackedFieldAttribute,
- 'value' => $valueAttribute,
- );
- }
- $config[$mappingProperty['on']][] = $field;
- }
- }
- }
- }
- /**
- * {@inheritDoc}
- */
- protected function _loadMappingFile($file)
- {
- return \Symfony\Component\Yaml\Yaml::parse($file);
- }
- /**
- * 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);
- }
- }
|