1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
ifhub.club/engine/classes/EntityORM.class.php

324 lines
9.3 KiB
PHP
Raw Normal View History

2010-08-13 19:26:19 +03:00
<?php
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Абстрактный класс сущности ORM
*
*/
abstract class EntityORM extends Entity {
const RELATION_TYPE_BELONGS_TO='belongs_to';
const RELATION_TYPE_HAS_MANY='has_many';
const RELATION_TYPE_HAS_ONE='has_one';
2010-08-29 10:03:53 +03:00
const RELATION_TYPE_MANY_TO_MANY='many_to_many';
const RELATION_TYPE_TREE='tree';
2010-08-13 19:26:19 +03:00
protected $aFields=array();
2010-08-13 19:26:19 +03:00
protected $aRelations=array();
protected $aRelationsData=array();
protected $sPrimaryKey='id';
protected $bIsNew=true;
public function __construct($aParam=false) {
2010-08-13 19:26:19 +03:00
parent::__construct($aParam);
$this->aRelations=$this->_getRelations();
2010-08-13 19:26:19 +03:00
}
2010-08-29 10:03:53 +03:00
public function _GetPrimaryKey() {
if(!$this->_getDataOne($this->sPrimaryKey)) {
if($this->_getFields()) {
if(array_key_exists('#primary_key',$this->aFields)) {
$this->sPrimaryKey = $this->aFields['#primary_key'];
} else {
$this->sPrimaryKey = $this->_getField($this->sPrimaryKey);
2010-08-29 10:03:53 +03:00
}
}
}
2010-08-13 19:26:19 +03:00
return $this->sPrimaryKey;
}
public function _isNew() {
return $this->bIsNew;
}
public function _SetIsNew($bIsNew) {
$this->bIsNew=$bIsNew;
}
public function Add() {
return $this->_Method(__FUNCTION__);
}
public function Update() {
return $this->_Method(__FUNCTION__);
}
public function Save() {
return $this->_Method(__FUNCTION__);
}
public function Delete() {
return $this->_Method(__FUNCTION__);
2010-08-29 10:03:53 +03:00
}
public function Reload() {
return $this->_Method(__FUNCTION__);
}
public function ShowColumns() {
return $this->_Method(__FUNCTION__ .'From');
2010-08-13 19:26:19 +03:00
}
public function getChildren() {
if(in_array(self::RELATION_TYPE_TREE,$this->aRelations)) {
return $this->_Method(__FUNCTION__ .'Of');
}
return $this->__call(__FUNCTION__);
}
public function getDescendants() {
if(in_array(self::RELATION_TYPE_TREE,$this->aRelations)) {
return $this->_Method(__FUNCTION__ .'Of');
}
return $this->__call(__FUNCTION__);
}
public function getParent() {
if(in_array(self::RELATION_TYPE_TREE,$this->aRelations)) {
return $this->_Method(__FUNCTION__ .'Of');
}
return $this->__call(__FUNCTION__);
}
public function getAncestors() {
if(in_array(self::RELATION_TYPE_TREE,$this->aRelations)) {
return $this->_Method(__FUNCTION__ .'Of');
}
return $this->__call(__FUNCTION__);
}
public function setChildren($aChildren=array()) {
if(in_array(self::RELATION_TYPE_TREE,$this->aRelations)) {
$this->aRelationsData['children'] = $aChildren;
} else {
$aArgs = func_get_args();
return $this->__call(__FUNCTION__,$aArgs);
}
}
public function setDescendants($aDescendants=array()) {
if(in_array(self::RELATION_TYPE_TREE,$this->aRelations)) {
$this->aRelationsData['descendants'] = $aDescendants;
} else {
$aArgs = func_get_args();
return $this->__call(__FUNCTION__,$aArgs);
}
}
public function setParent($oParent=null) {
if(in_array(self::RELATION_TYPE_TREE,$this->aRelations)) {
$this->aRelationsData['parent'] = $oParent;
} else {
$aArgs = func_get_args();
return $this->__call(__FUNCTION__,$aArgs);
}
}
public function setAncestors($oParent=null) {
if(in_array(self::RELATION_TYPE_TREE,$this->aRelations)) {
$this->aRelationsData['ancestors'] = $oParent;
} else {
$aArgs = func_get_args();
return $this->__call(__FUNCTION__,$aArgs);
}
}
2010-08-13 19:26:19 +03:00
protected function _Method($sName) {
$sModuleName=Engine::GetModuleName($this);
$sEntityName=Engine::GetEntityName($this);
2010-11-17 23:32:57 +02:00
$sPluginPrefix=Engine::GetPluginPrefix($this);
2010-11-18 19:09:22 +02:00
/**
* If Module not exists, try to find its root Delegater
*/
if(!Engine::GetClassPath($sPluginPrefix.$sModuleName) && $oModuleRootDelegater=$this->Plugin_GetRootDelegater('module',$sPluginPrefix.$sModuleName)) {
$sModuleName=Engine::GetModuleName($oModuleRootDelegater);
$sPluginPrefix=Engine::GetPluginPrefix($oModuleRootDelegater);
2010-11-17 23:32:57 +02:00
}
2010-08-13 19:26:19 +03:00
return Engine::GetInstance()->_CallModule("{$sPluginPrefix}{$sModuleName}_{$sName}{$sEntityName}",array($this));
}
2010-08-13 19:26:19 +03:00
2010-08-14 01:40:01 +03:00
public function _setData($aData) {
if(is_array($aData)) {
foreach ($aData as $sKey => $val) {
if (array_key_exists($sKey,$this->aRelations)) {
$this->aRelationsData[$sKey]=$val;
} else {
$this->_aData[$sKey] = $val;
}
}
}
}
public function _getFields() {
if(empty($this->aFields)) {
$this->aFields=$this->ShowColumns();
}
return $this->aFields;
}
public function _getField($sField) {
if($aFields=$this->_getFields()) {
if(in_array($sField,$aFields)) {
return $sField;
}
$sFieldU = func_camelize($sField);
$sEntityField = func_underscore(Engine::GetEntityName($this).$sFieldU);
if(in_array($sEntityField,$aFields)) {
return $sEntityField;
}
$sModuleEntityField = func_underscore(Engine::GetModuleName($this).Engine::GetEntityName($this).$sFieldU);
if(in_array($sModuleEntityField,$aFields)) {
return $sModuleEntityField;
}
$sModuleField = func_underscore(Engine::GetModuleName($this).$sFieldU);
if(in_array($sModuleField,$aFields)) {
return $sModuleField;
}
}
return $sField;
}
public function _getRelations() {
2010-11-17 20:38:44 +02:00
$sParent=get_parent_class($this);
2010-11-17 23:32:57 +02:00
if(substr_count($sParent,'_Inherits_') || substr_count($sParent,'_Inherit_')) {
2010-11-17 20:38:44 +02:00
$sParent = get_parent_class($sParent);
}
$aParentRelations=array();
if(!in_array($sParent,array('Entity','EntityORM'))) {
$oEntityParent=new $sParent();
$aParentRelations=$oEntityParent->_getRelations();
}
return array_merge($aParentRelations,$this->aRelations);
}
public function _getRelationsData() {
return $this->aRelationsData;
}
public function _setRelationsData($aData) {
$this->aRelationsData=$aData;
}
2010-08-13 19:26:19 +03:00
public function __call($sName,$aArgs) {
2010-08-29 10:03:53 +03:00
$sType=substr($sName,0,strpos(func_underscore($sName),'_'));
if (!strpos($sName,'_') and in_array($sType,array('get','set','reload'))) {
$sKey=func_underscore(str_replace($sType,'',$sName));
2010-08-13 19:26:19 +03:00
if ($sType=='get') {
if (isset($this->_aData[$sKey])) {
return $this->_aData[$sKey];
} else {
$sField=$this->_getField($sKey);
if($sField!=$sKey && isset($this->_aData[$sField])) {
return $this->_aData[$sField];
2010-08-13 19:26:19 +03:00
}
}
/**
* Проверяем на связи
*/
if (array_key_exists($sKey,$this->aRelations)) {
$sEntityRel=$this->aRelations[$sKey][1];
$sRelationType=$this->aRelations[$sKey][0];
$sRelationKey=$this->aRelations[$sKey][2];
2010-08-29 10:03:53 +03:00
$sRelationJoinTable=null;
if($sRelationType == self::RELATION_TYPE_MANY_TO_MANY && array_key_exists(3, $this->aRelations[$sKey])) {
$sRelationJoinTable=$this->aRelations[$sKey][3];
}
2010-08-13 19:26:19 +03:00
/**
* Если связь уже загруженна, то возвращаем сразу результат
*/
if (array_key_exists($sKey,$this->aRelationsData)) {
return $this->aRelationsData[$sKey];
}
2010-08-29 10:03:53 +03:00
$sRelModuleName=Engine::GetModuleName($sEntityRel);
$sRelEntityName=Engine::GetEntityName($sEntityRel);
$sRelPluginPrefix=Engine::GetPluginPrefix($sEntityRel);
$sRelPrimaryKey='id';
if($oRelEntity=Engine::GetEntity($sEntityRel)) {
$sRelPrimaryKey=$oRelEntity->_GetPrimaryKey();
}
$iPrimaryKeyValue=$this->_getDataOne($this->_GetPrimaryKey());
2010-08-13 19:26:19 +03:00
$sCmd='';
$aCmdArgs=array();
switch ($sRelationType) {
2010-08-29 10:03:53 +03:00
case self::RELATION_TYPE_BELONGS_TO :
$sCmd="{$sRelPluginPrefix}{$sRelModuleName}_get{$sRelEntityName}By".func_camelize($sRelPrimaryKey);
$aCmdArgs[0]=$this->_getDataOne($sRelationKey);
break;
case self::RELATION_TYPE_HAS_ONE :
$sCmd="{$sRelPluginPrefix}{$sRelModuleName}_get{$sRelEntityName}By".func_camelize($sRelationKey);
$aCmdArgs[0]=$iPrimaryKeyValue;
break;
2010-08-13 19:26:19 +03:00
case self::RELATION_TYPE_HAS_MANY :
2010-08-29 10:03:53 +03:00
$sCmd="{$sRelPluginPrefix}{$sRelModuleName}_get{$sRelEntityName}ItemsBy".func_camelize($sRelationKey);
2010-08-13 19:26:19 +03:00
$aCmdArgs[0]=$iPrimaryKeyValue;
break;
2010-08-29 10:03:53 +03:00
case self::RELATION_TYPE_MANY_TO_MANY :
$sCmd="{$sRelPluginPrefix}Module{$sRelModuleName}_get{$sRelEntityName}ItemsByJoinTable";
$aCmdArgs[0] = array(
'join_table' => $sRelationJoinTable,
2010-08-29 10:03:53 +03:00
'relation_key' => $sRelationKey,
'by_key' => $this->_GetPrimaryKey(),
'by_value' => $iPrimaryKeyValue,
2010-08-29 10:03:53 +03:00
);
break;
2010-08-13 19:26:19 +03:00
default:
break;
2010-08-29 10:03:53 +03:00
}
2010-08-13 19:26:19 +03:00
$res=Engine::GetInstance()->_CallModule($sCmd,$aCmdArgs);
2010-08-29 10:03:53 +03:00
2010-08-13 19:26:19 +03:00
$this->aRelationsData[$sKey]=$res;
return $res;
}
return null;
} elseif ($sType=='set' and array_key_exists(0,$aArgs)) {
if (array_key_exists($sKey,$this->aRelations)) {
$this->aRelationsData[$sKey]=$aArgs[0];
} else {
$this->_aData[$this->_getField($sKey)]=$aArgs[0];
2010-08-13 19:26:19 +03:00
}
2010-08-29 10:03:53 +03:00
} elseif ($sType=='reload') {
if (array_key_exists($sKey,$this->aRelationsData)) {
unset($this->aRelationsData[$sKey]);
return $this->__call('get'.func_camelize($sKey),$aArgs);
}
2010-08-13 19:26:19 +03:00
}
} else {
return Engine::getInstance()->_CallModule($sName,$aArgs);
}
}
}
?>