Files
espocrm/upgrades/6.2/scripts/AfterUpgrade.php
2021-05-31 12:25:51 +03:00

212 lines
6.5 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2021 Yurii Kuznietsov, Taras Machyshyn, Oleksii Avramenko
* Website: https://www.espocrm.com
*
* EspoCRM is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* EspoCRM 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with EspoCRM. If not, see http://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 General Public License version 3.
*
* In accordance with Section 7(b) of the GNU General Public License version 3,
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
************************************************************************/
use Espo\Core\Container;
use Espo\Core\Utils\Metadata;
use Espo\Core\Utils\File\Manager as FileManager;
use Espo\Core\Utils\Json;
use Espo\ORM\EntityManager;
class AfterUpgrade
{
public function run(Container $container): void
{
$entityManager = $container->get('entityManager');
$this->updateTemplates($entityManager);
$this->updateEventMetadata($container->get('metadata'), $container->get('fileManager'));
$this->updatePersonMetadata($container->get('metadata'), $container->get('fileManager'));
$this->updateCompanyMetadata($container->get('metadata'), $container->get('fileManager'));
$this->migrateEmailAccountFolders('EmailAccount', $container->get('entityManager'));
$this->migrateEmailAccountFolders('InboundEmail', $container->get('entityManager'));
}
protected function updateTemplates($entityManager)
{
$templateList = $entityManager
->getRepository('Template')
->where([
'printHeader' => false,
['header!=' => null],
['header!=' => ''],
])
->find();
foreach ($templateList as $template) {
$body = $template->get('header') . ($template->get('body') ?? '');
$template->set('body', $body);
$template->set('header', null);
$entityManager->saveEntity($template);
}
}
private function updateEventMetadata(Metadata $metadata, FileManager $fileManager): void
{
$defs = $metadata->get(['scopes']);
$toSave = false;
$path1 = "application/Espo/Core/Templates/Metadata/Event/selectDefs.json";
$contents1 = $fileManager->getContents($path1);
$data1 = Json::decode($contents1, true);
$path2 = "application/Espo/Core/Templates/Metadata/Event/recordDefs.json";
$contents2 = $fileManager->getContents($path2);
$data2 = Json::decode($contents2, true);
foreach ($defs as $entityType => $item) {
$isCustom = $item['isCustom'] ?? false;
$type = $item['type'] ?? false;
if (!$isCustom || $type !== 'Event') {
continue;
}
$toSave = true;
$metadata->set('selectDefs', $entityType, $data1);
$metadata->set('recordDefs', $entityType, $data2);
}
if ($toSave) {
$metadata->save();
}
}
private function updatePersonMetadata(Metadata $metadata, FileManager $fileManager): void
{
$defs = $metadata->get(['scopes']);
$toSave = false;
$path2 = "application/Espo/Core/Templates/Metadata/Person/recordDefs.json";
$contents2 = $fileManager->getContents($path2);
$data2 = Json::decode($contents2, true);
foreach ($defs as $entityType => $item) {
$isCustom = $item['isCustom'] ?? false;
$type = $item['type'] ?? false;
if (!$isCustom || $type !== 'Person') {
continue;
}
$toSave = true;
$metadata->set('recordDefs', $entityType, $data2);
}
if ($toSave) {
$metadata->save();
}
}
private function updateCompanyMetadata(Metadata $metadata, FileManager $fileManager): void
{
$defs = $metadata->get(['scopes']);
$toSave = false;
$path2 = "application/Espo/Core/Templates/Metadata/Company/recordDefs.json";
$contents2 = $fileManager->getContents($path2);
$data2 = Json::decode($contents2, true);
foreach ($defs as $entityType => $item) {
$isCustom = $item['isCustom'] ?? false;
$type = $item['type'] ?? false;
if (!$isCustom || $type !== 'Company') {
continue;
}
$toSave = true;
$metadata->set('recordDefs', $entityType, $data2);
}
if ($toSave) {
$metadata->save();
}
}
private function migrateEmailAccountFolders(string $entityType, EntityManager $entityManager): void
{
$selectQuery = $entityManager->getQueryBuilder()
->select()
->from($entityType)
->select(['id', 'monitoredFolders'])
->build();
$sth = $entityManager->getQueryExecutor()->execute($selectQuery);
$dataList = [];
while ($row = $sth->fetch()) {
$dataList[] = [
'id' => $row['id'],
'folders' => $row['monitoredFolders'] ?? '',
];
}
foreach ($dataList as $item) {
$id = $item['id'];
$foldersString = $item['folders'];
$folders = array_map(
function (string $item): string {
return trim($item);
},
explode(',', $foldersString)
);
$foldersJsonString = json_encode($folders);
$updateQuery = $entityManager->getQueryBuilder()
->update()
->in($entityType)
->set(['monitoredFolders' => $foldersJsonString])
->where(['id' => $id])
->build();
$entityManager->getQueryExecutor()->execute($updateQuery);
}
}
}