mirror of
https://github.com/espocrm/espocrm.git
synced 2026-06-28 15:06:06 +00:00
207 lines
6.1 KiB
PHP
207 lines
6.1 KiB
PHP
<?php
|
|
/************************************************************************
|
|
* This file is part of EspoCRM.
|
|
*
|
|
* EspoCRM - Open Source CRM application.
|
|
* Copyright (C) 2014-2015 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/.
|
|
*
|
|
* 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.
|
|
************************************************************************/
|
|
|
|
namespace Espo\ORM;
|
|
|
|
class EntityManager
|
|
{
|
|
|
|
protected $pdo;
|
|
|
|
protected $entityFactory;
|
|
|
|
protected $repositoryFactory;
|
|
|
|
protected $mappers = array();
|
|
|
|
protected $metadata;
|
|
|
|
protected $repositoryHash = array();
|
|
|
|
protected $params = array();
|
|
|
|
protected $query;
|
|
|
|
protected $driverPlatformMap = array(
|
|
'pdo_mysql' => 'Mysql',
|
|
'mysqli' => 'Mysql',
|
|
);
|
|
|
|
public function __construct($params)
|
|
{
|
|
$this->params = $params;
|
|
|
|
$this->metadata = new Metadata();
|
|
|
|
if (empty($this->params['platform'])) {
|
|
if (empty($this->params['driver'])) {
|
|
throw new \Exception('No database driver specified.');
|
|
}
|
|
$driver = $this->params['driver'];
|
|
if (empty($this->driverPlatformMap[$driver])) {
|
|
throw new \Exception("Database driver '{$driver}' is not supported.");
|
|
}
|
|
$this->params['platform'] = $this->driverPlatformMap[$this->params['driver']];
|
|
}
|
|
|
|
if (!empty($params['metadata'])) {
|
|
$this->setMetadata($params['metadata']);
|
|
}
|
|
|
|
$entityFactoryClassName = '\\Espo\\ORM\\EntityFactory';
|
|
if (!empty($params['entityFactoryClassName'])) {
|
|
$entityFactoryClassName = $params['entityFactoryClassName'];
|
|
}
|
|
$this->entityFactory = new $entityFactoryClassName($this, $this->metadata);
|
|
|
|
$repositoryFactoryClassName = '\\Espo\\ORM\\RepositoryFactory';
|
|
if (!empty($params['repositoryFactoryClassName'])) {
|
|
$repositoryFactoryClassName = $params['repositoryFactoryClassName'];
|
|
}
|
|
$this->repositoryFactory = new $repositoryFactoryClassName($this, $this->entityFactory);
|
|
|
|
$this->init();
|
|
}
|
|
|
|
public function getQuery()
|
|
{
|
|
if (empty($this->query)) {
|
|
$platform = $this->params['platform'];
|
|
$className = '\\Espo\\ORM\\DB\\Query\\' . ucfirst($platform);
|
|
$this->query = new $className($this->getPDO(), $this->entityFactory);
|
|
}
|
|
return $this->query;
|
|
}
|
|
|
|
protected function getMapperClassName($name)
|
|
{
|
|
$className = null;
|
|
|
|
switch ($name) {
|
|
case 'RDB':
|
|
$platform = $this->params['platform'];
|
|
$className = '\\Espo\\ORM\\DB\\' . ucfirst($platform) . 'Mapper';
|
|
break;
|
|
}
|
|
|
|
return $className;
|
|
}
|
|
|
|
public function getMapper($name)
|
|
{
|
|
if ($name{0} == '\\') {
|
|
$className = $name;
|
|
} else {
|
|
$className = $this->getMapperClassName($name);
|
|
}
|
|
|
|
if (empty($this->mappers[$className])) {
|
|
$this->mappers[$className] = new $className($this->getPDO(), $this->entityFactory, $this->getQuery());
|
|
}
|
|
return $this->mappers[$className];
|
|
}
|
|
|
|
protected function initPDO()
|
|
{
|
|
$params = $this->params;
|
|
|
|
$port = empty($params['port']) ? '' : 'port=' . $params['port'] . ';';
|
|
|
|
$platform = strtolower($params['platform']);
|
|
|
|
$this->pdo = new \PDO($platform . ':host='.$params['host'].';'.$port.'dbname=' . $params['dbname'] . ';charset=' . $params['charset'], $params['user'], $params['password']);
|
|
$this->pdo->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);
|
|
}
|
|
|
|
public function getEntity($name, $id = null)
|
|
{
|
|
return $this->getRepository($name)->get($id);
|
|
}
|
|
|
|
public function saveEntity(Entity $entity, array $options = array())
|
|
{
|
|
$entityName = $entity->getEntityName();
|
|
return $this->getRepository($entityName)->save($entity, $options);
|
|
}
|
|
|
|
public function removeEntity(Entity $entity, array $options = array())
|
|
{
|
|
$entityName = $entity->getEntityName();
|
|
return $this->getRepository($entityName)->remove($entity, $options);
|
|
}
|
|
|
|
public function getRepository($name)
|
|
{
|
|
if (empty($this->repositoryHash[$name])) {
|
|
$this->repositoryHash[$name] = $this->repositoryFactory->create($name);
|
|
}
|
|
return $this->repositoryHash[$name];
|
|
}
|
|
|
|
public function setMetadata(array $data)
|
|
{
|
|
$this->metadata->setData($data);
|
|
}
|
|
|
|
public function getMetadata()
|
|
{
|
|
return $this->metadata;
|
|
}
|
|
|
|
public function getPDO()
|
|
{
|
|
if (empty($this->pdo)) {
|
|
$this->initPDO();
|
|
}
|
|
return $this->pdo;
|
|
}
|
|
|
|
public function normalizeRepositoryName($name)
|
|
{
|
|
return $name;
|
|
}
|
|
|
|
public function normalizeEntityName($name)
|
|
{
|
|
return $name;
|
|
}
|
|
|
|
public function createCollection($entityName, $data = array())
|
|
{
|
|
$seed = $this->getEntity($entityName);
|
|
$collection = new EntityCollection($data, $seed, $this->entityFactory);
|
|
return $collection;
|
|
}
|
|
|
|
protected function init()
|
|
{
|
|
}
|
|
}
|
|
|