This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/application/Espo/ORM/Repositories/RDB.php
T
Yuri Kuznetsov 078bdfc28f deprcated tag
2020-06-28 10:27:29 +03:00

689 lines
20 KiB
PHP

<?php
/************************************************************************
* This file is part of EspoCRM.
*
* EspoCRM - Open Source CRM application.
* Copyright (C) 2014-2020 Yuri Kuznetsov, Taras Machyshyn, Oleksiy 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.
************************************************************************/
namespace Espo\ORM\Repositories;
use Espo\ORM\EntityManager;
use Espo\ORM\EntityFactory;
use Espo\ORM\EntityCollection;
use Espo\ORM\Entity;
use Espo\ORM\IEntity;
use Espo\ORM\Repository;
use Espo\ORM\DB\IMapper as Mapper;
class RDB extends Repository implements Findable, Relatable, Removable
{
/**
* @var Object Mapper.
*/
protected $mapper;
/**
* @var array Where clause array. To be used in further find operation.
*/
protected $whereClause = [];
/**
* @var array Having clause array.
*/
protected $havingClause = [];
/**
* @var array Parameters to be used in further find operations.
*/
protected $listParams = [];
private $isTableLocked = false;
public function __construct(string $entityType, EntityManager $entityManager, EntityFactory $entityFactory)
{
$this->entityType = $entityType;
$this->entityName = $entityType;
$this->entityFactory = $entityFactory;
$this->seed = $this->entityFactory->create($entityType);
$this->entityClassName = get_class($this->seed);
$this->entityManager = $entityManager;
}
protected function getMapper() : Mapper
{
if (empty($this->mapper)) {
$this->mapper = $this->getEntityManager()->getMapper('RDB');
}
return $this->mapper;
}
public function handleSelectParams(&$params)
{
}
public function reset()
{
$this->whereClause = [];
$this->havingClause = [];
$this->listParams = [];
}
public function getNew() : ?Entity
{
$entity = $this->entityFactory->create($this->entityType);
if ($entity) {
$entity->setIsNew(true);
$entity->populateDefaults();
return $entity;
}
}
public function getById(string $id, array $params = []) : ?Entity
{
$entity = $this->entityFactory->create($this->entityType);
if (!$entity) return null;
if (empty($params['skipAdditionalSelectParams'])) {
$this->handleSelectParams($params);
}
return $this->getMapper()->selectById($entity, $id, $params);
}
public function get(?string $id = null) : ?Entity
{
if (is_null($id)) {
return $this->getNew();
}
return $this->getById($id);
}
protected function beforeSave(Entity $entity, array $options = [])
{
}
protected function afterSave(Entity $entity, array $options = [])
{
}
public function save(Entity $entity, array $options = [])
{
$entity->setAsBeingSaved();
if (empty($options['skipBeforeSave']) && empty($options['skipAll'])) {
$this->beforeSave($entity, $options);
}
if ($entity->isNew() && !$entity->isSaved()) {
$result = $this->getMapper()->insert($entity);
} else {
$result = $this->getMapper()->update($entity);
}
if ($result) {
$entity->setIsSaved(true);
if (empty($options['skipAfterSave']) && empty($options['skipAll'])) {
$this->afterSave($entity, $options);
}
if ($entity->isNew()) {
if (empty($options['keepNew'])) {
$entity->setIsNew(false);
}
} else {
if ($entity->isFetched()) {
$entity->updateFetchedValues();
}
}
}
$entity->setAsNotBeingSaved();
return $result;
}
public function restoreDeleted(string $id)
{
return $this->getMapper()->restoreDeleted($this->entityType, $id);
}
protected function beforeRemove(Entity $entity, array $options = [])
{
}
protected function afterRemove(Entity $entity, array $options = [])
{
}
public function remove(Entity $entity, array $options = [])
{
$this->beforeRemove($entity, $options);
$result = $this->getMapper()->delete($entity);
if ($result) {
$this->afterRemove($entity, $options);
}
return $result;
}
public function deleteFromDb(string $id, bool $onlyDeleted = false)
{
return $this->getMapper()->deleteFromDb($this->entityType, $id, $onlyDeleted);
}
public function find(array $params = []) : \Traversable
{
$params = $this->getSelectParams($params);
if (empty($params['skipAdditionalSelectParams'])) {
$this->handleSelectParams($params);
}
$selectResult = $this->getMapper()->select($this->seed, $params);
if (!empty($params['returnSthCollection'])) {
$collection = $selectResult;
} else {
$dataList = $selectResult;
$collection = new EntityCollection($dataList, $this->entityType, $this->entityFactory);
}
$collection->setAsFetched();
$this->reset();
return $collection;
}
public function findOne(array $params = []) : ?Entity
{
$collection = $this->limit(0, 1)->find($params);
if (count($collection)) {
return $collection[0];
}
return null;
}
public function findByQuery(string $sql, ?string $collectionType = null)
{
$dataArr = $this->getMapper()->selectByQuery($this->seed, $sql);
if (!$collectionType) {
$collection = new EntityCollection($dataArr, $this->entityType, $this->entityFactory);
} else if ($collectionType === \Espo\ORM\EntityManager::STH_COLLECTION) {
$collection = $this->getEntityManager()->createSthCollection($this->entityType);
$collection->setQuery($sql);
}
$this->reset();
return $collection;
}
public function findRelated(Entity $entity, string $relationName, array $params = [])
{
if (!$entity->id) {
return [];
}
if ($entity->getRelationType($relationName) === Entity::BELONGS_TO_PARENT) {
$entityType = $entity->get($relationName . 'Type');
} else {
$entityType = $entity->getRelationParam($relationName, 'entity');
}
if ($entityType) {
if (empty($params['skipAdditionalSelectParams'])) {
$this->getEntityManager()->getRepository($entityType)->handleSelectParams($params);
}
}
$result = $this->getMapper()->selectRelated($entity, $relationName, $params);
if (is_array($result)) {
$collection = new EntityCollection($result, $entityType, $this->entityFactory);
$collection->setAsFetched();
return $collection;
} else if ($result instanceof EntityCollection) {
$collection = $result;
return $collection;
} else if ($result instanceof Entity) {
$entity = $result;
return $entity;
} else {
return $result;
}
}
public function countRelated(Entity $entity, string $relationName, array $params = []) : int
{
if (!$entity->id) {
return 0;
}
$entityType = $entity->relations[$relationName]['entity'];
if (empty($params['skipAdditionalSelectParams'])) {
$this->getEntityManager()->getRepository($entityType)->handleSelectParams($params);
}
return intval($this->getMapper()->countRelated($entity, $relationName, $params));
}
public function isRelated(Entity $entity, string $relationName, $foreign) : bool
{
if (!$entity->id) {
return false;
}
if ($foreign instanceof Entity) {
$id = $foreign->id;
} else if (is_string($foreign)) {
$id = $foreign;
} else {
return false;
}
if (!$id) return false;
if ($entity->getRelationType($relationName) === Entity::BELONGS_TO) {
$foreignEntityType = $entity->getRelationParam($relationName, 'entity');
if (!$foreignEntityType) return false;
$foreignId = $entity->get($relationName . 'Id');
if (!$foreignId) {
$e = $this->select([$relationName . 'Id'])->where(['id' => $entity->id])->findOne();
if ($e) {
$foreignId = $e->get($relationName . 'Id');
}
}
if (!$foreignId) return false;
$foreignEntity = $this->getEntityManager()->getRepository($foreignEntityType)->select(['id'])->where([
'id' => $foreignId,
])->findOne();
if (!$foreignEntity) return false;
return $foreignEntity->id === $id;
}
return (bool) $this->countRelated($entity, $relationName, [
'whereClause' => [
'id' => $id,
]
]);
}
public function relate(Entity $entity, string $relationName, $foreign, $data = null, array $options = [])
{
if (!$entity->id) {
return;
}
$this->beforeRelate($entity, $relationName, $foreign, $data, $options);
$beforeMethodName = 'beforeRelate' . ucfirst($relationName);
if (method_exists($this, $beforeMethodName)) {
$this->$beforeMethodName($entity, $foreign, $data, $options);
}
$result = false;
$methodName = 'relate' . ucfirst($relationName);
if (method_exists($this, $methodName)) {
$result = $this->$methodName($entity, $foreign, $data, $options);
} else {
$d = $data;
if ($d instanceof \stdClass) {
$d = get_object_vars($d);
}
if ($foreign instanceof Entity) {
$result = $this->getMapper()->relate($entity, $relationName, $foreign, $d);
}
if (is_string($foreign)) {
$result = $this->getMapper()->addRelation($entity, $relationName, $foreign, null, $d);
}
}
if ($result) {
$this->afterRelate($entity, $relationName, $foreign, $data, $options);
$afterMethodName = 'afterRelate' . ucfirst($relationName);
if (method_exists($this, $afterMethodName)) {
$this->$afterMethodName($entity, $foreign, $data, $options);
}
}
return $result;
}
public function unrelate(Entity $entity, string $relationName, $foreign, array $options = [])
{
if (!$entity->id) {
return;
}
$this->beforeUnrelate($entity, $relationName, $foreign, $options);
$beforeMethodName = 'beforeUnrelate' . ucfirst($relationName);
if (method_exists($this, $beforeMethodName)) {
$this->$beforeMethodName($entity, $foreign, $options);
}
$result = false;
$methodName = 'unrelate' . ucfirst($relationName);
if (method_exists($this, $methodName)) {
$result = $this->$methodName($entity, $foreign);
} else {
if ($foreign instanceof Entity) {
$result = $this->getMapper()->unrelate($entity, $relationName, $foreign);
}
if (is_string($foreign)) {
$result = $this->getMapper()->removeRelation($entity, $relationName, $foreign);
}
if ($foreign === true) {
$result = $this->getMapper()->removeAllRelations($entity, $relationName);
}
}
if ($result) {
$this->afterUnrelate($entity, $relationName, $foreign, $options);
$afterMethodName = 'afterUnrelate' . ucfirst($relationName);
if (method_exists($this, $afterMethodName)) {
$this->$afterMethodName($entity, $foreign, $options);
}
}
return $result;
}
public function getRelationColumn(Entity $entity, string $relationName, string $foreignId, string $column)
{
return $this->getMapper()->getRelationColumn($entity, $relationName, $foreignId, $column);
}
protected function beforeRelate(Entity $entity, $relationName, $foreign, $data = null, array $options = [])
{
}
protected function afterRelate(Entity $entity, $relationName, $foreign, $data = null, array $options = [])
{
}
protected function beforeUnrelate(Entity $entity, $relationName, $foreign, array $options = [])
{
}
protected function afterUnrelate(Entity $entity, $relationName, $foreign, array $options = [])
{
}
protected function beforeMassRelate(Entity $entity, $relationName, array $params = [], array $options = [])
{
}
protected function afterMassRelate(Entity $entity, $relationName, array $params = [], array $options = [])
{
}
public function updateRelation(Entity $entity, string $relationName, $foreign, $data)
{
if (!$entity->id) {
return;
}
if ($data instanceof \stdClass) {
$data = get_object_vars($data);
}
if ($foreign instanceof Entity) {
$id = $foreign->id;
} else {
$id = $foreign;
}
if (is_string($foreign)) {
return $this->getMapper()->updateRelation($entity, $relationName, $id, $data);
}
return null;
}
public function massRelate(Entity $entity, string $relationName, array $params = [], array $options = [])
{
if (!$entity->id) {
return;
}
$this->beforeMassRelate($entity, $relationName, $params, $options);
$result = $this->getMapper()->massRelate($entity, $relationName, $params);
if ($result) {
$this->afterMassRelate($entity, $relationName, $params, $options);
}
return $result;
}
/** @deprecated */
public function getAll()
{
$this->reset();
return $this->find();
}
public function count(array $params = []) : int
{
if (empty($params['skipAdditionalSelectParams'])) {
$this->handleSelectParams($params);
}
$params = $this->getSelectParams($params);
$count = $this->getMapper()->count($this->seed, $params);
$this->reset();
return intval($count);
}
public function max(string $field)
{
$params = $this->getSelectParams();
return $this->getMapper()->max($this->seed, $params, $field);
}
public function min(string $field)
{
$params = $this->getSelectParams();
return $this->getMapper()->min($this->seed, $params, $field);
}
public function sum(string $field)
{
$params = $this->getSelectParams();
return $this->getMapper()->sum($this->seed, $params, $field);
}
public function join()
{
$args = func_get_args();
if (empty($this->listParams['joins'])) {
$this->listParams['joins'] = [];
}
foreach ($args as &$param) {
if (is_array($param)) {
foreach ($param as $k => $v) {
$this->listParams['joins'][] = $v;
}
} else {
$this->listParams['joins'][] = $param;
}
}
return $this;
}
public function leftJoin()
{
$args = func_get_args();
if (empty($this->listParams['leftJoins'])) {
$this->listParams['leftJoins'] = [];
}
foreach ($args as &$param) {
if (is_array($param)) {
foreach ($param as $k => $v) {
$this->listParams['leftJoins'][] = $v;
}
} else {
$this->listParams['leftJoins'][] = $param;
}
}
return $this;
}
public function distinct()
{
$this->listParams['distinct'] = true;
return $this;
}
public function where($param1 = [], $param2 = null)
{
if (is_array($param1)) {
$this->whereClause = $param1 + $this->whereClause;
} else {
if (!is_null($param2)) {
$this->whereClause[$param1] = $param2;
}
}
return $this;
}
public function having($param1 = [], $param2 = null)
{
if (is_array($param1)) {
$this->havingClause = $param1 + $this->havingClause;
} else {
if (!is_null($param2)) {
$this->havingClause[$param1] = $param2;
}
}
return $this;
}
public function order($field = 'id', $direction = "ASC")
{
$this->listParams['orderBy'] = $field;
$this->listParams['order'] = $direction;
return $this;
}
public function limit($offset, $limit)
{
$this->listParams['offset'] = $offset;
$this->listParams['limit'] = $limit;
return $this;
}
public function select($select)
{
$this->listParams['select'] = $select;
return $this;
}
public function groupBy($groupBy)
{
$this->listParams['groupBy'] = $groupBy;
return $this;
}
public function setListParams(array $params = [])
{
$this->listParams = $params;
}
public function getListParams()
{
return $this->listParams;
}
protected function getSelectParams(array $params = [])
{
if (isset($params['whereClause'])) {
$params['whereClause'] = $params['whereClause'];
if (!empty($this->whereClause)) {
$params['whereClause'][] = $this->whereClause;
}
} else {
$params['whereClause'] = $this->whereClause;
}
if (!empty($params['havingClause'])) {
$params['havingClause'] = $params['havingClause'];
if (!empty($this->havingClause)) {
$params['havingClause'][] = $this->havingClause;
}
} else {
$params['havingClause'] = $this->havingClause;
}
if (!empty($params['leftJoins']) && !empty($this->listParams['leftJoins'])) {
foreach ($this->listParams['leftJoins'] as $j) {
$params['leftJoins'][] = $j;
}
}
if (!empty($params['joins']) && !empty($this->listParams['joins'])) {
foreach ($this->listParams['joins'] as $j) {
$params['joins'][] = $j;
}
}
$params = array_replace_recursive($this->listParams, $params);
return $params;
}
protected function getPDO()
{
return $this->getEntityManager()->getPDO();
}
protected function lockTable()
{
$tableName = $this->getEntityManager()->getQuery()->toDb($this->entityType);
$this->getPDO()->query("LOCK TABLES `{$tableName}` WRITE");
$this->isTableLocked = true;
}
protected function unlockTable()
{
$this->getPDO()->query("UNLOCK TABLES");
$this->isTableLocked = false;
}
protected function isTableLocked()
{
return $this->isTableLocked;
}
}