/**
  * Declares an association between this object and a ChildProductDocument object.
  *
  * @param                  ChildProductDocument $v
  * @return                 \Thelia\Model\ProductSaleElementsProductDocument The current object (for fluent API support)
  * @throws PropelException
  */
 public function setProductDocument(ChildProductDocument $v = null)
 {
     if ($v === null) {
         $this->setProductDocumentId(NULL);
     } else {
         $this->setProductDocumentId($v->getId());
     }
     $this->aProductDocument = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the ChildProductDocument object, it will not be re-added.
     if ($v !== null) {
         $v->addProductSaleElementsProductDocument($this);
     }
     return $this;
 }
Example #2
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}");
             }
         }
     }
 }
Example #3
0
 /**
  * Filter the query by a related \Thelia\Model\ProductDocument object
  *
  * @param \Thelia\Model\ProductDocument|ObjectCollection $productDocument  the related object to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildProductQuery The current query, for fluid interface
  */
 public function filterByProductDocument($productDocument, $comparison = null)
 {
     if ($productDocument instanceof \Thelia\Model\ProductDocument) {
         return $this->addUsingAlias(ProductTableMap::ID, $productDocument->getProductId(), $comparison);
     } elseif ($productDocument instanceof ObjectCollection) {
         return $this->useProductDocumentQuery()->filterByPrimaryKeys($productDocument->getPrimaryKeys())->endUse();
     } else {
         throw new PropelException('filterByProductDocument() only accepts arguments of type \\Thelia\\Model\\ProductDocument or Collection');
     }
 }
Example #4
0
 /**
  * Exclude object from result
  *
  * @param   ChildProductDocument $productDocument Object to remove from the list of results
  *
  * @return ChildProductDocumentQuery The current query, for fluid interface
  */
 public function prune($productDocument = null)
 {
     if ($productDocument) {
         $this->addUsingAlias(ProductDocumentTableMap::ID, $productDocument->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
 /**
  * Filter the query by a related \Thelia\Model\ProductDocument object
  *
  * @param \Thelia\Model\ProductDocument|ObjectCollection $productDocument The related object(s) to use as filter
  * @param string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return ChildProductDocumentI18nQuery The current query, for fluid interface
  */
 public function filterByProductDocument($productDocument, $comparison = null)
 {
     if ($productDocument instanceof \Thelia\Model\ProductDocument) {
         return $this->addUsingAlias(ProductDocumentI18nTableMap::ID, $productDocument->getId(), $comparison);
     } elseif ($productDocument instanceof ObjectCollection) {
         if (null === $comparison) {
             $comparison = Criteria::IN;
         }
         return $this->addUsingAlias(ProductDocumentI18nTableMap::ID, $productDocument->toKeyValue('PrimaryKey', 'Id'), $comparison);
     } else {
         throw new PropelException('filterByProductDocument() only accepts arguments of type \\Thelia\\Model\\ProductDocument or Collection');
     }
 }
 protected function getMediaModelInstance($t2_object_id)
 {
     $obj = new ProductDocument();
     return $obj->setProductId($t2_object_id);
 }