110 lines
5.3 KiB
PHP
110 lines
5.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Copyright since 2007 PrestaShop SA and Contributors
|
|
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License 3.0 (AFL-3.0)
|
|
* that is bundled with this package in the file LICENSE.md.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/AFL-3.0
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to https://devdocs.prestashop.com/ for more information.
|
|
*
|
|
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
|
* @copyright Since 2007 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0)
|
|
*/
|
|
|
|
namespace PrestaShop\Module\AutoUpgrade\Task\Upgrade;
|
|
|
|
use Exception;
|
|
use PrestaShop\Module\AutoUpgrade\Task\AbstractTask;
|
|
use PrestaShop\Module\AutoUpgrade\Task\ExitCode;
|
|
use PrestaShop\Module\AutoUpgrade\UpgradeContainer;
|
|
use PrestaShop\Module\AutoUpgrade\UpgradeTools\FilesystemAdapter;
|
|
use PrestaShop\Module\AutoUpgrade\VersionUtils;
|
|
|
|
/**
|
|
* Download PrestaShop archive according to the chosen channel.
|
|
*/
|
|
class Download extends AbstractTask
|
|
{
|
|
const TASK_TYPE = 'upgrade';
|
|
|
|
/**
|
|
* @throws Exception
|
|
*/
|
|
public function run(): int
|
|
{
|
|
if (!\ConfigurationTest::test_fopen() && !\ConfigurationTest::test_curl()) {
|
|
$this->logger->error($this->translator->trans('You need allow_url_fopen or cURL enabled for automatic download to work. You can also manually upload it in filepath %s.', [$this->container->getFilePath()]));
|
|
$this->next = 'error';
|
|
|
|
return ExitCode::FAIL;
|
|
}
|
|
|
|
$this->container->getState()->setProgressPercentage(
|
|
$this->container->getCompletionCalculator()->getBasePercentageOfTask(self::class)
|
|
);
|
|
|
|
$upgrader = $this->container->getUpgrader();
|
|
$upgrader->channel = $this->container->getUpgradeConfiguration()->get('channel');
|
|
$upgrader->branch = VersionUtils::splitPrestaShopVersion(_PS_VERSION_)['major'];
|
|
if ($this->container->getUpgradeConfiguration()->get('channel') == 'private' && !$this->container->getUpgradeConfiguration()->get('private_allow_major')) {
|
|
$upgrader->checkPSVersion(false, ['private', 'minor']);
|
|
} else {
|
|
$upgrader->checkPSVersion();
|
|
}
|
|
|
|
if ($upgrader->channel == 'private') {
|
|
$upgrader->link = $this->container->getUpgradeConfiguration()->get('private_release_link');
|
|
$upgrader->md5 = $this->container->getUpgradeConfiguration()->get('private_release_md5');
|
|
}
|
|
$this->logger->debug($this->translator->trans('Downloading from %s', [$upgrader->link]));
|
|
$this->logger->debug($this->translator->trans('File will be saved in %s', [$this->container->getFilePath()]));
|
|
if (file_exists($this->container->getProperty(UpgradeContainer::DOWNLOAD_PATH))) {
|
|
FilesystemAdapter::deleteDirectory($this->container->getProperty(UpgradeContainer::DOWNLOAD_PATH), false);
|
|
$this->logger->debug($this->translator->trans('Download directory has been emptied'));
|
|
}
|
|
$report = '';
|
|
$relative_download_path = str_replace(_PS_ROOT_DIR_, '', $this->container->getProperty(UpgradeContainer::DOWNLOAD_PATH));
|
|
if (\ConfigurationTest::test_dir($relative_download_path, false, $report)) {
|
|
$res = $upgrader->downloadLast($this->container->getProperty(UpgradeContainer::DOWNLOAD_PATH), $this->container->getProperty(UpgradeContainer::ARCHIVE_FILENAME));
|
|
if ($res) {
|
|
$md5file = md5_file(realpath($this->container->getProperty(UpgradeContainer::ARCHIVE_FILEPATH)));
|
|
if ($md5file == $upgrader->md5) {
|
|
$this->next = 'unzip';
|
|
$this->logger->debug($this->translator->trans('Download complete.'));
|
|
$this->logger->info($this->translator->trans('Download complete. Now extracting...'));
|
|
} else {
|
|
$this->logger->error($this->translator->trans('Download complete but MD5 sum does not match (%s).', [$md5file]));
|
|
$this->logger->info($this->translator->trans('Download complete but MD5 sum does not match (%s). Operation aborted.', [$md5file]));
|
|
$this->next = 'error';
|
|
}
|
|
} else {
|
|
if ($upgrader->channel == 'private') {
|
|
$this->logger->error($this->translator->trans('Error during download. The private key may be incorrect.'));
|
|
} else {
|
|
$this->logger->error($this->translator->trans('Error during download'));
|
|
}
|
|
$this->next = 'error';
|
|
}
|
|
} else {
|
|
$this->logger->error($this->translator->trans('Download directory %s is not writable.', [$this->container->getProperty(UpgradeContainer::DOWNLOAD_PATH)]));
|
|
$this->next = 'error';
|
|
}
|
|
|
|
return $this->next == 'error' ? ExitCode::FAIL : ExitCode::SUCCESS;
|
|
}
|
|
}
|