12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?php
- namespace Gedmo\Uploadable\Mapping\Driver;
- use Gedmo\Mapping\Driver\Xml as BaseXml,
- Gedmo\Exception\InvalidMappingException,
- Gedmo\Uploadable\Mapping\Validator;
- /**
- * This is a xml mapping driver for Uploadable
- * behavioral extension. Used for extraction of extended
- * metadata from xml specificaly for Uploadable
- * extension.
- *
- * @author Gustavo Falco <comfortablynumb84@gmail.com>
- * @author Gediminas Morkevicius <gediminas.morkevicius@gmail.com>
- * @author Miha Vrhovnik <miha.vrhovnik@gmail.com>
- * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
- */
- class Xml extends BaseXml
- {
- /**
- * {@inheritDoc}
- */
- public function readExtendedMetadata($meta, array &$config)
- {
- /**
- * @var \SimpleXmlElement $xml
- */
- $xml = $this->_getMapping($meta->name);
- $xmlDoctrine = $xml;
- $xml = $xml->children(self::GEDMO_NAMESPACE_URI);
- if ($xmlDoctrine->getName() == 'entity' || $xmlDoctrine->getName() == 'mapped-superclass') {
- if (isset($xml->uploadable)) {
- $xmlUploadable = $xml->uploadable;
- $config['uploadable'] = true;
- $config['allowOverwrite'] = $this->_isAttributeSet($xmlUploadable, 'allow-overwrite') ?
- (bool) $this->_getAttribute($xmlUploadable, 'allow-overwrite') : false;
- $config['appendNumber'] = $this->_isAttributeSet($xmlUploadable, 'append-number') ?
- (bool) $this->_getAttribute($xmlUploadable, 'append-number') : false;
- $config['path'] = $this->_isAttributeSet($xmlUploadable, 'path') ?
- $this->_getAttribute($xml->{'uploadable'}, 'path') : '';
- $config['pathMethod'] = $this->_isAttributeSet($xmlUploadable, 'path-method') ?
- $this->_getAttribute($xml->{'uploadable'}, 'path-method') : '';
- $config['callback'] = $this->_isAttributeSet($xmlUploadable, 'callback') ?
- $this->_getAttribute($xml->{'uploadable'}, 'callback') : '';
- $config['fileMimeTypeField'] = false;
- $config['filePathField'] = false;
- $config['fileSizeField'] = false;
- $config['filenameGenerator'] = $this->_isAttributeSet($xmlUploadable, 'filename-generator') ?
- $this->_getAttribute($xml->{'uploadable'}, 'filename-generator') :
- Validator::FILENAME_GENERATOR_NONE;
- $config['maxSize'] = $this->_isAttributeSet($xmlUploadable, 'max-size') ?
- (double) $this->_getAttribute($xml->{'uploadable'}, 'max-size') :
- (double) 0;
- $config['allowedTypes'] = $this->_isAttributeSet($xmlUploadable, 'allowed-types') ?
- $this->_getAttribute($xml->{'uploadable'}, 'allowed-types') :
- '';
- $config['disallowedTypes'] = $this->_isAttributeSet($xmlUploadable, 'disallowed-types') ?
- $this->_getAttribute($xml->{'uploadable'}, 'disallowed-types') :
- '';
- if (isset($xmlDoctrine->field)) {
- foreach ($xmlDoctrine->field as $mapping) {
- $mappingDoctrine = $mapping;
- $mapping = $mapping->children(self::GEDMO_NAMESPACE_URI);
- $field = $this->_getAttribute($mappingDoctrine, 'name');
- if (isset($mapping->{'uploadable-file-mime-type'})) {
- $config['fileMimeTypeField'] = $field;
- } else if (isset($mapping->{'uploadable-file-size'})) {
- $config['fileSizeField'] = $field;
- } else if (isset($mapping->{'uploadable-file-path'})) {
- $config['filePathField'] = $field;
- }
- }
- }
- Validator::validateConfiguration($meta, $config);
- }
- }
- }
- }
|