mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 06:56:05 +00:00
130 lines
3.2 KiB
PHP
130 lines
3.2 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014 Yuri Kuznetsov, Taras Machyshyn, Oleksiy Avramenko
|
|
* Website: http://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/.
|
|
************************************************************************/
|
|
|
|
namespace Espo\Core;
|
|
|
|
class DataManager
|
|
{
|
|
private $container;
|
|
|
|
private $cachePath = 'data/cache';
|
|
|
|
|
|
public function __construct(Container $container)
|
|
{
|
|
$this->container = $container;
|
|
}
|
|
|
|
protected function getContainer()
|
|
{
|
|
return $this->container;
|
|
}
|
|
|
|
/**
|
|
* Rebuild the system with metadata, database and cache clearing
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function rebuild($entityList = null)
|
|
{
|
|
$result = $this->clearCache();
|
|
|
|
$result &= $this->rebuildMetadata();
|
|
|
|
$result &= $this->rebuildDatabase($entityList);
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Clear a cache
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function clearCache()
|
|
{
|
|
$result = $this->getContainer()->get('fileManager')->removeInDir($this->cachePath);
|
|
|
|
if ($result != true) {
|
|
throw new Exceptions\Error("Error while clearing cache");
|
|
}
|
|
|
|
$this->updateCacheTimestamp();
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Rebuild database
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function rebuildDatabase($entityList = null)
|
|
{
|
|
try {
|
|
$result = $this->getContainer()->get('schema')->rebuild($entityList);
|
|
} catch (\Exception $e) {
|
|
$result = false;
|
|
$GLOBALS['log']->error('Fault to rebuild database schema'.'. Details: '.$e->getMessage());
|
|
}
|
|
|
|
if ($result != true) {
|
|
throw new Exceptions\Error("Error while rebuilding database. See log file for details.");
|
|
}
|
|
|
|
$this->updateCacheTimestamp();
|
|
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Rebuild metadata
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function rebuildMetadata()
|
|
{
|
|
$metadata = $this->getContainer()->get('metadata');
|
|
|
|
$metadata->init(true);
|
|
|
|
$ormMeta = $metadata->getOrmMetadata(true);
|
|
|
|
$this->updateCacheTimestamp();
|
|
|
|
return empty($ormMeta) ? false : true;
|
|
}
|
|
|
|
/**
|
|
* Update cache timestamp
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function updateCacheTimestamp()
|
|
{
|
|
$this->getContainer()->get('config')->updateCacheTimestamp();
|
|
$this->getContainer()->get('config')->save();
|
|
return true;
|
|
}
|
|
}
|
|
|