Exemplo n.º 1
0
 /**
  * Update module information, and invoke install() for new modules (e.g. modules
  * just discovered), or update() modules for which version number ha changed.
  *
  * @param SplFileInfo $file the module.xml file descriptor
  * @param ContainerInterface $container the container
  *
  * @return Module
  *
  * @throws \Exception
  * @throws \Propel\Runtime\Exception\PropelException
  */
 public function updateModule($file, ContainerInterface $container)
 {
     $descriptorValidator = $this->getDescriptorValidator();
     $content = $descriptorValidator->getDescriptor($file->getRealPath());
     $reflected = new \ReflectionClass((string) $content->fullnamespace);
     $code = basename(dirname($reflected->getFileName()));
     $version = (string) $content->version;
     $mandatory = intval($content->mandatory);
     $hidden = intval($content->hidden);
     $module = ModuleQuery::create()->filterByCode($code)->findOne();
     if (null === $module) {
         $module = new Module();
         $module->setActivate(0);
         $action = 'install';
     } elseif ($version !== $module->getVersion()) {
         $currentVersion = $module->getVersion();
         $action = 'update';
     } else {
         $action = 'none';
     }
     $con = Propel::getWriteConnection(ModuleTableMap::DATABASE_NAME);
     $con->beginTransaction();
     try {
         $module->setCode($code)->setVersion($version)->setFullNamespace((string) $content->fullnamespace)->setType($this->getModuleType($reflected))->setCategory((string) $content->type)->setMandatory($mandatory)->setHidden($hidden)->save($con);
         // Update the module images, title and description when the module is installed, but not after
         // as these data may have been modified byt the administrator
         if ('install' === $action) {
             $this->saveDescription($module, $content, $con);
             if (isset($content->{"images-folder"}) && !$module->isModuleImageDeployed($con)) {
                 /** @var \Thelia\Module\BaseModule $moduleInstance */
                 $moduleInstance = $reflected->newInstance();
                 $imagesFolder = THELIA_MODULE_DIR . $code . DS . (string) $content->{"images-folder"};
                 $moduleInstance->deployImageFolder($module, $imagesFolder, $con);
             }
         }
         // Tell the module to install() or update()
         $instance = $module->createInstance();
         $instance->setContainer($container);
         if ($action == 'install') {
             $instance->install($con);
         } elseif ($action == 'update') {
             $instance->update($currentVersion, $version, $con);
         }
         if ($action !== 'none') {
             $instance->registerHooks();
         }
         $con->commit();
     } catch (\Exception $ex) {
         Tlog::getInstance()->addError("Failed to update module " . $module->getCode(), $ex);
         $con->rollBack();
         throw $ex;
     }
     return $module;
 }