Initial commit
This commit is contained in:
78
application/Espo/Core/Upgrades/Actions/Base/Delete.php
Normal file
78
application/Espo/Core/Upgrades/Actions/Base/Delete.php
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 EspoCRM, Inc.
|
||||
* Website: https://www.espocrm.com
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||||
************************************************************************/
|
||||
|
||||
namespace Espo\Core\Upgrades\Actions\Base;
|
||||
|
||||
use Espo\Core\Exceptions\Error;
|
||||
use Espo\Core\Upgrades\Actions\Base;
|
||||
|
||||
class Delete extends Base
|
||||
{
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function run(mixed $data): mixed
|
||||
{
|
||||
$processId = $data['id'];
|
||||
|
||||
$this->getLog()->debug('Delete package process ['.$processId.']: start run.');
|
||||
|
||||
if (empty($processId)) {
|
||||
throw new Error('Delete package package ID was not specified.');
|
||||
}
|
||||
|
||||
$this->initialize();
|
||||
$this->setProcessId($processId);
|
||||
|
||||
if (isset($data['parentProcessId'])) {
|
||||
$this->setParentProcessId($data['parentProcessId']);
|
||||
}
|
||||
|
||||
$this->beforeRunAction();
|
||||
/* delete a package */
|
||||
$this->deletePackage();
|
||||
$this->afterRunAction();
|
||||
$this->finalize();
|
||||
|
||||
$this->getLog()->debug('Delete package process ['.$processId.']: end run.');
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Error
|
||||
*/
|
||||
protected function deletePackage(): bool
|
||||
{
|
||||
$packageArchivePath = $this->getPackagePath(true);
|
||||
|
||||
return $this->getFileManager()->removeFile($packageArchivePath);
|
||||
}
|
||||
}
|
||||
341
application/Espo/Core/Upgrades/Actions/Base/Install.php
Normal file
341
application/Espo/Core/Upgrades/Actions/Base/Install.php
Normal file
@@ -0,0 +1,341 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 EspoCRM, Inc.
|
||||
* Website: https://www.espocrm.com
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||||
************************************************************************/
|
||||
|
||||
namespace Espo\Core\Upgrades\Actions\Base;
|
||||
|
||||
use Espo\Core\Exceptions\Error;
|
||||
use Espo\Core\Upgrades\Actions\Base;
|
||||
use Espo\Core\Utils\Util;
|
||||
use Throwable;
|
||||
|
||||
class Install extends Base
|
||||
{
|
||||
/**
|
||||
* Main installation process.
|
||||
*
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function run(mixed $data): mixed
|
||||
{
|
||||
$processId = $data['id'];
|
||||
|
||||
$this->getLog()->debug("Installation process [$processId]: start run.");
|
||||
|
||||
$this->stepInit($data);
|
||||
$this->stepCopyBefore($data);
|
||||
|
||||
if ($this->getCopyFilesPath('before')) {
|
||||
$this->stepRebuild($data);
|
||||
}
|
||||
|
||||
$this->stepBeforeInstallScript($data);
|
||||
|
||||
if ($this->getScriptPath('before')) {
|
||||
$this->stepRebuild($data);
|
||||
}
|
||||
|
||||
$this->stepCopy($data);
|
||||
$this->stepRebuild($data);
|
||||
|
||||
$this->stepCopyAfter($data);
|
||||
|
||||
if ($this->getCopyFilesPath('after')) {
|
||||
$this->stepRebuild($data);
|
||||
}
|
||||
|
||||
$this->stepAfterInstallScript($data);
|
||||
if ($this->getScriptPath('after')) {
|
||||
$this->stepRebuild($data);
|
||||
}
|
||||
|
||||
$this->stepFinalize($data);
|
||||
|
||||
$this->getLog()->debug("Installation process [$processId]: end run.");
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
protected function initPackage(array $data): void
|
||||
{
|
||||
$processId = $data['id'];
|
||||
|
||||
if (empty($processId)) {
|
||||
throw new Error('Installation package ID was not specified.');
|
||||
}
|
||||
|
||||
$this->setProcessId($processId);
|
||||
|
||||
if (isset($data['parentProcessId'])) {
|
||||
$this->setParentProcessId($data['parentProcessId']);
|
||||
}
|
||||
|
||||
/** check if an archive is unzipped, if no then unzip */
|
||||
$packagePath = $this->getPackagePath();
|
||||
|
||||
if (!file_exists($packagePath)) {
|
||||
$this->unzipArchive();
|
||||
$this->isAcceptable();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepInit(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"init\" step.");
|
||||
|
||||
if (!$this->systemRebuild()) {
|
||||
$this->throwErrorAndRemovePackage('Rebuild is failed. Fix all errors before upgrade.');
|
||||
}
|
||||
|
||||
$this->initialize();
|
||||
$this->checkIsWritable();
|
||||
$this->enableMaintenanceMode();
|
||||
$this->beforeRunAction();
|
||||
$this->backupExistingFiles();
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"init\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepCopyBefore(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"copyBefore\" step.");
|
||||
|
||||
if (!$this->copyFiles('before')) {
|
||||
$this->throwErrorAndRemovePackage('Cannot copy beforeInstall files.');
|
||||
}
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"copyBefore\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepBeforeInstallScript(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"beforeInstallScript\" step.");
|
||||
|
||||
if (!isset($data['skipBeforeScript']) || !$data['skipBeforeScript']) {
|
||||
$this->runScript('before');
|
||||
}
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"beforeInstallScript\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepCopy(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"copy\" step.");
|
||||
|
||||
/* remove files defined in a manifest */
|
||||
if (!$this->deleteFiles('delete', true)) {
|
||||
$this->throwErrorAndRemovePackage('Cannot delete files.');
|
||||
}
|
||||
|
||||
/* copy files from directory "Files" to EspoCRM files */
|
||||
if (!$this->copyFiles()) {
|
||||
$this->throwErrorAndRemovePackage('Cannot copy files.');
|
||||
}
|
||||
|
||||
if (!$this->deleteFiles('vendor')) {
|
||||
$this->throwErrorAndRemovePackage('Cannot delete vendor files.');
|
||||
}
|
||||
|
||||
if (!$this->copyFiles('vendor')) {
|
||||
$this->throwErrorAndRemovePackage('Cannot copy vendor files.');
|
||||
}
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"copy\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepRebuild(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"rebuild\" step.");
|
||||
|
||||
if (!isset($data['skipSystemRebuild']) || !$data['skipSystemRebuild']) {
|
||||
if (!$this->systemRebuild()) {
|
||||
$this->throwErrorAndRemovePackage('Error occurred while EspoCRM rebuild. More detail in the log.');
|
||||
}
|
||||
}
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"rebuild\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepCopyAfter(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"copyAfter\" step.");
|
||||
|
||||
//afterInstallFiles
|
||||
if (!$this->copyFiles('after')) {
|
||||
$this->throwErrorAndRemovePackage('Cannot copy afterInstall files.');
|
||||
}
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"copyAfter\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepAfterInstallScript(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"afterInstallScript\" step.");
|
||||
|
||||
/* run after install script */
|
||||
if (!isset($data['skipAfterScript']) || !$data['skipAfterScript']) {
|
||||
$this->runScript('after');
|
||||
}
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"afterInstallScript\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepFinalize(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"finalize\" step.");
|
||||
|
||||
$this->disableMaintenanceMode();
|
||||
$this->afterRunAction();
|
||||
$this->finalize();
|
||||
|
||||
/* delete unzipped files */
|
||||
$this->deletePackageFiles();
|
||||
|
||||
if ($this->getManifestParam('skipBackup')) {
|
||||
$path = Util::concatPath($this->getPath('backupPath'), self::FILES);
|
||||
|
||||
$this->getFileManager()->removeInDir($path);
|
||||
}
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"finalize\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function stepRevert(array $data): void
|
||||
{
|
||||
$this->initPackage($data);
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: Start \"revert\" step.");
|
||||
|
||||
$this->restoreFiles();
|
||||
|
||||
$this->getLog()->info("Installation process [{$this->getProcessId()}]: End \"revert\" step.");
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Error
|
||||
*/
|
||||
protected function restoreFiles(): bool
|
||||
{
|
||||
$this->getLog()->info('Installer: Restore previous files.');
|
||||
|
||||
$backupPath = $this->getPath('backupPath');
|
||||
$backupFilePath = Util::concatPath($backupPath, self::FILES);
|
||||
|
||||
if (!file_exists($backupFilePath)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$backupFileList = $this->getRestoreFileList();
|
||||
$copyFileList = $this->getCopyFileList();
|
||||
$deleteFileList = array_diff($copyFileList, $backupFileList);
|
||||
|
||||
$res = $this->copy($backupFilePath, '', true);
|
||||
|
||||
if (!empty($deleteFileList)) {
|
||||
$res &= $this->getFileManager()->remove($deleteFileList, null, true);
|
||||
}
|
||||
|
||||
if ($res) {
|
||||
$this->getFileManager()->removeInDir($backupPath, true);
|
||||
}
|
||||
|
||||
return (bool) $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Error
|
||||
*/
|
||||
public function throwErrorAndRemovePackage(
|
||||
string $errorMessage = '',
|
||||
bool $deletePackage = true,
|
||||
bool $systemRebuild = true,
|
||||
?Throwable $exception = null
|
||||
): void {
|
||||
|
||||
$this->restoreFiles();
|
||||
|
||||
parent::throwErrorAndRemovePackage($errorMessage, $deletePackage, $systemRebuild, $exception);
|
||||
}
|
||||
}
|
||||
250
application/Espo/Core/Upgrades/Actions/Base/Uninstall.php
Normal file
250
application/Espo/Core/Upgrades/Actions/Base/Uninstall.php
Normal file
@@ -0,0 +1,250 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 EspoCRM, Inc.
|
||||
* Website: https://www.espocrm.com
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||||
************************************************************************/
|
||||
|
||||
namespace Espo\Core\Upgrades\Actions\Base;
|
||||
|
||||
use Espo\Core\Exceptions\Error;
|
||||
use Espo\Core\Upgrades\Actions\Base;
|
||||
use Espo\Core\Utils\Util;
|
||||
use Espo\Core\Utils\Json;
|
||||
use Throwable;
|
||||
|
||||
class Uninstall extends Base
|
||||
{
|
||||
/**
|
||||
* @param array<string, mixed> $data
|
||||
* @throws Error
|
||||
*/
|
||||
public function run(mixed $data): mixed
|
||||
{
|
||||
$processId = $data['id'];
|
||||
|
||||
$this->getLog()->debug('Uninstallation process ['.$processId.']: start run.');
|
||||
|
||||
if (empty($processId)) {
|
||||
throw new Error('Uninstallation package ID was not specified.');
|
||||
}
|
||||
|
||||
$this->setProcessId($processId);
|
||||
|
||||
if (isset($data['parentProcessId'])) {
|
||||
$this->setParentProcessId($data['parentProcessId']);
|
||||
}
|
||||
|
||||
$this->initialize();
|
||||
$this->checkIsWritable();
|
||||
$this->enableMaintenanceMode();
|
||||
$this->beforeRunAction();
|
||||
|
||||
/* run before uninstall script */
|
||||
if (!isset($data['skipBeforeScript']) || !$data['skipBeforeScript']) {
|
||||
$this->runScript('beforeUninstall');
|
||||
}
|
||||
|
||||
$backupPath = $this->getPath('backupPath');
|
||||
if (file_exists($backupPath)) {
|
||||
/* copy core files */
|
||||
if (!$this->copyFiles()) {
|
||||
$this->throwErrorAndRemovePackage('Cannot copy files.');
|
||||
}
|
||||
}
|
||||
|
||||
/* remove extension files, saved in fileList */
|
||||
if (!$this->deleteFiles('delete', true)) {
|
||||
$this->throwErrorAndRemovePackage('Permission denied to delete files.');
|
||||
}
|
||||
|
||||
$this->disableMaintenanceMode();
|
||||
|
||||
if (!isset($data['skipSystemRebuild']) || !$data['skipSystemRebuild']) {
|
||||
if (!$this->systemRebuild()) {
|
||||
$this->throwErrorAndRemovePackage(
|
||||
'Error occurred while EspoCRM rebuild. More detail in the log.'
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
/* run after uninstall script */
|
||||
if (!isset($data['skipAfterScript']) || !$data['skipAfterScript']) {
|
||||
$this->runScript('afterUninstall');
|
||||
}
|
||||
|
||||
$this->afterRunAction();
|
||||
/* delete backup files */
|
||||
$this->deletePackageFiles();
|
||||
$this->finalize();
|
||||
|
||||
$this->getLog()->debug('Uninstallation process ['.$processId.']: end run.');
|
||||
|
||||
$this->clearCache();
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Error
|
||||
*/
|
||||
protected function restoreFiles(): bool
|
||||
{
|
||||
/** @noinspection PhpRedundantOptionalArgumentInspection */
|
||||
$packagePath = $this->getPath('packagePath');
|
||||
|
||||
$manifestPath = Util::concatPath($packagePath, $this->manifestName);
|
||||
|
||||
if (!file_exists($manifestPath)) {
|
||||
$this->unzipArchive($packagePath);
|
||||
}
|
||||
|
||||
$fileDirs = $this->getFileDirs($packagePath);
|
||||
|
||||
$res = true;
|
||||
|
||||
foreach ($fileDirs as $filesPath) {
|
||||
if (file_exists($filesPath)) {
|
||||
$res = $this->copy($filesPath, '', true);
|
||||
}
|
||||
}
|
||||
|
||||
$manifestJson = $this->getFileManager()->getContents($manifestPath);
|
||||
$manifest = Json::decode($manifestJson, true);
|
||||
|
||||
if (!empty($manifest['delete'])) {
|
||||
$res &= $this->getFileManager()->remove($manifest['delete'], null, true);
|
||||
}
|
||||
|
||||
$res &= $this->getFileManager()->removeInDir($packagePath, true);
|
||||
|
||||
return (bool) $res;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param ?string $type
|
||||
* @param string $dest
|
||||
* @throws Error
|
||||
*/
|
||||
protected function copyFiles($type = null, $dest = ''): bool
|
||||
{
|
||||
$backupPath = $this->getPath('backupPath');
|
||||
|
||||
$source = Util::concatPath($backupPath, self::FILES);
|
||||
|
||||
return $this->copy($source, $dest, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get backup path.
|
||||
*
|
||||
* @param bool $isPackage
|
||||
* @throws Error
|
||||
*/
|
||||
protected function getPackagePath($isPackage = false): string
|
||||
{
|
||||
if ($isPackage) {
|
||||
return $this->getPath('packagePath', $isPackage);
|
||||
}
|
||||
|
||||
return $this->getPath('backupPath');
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Error
|
||||
*/
|
||||
protected function deletePackageFiles(): bool
|
||||
{
|
||||
$backupPath = $this->getPath('backupPath');
|
||||
|
||||
return $this->getFileManager()->removeInDir($backupPath, true);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Error
|
||||
*/
|
||||
public function throwErrorAndRemovePackage(
|
||||
string $errorMessage = '',
|
||||
bool $deletePackage = true,
|
||||
bool $systemRebuild = true,
|
||||
?Throwable $exception = null
|
||||
): void {
|
||||
|
||||
$this->restoreFiles();
|
||||
|
||||
parent::throwErrorAndRemovePackage($errorMessage, false, $systemRebuild, $exception);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string[]
|
||||
* @throws Error
|
||||
*/
|
||||
protected function getCopyFileList(): array
|
||||
{
|
||||
if (!isset($this->data['fileList'])) {
|
||||
$backupPath = $this->getPath('backupPath');
|
||||
$filesPath = Util::concatPath($backupPath, self::FILES);
|
||||
|
||||
$this->data['fileList'] = $this->getFileManager()->getFileList($filesPath, true, '', true, true);
|
||||
}
|
||||
|
||||
return $this->data['fileList'];
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws Error
|
||||
*/
|
||||
protected function getRestoreFileList(): array
|
||||
{
|
||||
if (!isset($this->data['restoreFileList'])) {
|
||||
$packagePath = $this->getPackagePath();
|
||||
$filesPath = Util::concatPath($packagePath, self::FILES);
|
||||
|
||||
if (!file_exists($filesPath)) {
|
||||
$this->unzipArchive($packagePath);
|
||||
}
|
||||
|
||||
$this->data['restoreFileList'] = $this->getFileManager()->getFileList($filesPath, true, '', true, true);
|
||||
}
|
||||
|
||||
return $this->data['restoreFileList'];
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $type
|
||||
* @throws Error
|
||||
*/
|
||||
protected function getDeleteList($type = 'delete'): array
|
||||
{
|
||||
if ($type == 'delete') {
|
||||
$packageFileList = $this->getRestoreFileList();
|
||||
$backupFileList = $this->getCopyFileList();
|
||||
|
||||
return array_diff($packageFileList, $backupFileList);
|
||||
}
|
||||
|
||||
return [];
|
||||
}
|
||||
}
|
||||
78
application/Espo/Core/Upgrades/Actions/Base/Upload.php
Normal file
78
application/Espo/Core/Upgrades/Actions/Base/Upload.php
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
/************************************************************************
|
||||
* This file is part of EspoCRM.
|
||||
*
|
||||
* EspoCRM – Open Source CRM application.
|
||||
* Copyright (C) 2014-2025 EspoCRM, Inc.
|
||||
* Website: https://www.espocrm.com
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*
|
||||
* The interactive user interfaces in modified source and object code versions
|
||||
* of this program must display Appropriate Legal Notices, as required under
|
||||
* Section 5 of the GNU Affero General Public License version 3.
|
||||
*
|
||||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||||
************************************************************************/
|
||||
|
||||
namespace Espo\Core\Upgrades\Actions\Base;
|
||||
|
||||
use Espo\Core\Exceptions\Error;
|
||||
use Espo\Core\Upgrades\Actions\Base;
|
||||
|
||||
class Upload extends Base
|
||||
{
|
||||
/**
|
||||
* Upload an upgrade/extension package.
|
||||
*
|
||||
* @param string $data
|
||||
* @return string ID of upgrade/extension process.
|
||||
* @throws Error
|
||||
*/
|
||||
public function run(mixed $data): string
|
||||
{
|
||||
$processId = $this->createProcessId();
|
||||
|
||||
$this->getLog()->debug("Installation process [$processId]: start upload the package.");
|
||||
|
||||
$this->initialize();
|
||||
$this->beforeRunAction();
|
||||
|
||||
$packageArchivePath = $this->getPackagePath(true);
|
||||
|
||||
$contents = null;
|
||||
|
||||
if (!empty($data)) {
|
||||
[, $contents] = explode(',', $data);
|
||||
|
||||
$contents = base64_decode($contents);
|
||||
}
|
||||
|
||||
$res = $this->getFileManager()->putContents($packageArchivePath, $contents);
|
||||
|
||||
if ($res === false) {
|
||||
throw new Error('Could not upload the package.');
|
||||
}
|
||||
|
||||
$this->unzipArchive();
|
||||
$this->isAcceptable();
|
||||
$this->afterRunAction();
|
||||
$this->finalize();
|
||||
|
||||
$this->getLog()->debug("Installation process [$processId]: end upload the package.");
|
||||
|
||||
return $processId;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user