Exemplo n.º 1
0
 /**
  * @covers Thelia\Action\ProductSaleElement::createClonePSE
  * @depends testCloneFile
  * @param ProductCloneEvent $event
  * @return ProductCloneEvent
  */
 public function testCreateClonePSE(ProductCloneEvent $event)
 {
     $originalProductPSE = ProductSaleElementsQuery::create()->filterByProductId($event->getOriginalProduct()->getId())->findOne();
     $currencyId = ProductPriceQuery::create()->filterByProductSaleElementsId($originalProductPSE->getId())->select('CURRENCY_ID')->findOne();
     // Call function to test
     $action = new ProductSaleElement();
     $clonedProductPSEId = $action->createClonePSE($event, $originalProductPSE, $currencyId);
     // Get created PSE
     $cloneProductPSE = ProductSaleElementsQuery::create()->findOneById($clonedProductPSEId);
     // Check clone PSE information
     $this->assertInstanceOf('Thelia\\Model\\ProductSaleElements', $cloneProductPSE, 'Instance of clone PSE must be Thelia\\Model\\ProductSaleElements');
     $this->assertEquals($event->getClonedProduct()->getId(), $cloneProductPSE->getProductId(), 'ProductID must be equal');
     $this->assertStringStartsWith($event->getClonedProduct()->getRef(), $cloneProductPSE->getRef(), 'PSE\'s ref must start with product\'s ref');
     $this->assertEquals($originalProductPSE->getWeight(), $cloneProductPSE->getWeight(), 'Weight must be equal');
     // Get attribute combination
     $originalAttributeCombination = AttributeCombinationQuery::create()->findOneByProductSaleElementsId($originalProductPSE->getId());
     $cloneAttributeCombination = AttributeCombinationQuery::create()->findOneByProductSaleElementsId($clonedProductPSEId);
     // Check clone PSE's attribute combination if exist
     if ($cloneAttributeCombination != null) {
         $this->assertInstanceOf('Thelia\\Model\\AttributeCombination', $cloneAttributeCombination, 'Instance of clone PSE\'s attribute combination must be Thelia\\Model\\AttributeCombination');
         $this->assertEquals($originalAttributeCombination->getAttributeId(), $cloneAttributeCombination->getAttributeId(), 'AttributeID must be equal');
         $this->assertEquals($originalAttributeCombination->getAttributeAvId(), $cloneAttributeCombination->getAttributeAvId(), 'AttributeAvID must be equal');
         $this->assertEquals($clonedProductPSEId, $cloneAttributeCombination->getProductSaleElementsId(), 'PSE ID must be equal');
     }
     return ['event' => $event, 'originalPSE' => $originalProductPSE, 'clonePSE' => $cloneProductPSE];
 }
Exemplo n.º 2
0
 public function cloneAssociatedContent(ProductCloneEvent $event)
 {
     // Get original product associated contents
     $originalProductAssocConts = ProductAssociatedContentQuery::create()->findByProductId($event->getOriginalProduct()->getId());
     // Set clone product associated contents
     foreach ($originalProductAssocConts as $originalProductAssocCont) {
         $clonedProductCreatePAC = new ProductAddContentEvent($event->getClonedProduct(), $originalProductAssocCont->getContentId());
         $event->getDispatcher()->dispatch(TheliaEvents::PRODUCT_ADD_CONTENT, $clonedProductCreatePAC);
     }
 }
Exemplo n.º 3
0
 public function cloneFile(ProductCloneEvent $event, $eventName, EventDispatcherInterface $dispatcher)
 {
     $originalProductId = $event->getOriginalProduct()->getId();
     $clonedProduct = $event->getClonedProduct();
     foreach ($event->getTypes() as $type) {
         $originalProductFiles = [];
         switch ($type) {
             case 'images':
                 $originalProductFiles = ProductImageQuery::create()->findByProductId($originalProductId);
                 break;
             case 'documents':
                 $originalProductFiles = ProductDocumentQuery::create()->findByProductId($originalProductId);
                 break;
         }
         // Set clone's files
         /** @var ProductDocument|ProductImage $originalProductFile */
         foreach ($originalProductFiles as $originalProductFile) {
             $srcPath = $originalProductFile->getUploadDir() . DS . $originalProductFile->getFile();
             if (file_exists($srcPath)) {
                 $ext = pathinfo($srcPath, PATHINFO_EXTENSION);
                 $clonedProductFile = [];
                 switch ($type) {
                     case 'images':
                         $fileName = $clonedProduct->getRef() . '.' . $ext;
                         $clonedProductFile = new ProductImage();
                         break;
                     case 'documents':
                         $fileName = pathinfo($originalProductFile->getFile(), PATHINFO_FILENAME) . '-' . $clonedProduct->getRef() . '.' . $ext;
                         $clonedProductFile = new ProductDocument();
                         break;
                 }
                 // Copy a temporary file of the source file as it will be deleted by IMAGE_SAVE or DOCUMENT_SAVE event
                 $srcTmp = $srcPath . '.tmp';
                 copy($srcPath, $srcTmp);
                 // Get file mimeType
                 $finfo = new \finfo();
                 $fileMimeType = $finfo->file($srcPath, FILEINFO_MIME_TYPE);
                 // Get file event's parameters
                 $clonedProductFile->setProductId($clonedProduct->getId())->setVisible($originalProductFile->getVisible())->setPosition($originalProductFile->getPosition())->setLocale($clonedProduct->getLocale())->setTitle($clonedProduct->getTitle());
                 $clonedProductCopiedFile = new UploadedFile($srcPath, $fileName, $fileMimeType, filesize($srcPath), null, true);
                 // Create and dispatch event
                 $clonedProductCreateFileEvent = new FileCreateOrUpdateEvent($clonedProduct->getId());
                 $clonedProductCreateFileEvent->setModel($clonedProductFile)->setUploadedFile($clonedProductCopiedFile)->setParentName($clonedProduct->getTitle());
                 $originalProductFileI18ns = [];
                 switch ($type) {
                     case 'images':
                         $dispatcher->dispatch(TheliaEvents::IMAGE_SAVE, $clonedProductCreateFileEvent);
                         // Get original product image I18n
                         $originalProductFileI18ns = ProductImageI18nQuery::create()->findById($originalProductFile->getId());
                         break;
                     case 'documents':
                         $dispatcher->dispatch(TheliaEvents::DOCUMENT_SAVE, $clonedProductCreateFileEvent);
                         // Get original product document I18n
                         $originalProductFileI18ns = ProductDocumentI18nQuery::create()->findById($originalProductFile->getId());
                         break;
                 }
                 // Set temporary source file as original one
                 rename($srcTmp, $srcPath);
                 // Clone file's I18n
                 $this->cloneFileI18n($originalProductFileI18ns, $clonedProductFile, $type, $event, $dispatcher);
             } else {
                 Tlog::getInstance()->addWarning("Failed to find media file {$srcPath}");
             }
         }
     }
 }
Exemplo n.º 4
0
 public function updateClonePSE(ProductCloneEvent $event, $clonedProductPSEId, ProductSaleElements $originalProductPSE, $key)
 {
     $originalProductPSEPrice = ProductPriceQuery::create()->findOneByProductSaleElementsId($originalProductPSE->getId());
     $clonedProductUpdatePSEEvent = new ProductSaleElementUpdateEvent($event->getClonedProduct(), $clonedProductPSEId);
     $clonedProductUpdatePSEEvent->setReference($event->getClonedProduct()->getRef() . '-' . ($key + 1))->setIsdefault($originalProductPSE->getIsDefault())->setFromDefaultCurrency(0)->setWeight($originalProductPSE->getWeight())->setQuantity($originalProductPSE->getQuantity())->setOnsale($originalProductPSE->getPromo())->setIsnew($originalProductPSE->getNewness())->setEanCode($originalProductPSE->getEanCode())->setTaxRuleId($event->getOriginalProduct()->getTaxRuleId())->setPrice($originalProductPSEPrice->getPrice())->setSalePrice($originalProductPSEPrice->getPromoPrice())->setCurrencyId($originalProductPSEPrice->getCurrencyId());
     $this->eventDispatcher->dispatch(TheliaEvents::PRODUCT_UPDATE_PRODUCT_SALE_ELEMENT, $clonedProductUpdatePSEEvent);
 }
Exemplo n.º 5
0
 public function cloneAccessories(ProductCloneEvent $event)
 {
     // Get original product accessories
     $originalProductAccessoryList = AccessoryQuery::create()->findByProductId($event->getOriginalProduct()->getId());
     // Set clone product accessories
     foreach ($originalProductAccessoryList as $originalProductAccessory) {
         $clonedProductAddAccessoryEvent = new ProductAddAccessoryEvent($event->getClonedProduct(), $originalProductAccessory->getAccessory());
         $event->getDispatcher()->dispatch(TheliaEvents::PRODUCT_ADD_ACCESSORY, $clonedProductAddAccessoryEvent);
     }
 }