예제 #1
0
 /**
  * Получить список полей типа
  * iphp_file с описанием связей
  * @param $entity
  * @return PropertyMapping[]
  */
 protected function getFileMappings($entity)
 {
     if (!is_null($this->fileMappingCache)) {
         return $this->fileMappingCache;
     }
     $mappings = $this->mappingFactory->getMappingsFromObject($entity, new \ReflectionClass(get_class($entity)));
     $properties = [];
     foreach ($mappings as $mapping) {
         $properties[$mapping->getFileUploadPropertyName()] = $mapping;
     }
     return $this->fileMappingCache = $properties;
 }
 /**
  * Checks for for file to upload and store it for store at postFlush event
  *
  * @param \Doctrine\Common\EventArgs $args The event arguments.
  */
 public function prePersist(EventArgs $args)
 {
     $obj = $this->dataStorage->getObjectFromArgs($args);
     $mappings = $this->mappingFactory->getMappingsFromObject($obj, $this->dataStorage->getReflectionClass($obj));
     $curFiles = new \SplObjectStorage();
     foreach ($mappings as $mapping) {
         $file = $mapping->getFileUploadPropertyValue();
         if ($file instanceof File) {
             $curFiles[$mapping] = $file;
         }
         $mapping->setFileUploadPropertyValue(null);
     }
     //if ($curFiles) $this->deferredFiles [$mappings[0]->getObj()] = $curFiles;
     if (count($curFiles)) {
         $this->deferredFiles[$obj] = $curFiles;
     }
 }
 public function testConfiguredNamerRetrievedFromInvoker()
 {
     $obj = new DummyEntity();
     $class = new \ReflectionClass($obj);
     $mappingsConfig = array('dummy_file' => array('upload_dir' => '/www/web/images', 'upload_path' => '/images', 'namer' => array('translit' => array('service' => 'iphp.filestore.namer.default'))));
     $uploadable = Mocks::getUploadableMock($this);
     $fileField = Mocks::getUploadableFieldMock($this);
     $fileField->expects($this->any())->method('getMapping')->will($this->returnValue('dummy_file'));
     $fileField->expects($this->once())->method('getFileUploadPropertyName')->will($this->returnValue('file'));
     $fileField->expects($this->once())->method('getFileDataPropertyName')->will($this->returnValue('file'));
     $this->driver->expects($this->once())->method('readUploadable')->with($class)->will($this->returnValue($uploadable));
     $this->driver->expects($this->once())->method('readUploadableFields')->with($class)->will($this->returnValue(array($fileField)));
     $factory = new PropertyMappingFactory($this->namerServiceInvoker, $this->driver, $mappingsConfig);
     $mappings = $factory->getMappingsFromObject($obj, $class);
     $this->assertEquals(1, count($mappings));
     if (count($mappings) > 0) {
         $mapping = $mappings[0];
         $this->namerServiceInvoker->expects($this->once())->method('rename')->with('iphp.filestore.namer.default', 'translit', $mapping, 'ab cde', array())->will($this->returnValue('ab-cde'));
         $this->assertEquals($mapping->useFileNamer('ab cde'), 'ab-cde');
         $this->assertTrue($mapping->hasNamer());
     }
 }