Exemple #1
0
 /**
  * Remove the translation for a given locale
  *
  * @param     string $locale Locale to use for the translation, e.g. 'fr_FR'
  * @param     ConnectionInterface $con an optional connection object
  *
  * @return    ChildProductDocument The current object (for fluent API support)
  */
 public function removeTranslation($locale = 'en_US', ConnectionInterface $con = null)
 {
     if (!$this->isNew()) {
         ChildProductDocumentI18nQuery::create()->filterByPrimaryKey(array($this->getPrimaryKey(), $locale))->delete($con);
     }
     if (isset($this->currentTranslations[$locale])) {
         unset($this->currentTranslations[$locale]);
     }
     foreach ($this->collProductDocumentI18ns as $key => $translation) {
         if ($translation->getLocale() == $locale) {
             unset($this->collProductDocumentI18ns[$key]);
             break;
         }
     }
     return $this;
 }
 /**
  * Removes this object from datastore and sets delete attribute.
  *
  * @param      ConnectionInterface $con
  * @return void
  * @throws PropelException
  * @see ProductDocumentI18n::setDeleted()
  * @see ProductDocumentI18n::isDeleted()
  */
 public function delete(ConnectionInterface $con = null)
 {
     if ($this->isDeleted()) {
         throw new PropelException("This object has already been deleted.");
     }
     if ($con === null) {
         $con = Propel::getServiceContainer()->getWriteConnection(ProductDocumentI18nTableMap::DATABASE_NAME);
     }
     $con->beginTransaction();
     try {
         $deleteQuery = ChildProductDocumentI18nQuery::create()->filterByPrimaryKey($this->getPrimaryKey());
         $ret = $this->preDelete($con);
         if ($ret) {
             $deleteQuery->delete($con);
             $this->postDelete($con);
             $con->commit();
             $this->setDeleted(true);
         } else {
             $con->commit();
         }
     } catch (Exception $e) {
         $con->rollBack();
         throw $e;
     }
 }
Exemple #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}");
             }
         }
     }
 }
 /**
  * Performs an INSERT on the database, given a ProductDocumentI18n or Criteria object.
  *
  * @param mixed               $criteria Criteria or ProductDocumentI18n object containing data that is used to create the INSERT statement.
  * @param ConnectionInterface $con the ConnectionInterface connection to use
  * @return mixed           The new primary key.
  * @throws PropelException Any exceptions caught during processing will be
  *         rethrown wrapped into a PropelException.
  */
 public static function doInsert($criteria, ConnectionInterface $con = null)
 {
     if (null === $con) {
         $con = Propel::getServiceContainer()->getWriteConnection(ProductDocumentI18nTableMap::DATABASE_NAME);
     }
     if ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
         // rename for clarity
     } else {
         $criteria = $criteria->buildCriteria();
         // build Criteria from ProductDocumentI18n object
     }
     // Set the correct dbName
     $query = ProductDocumentI18nQuery::create()->mergeWith($criteria);
     try {
         // use transaction because $criteria could contain info
         // for more than one table (I guess, conceivably)
         $con->beginTransaction();
         $pk = $query->doInsert($con);
         $con->commit();
     } catch (PropelException $e) {
         $con->rollBack();
         throw $e;
     }
     return $pk;
 }