]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - data/Relationships/M2MRelationship.php
Release 6.4.0
[Github/sugarcrm.git] / data / Relationships / M2MRelationship.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2011 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38
39 require_once("data/Relationships/SugarRelationship.php");
40
41 /**
42  * Represents a many to many relationship that is table based.
43  * @api
44  */
45 class M2MRelationship extends SugarRelationship
46 {
47     var $type = "many-to-many";
48
49     public function __construct($def)
50     {
51         $this->def = $def;
52         $this->name = $def['name'];
53
54         $lhsModule = $def['lhs_module'];
55         $this->lhsLinkDef = $this->getLinkedDefForModuleByRelationship($lhsModule);
56         $this->lhsLink = $this->lhsLinkDef['name'];
57
58         $rhsModule = $def['rhs_module'];
59         $this->rhsLinkDef = $this->getLinkedDefForModuleByRelationship($rhsModule);
60         $this->rhsLink = $this->rhsLinkDef['name'];
61
62         $this->self_referencing = $lhsModule == $rhsModule;
63     }
64
65     /**
66      * Find the link entry for a particular relationship and module.
67      *
68      * @param $module
69      * @return array|bool
70      */
71     public function getLinkedDefForModuleByRelationship($module)
72     {
73         $results = VardefManager::getLinkFieldForRelationship( $module, BeanFactory::getObjectName($module), $this->name);
74         //Only a single link was found
75         if( isset($results['name']) )
76         {
77             return $results;
78         }
79         //Multiple links with same relationship name
80         else if( is_array($results) )
81         {
82             $GLOBALS['log']->error("Warning: Multiple links found for relationship {$this->name} within module {$module}");
83             return $this->getMostAppropriateLinkedDefinition($results);
84         }
85         else
86         {
87             return FALSE;
88         }
89     }
90
91     /**
92      * Find the most 'appropriate' link entry for a relationship/module in which there are multiple link entries with the
93      * same relationship name.
94      *
95      * @param $links
96      * @return bool
97      */
98     protected function getMostAppropriateLinkedDefinition($links)
99     {
100         //First priority is to find a link name that matches the relationship name
101         foreach($links as $link)
102         {
103             if( isset($link['name']) && $link['name'] == $this->name )
104             {
105                 return $link;
106             }
107         }
108         //Next would be a relationship that has a side defined
109         foreach($links as $link)
110         {
111             if( isset($link['id_name']))
112             {
113                 return $link;
114             }
115         }
116         //Unable to find an appropriate link, guess and use the first one
117         $GLOBALS['log']->error("Unable to determine best appropriate link for relationship {$this->name}");
118         return $links[0];
119     }
120     /**
121      * @param  $lhs SugarBean left side bean to add to the relationship.
122      * @param  $rhs SugarBean right side bean to add to the relationship.
123      * @param  $additionalFields key=>value pairs of fields to save on the relationship
124      * @return boolean true if successful
125      */
126     public function add($lhs, $rhs, $additionalFields = array())
127     {
128         $lhsLinkName = $this->lhsLink;
129         $rhsLinkName = $this->rhsLink;
130
131         if (empty($lhs->$lhsLinkName) && !$lhs->load_relationship($lhsLinkName))
132         {
133             $lhsClass = get_class($lhs);
134             $GLOBALS['log']->fatal("could not load LHS $lhsLinkName in $lhsClass");
135             return false;
136         }
137         if (empty($rhs->$rhsLinkName) && !$rhs->load_relationship($rhsLinkName))
138         {
139             $rhsClass = get_class($rhs);
140             $GLOBALS['log']->fatal("could not load RHS $rhsLinkName in $rhsClass");
141             return false;
142         }
143
144         //Many to many has no additional logic, so just add a new row to the table and notify the beans.
145         $dataToInsert = $this->getRowToInsert($lhs, $rhs, $additionalFields);
146
147         $this->addRow($dataToInsert);
148
149         if ($this->self_referencing)
150             $this->addSelfReferencing($lhs, $rhs, $additionalFields);
151
152             $lhs->$lhsLinkName->addBean($rhs);
153             $rhs->$rhsLinkName->addBean($lhs);
154
155             $this->callAfterAdd($lhs, $rhs, $lhsLinkName);
156             $this->callAfterAdd($rhs, $lhs, $rhsLinkName);
157     }
158
159     protected function getRowToInsert($lhs, $rhs, $additionalFields = array())
160     {
161         $row = array(
162             "id" => create_guid(),
163             $this->def['join_key_lhs'] => $lhs->id,
164             $this->def['join_key_rhs'] => $rhs->id,
165             'date_modified' => TimeDate::getInstance()->nowDb(),
166             'deleted' => 0,
167         );
168
169
170         if (!empty($this->def['relationship_role_column']) && !empty($this->def['relationship_role_column_value']) && !$this->ignore_role_filter )
171         {
172             $row[$this->relationship_role_column] = $this->relationship_role_column_value;
173         }
174
175         if (!empty($this->def['fields']))
176         {
177             foreach($this->def['fields'] as $fieldDef)
178             {
179                 if (!empty($fieldDef['name']) && !isset($row[$fieldDef['name']]) && !empty($fieldDef['default']))
180                 {
181                     $row[$fieldDef['name']] = $fieldDef['default'];
182                 }
183             }
184         }
185         if (!empty($additionalFields))
186         {
187             $row = array_merge($row, $additionalFields);
188         }
189
190         return $row;
191     }
192
193     /**
194      * Adds the reversed version of this relationship to the table so that it can be accessed from either side equally
195      * @param $lhs
196      * @param $rhs
197      * @param array $additionalFields
198      * @return void
199      */
200     protected function addSelfReferencing($lhs, $rhs, $additionalFields = array())
201     {
202         if ($rhs->id != $lhs->id)
203         {
204             $dataToInsert = $this->getRowToInsert($rhs, $lhs, $additionalFields);
205             $this->addRow($dataToInsert);
206         }
207     }
208
209     public function remove($lhs, $rhs)
210     {
211         if(!($lhs instanceof SugarBean) || !($rhs instanceof SugarBean)) {
212             $GLOBALS['log']->fatal("LHS and RHS must be beans");
213             return false;
214         }
215         $lhsLinkName = $this->lhsLink;
216         $rhsLinkName = $this->rhsLink;
217
218         if (!($lhs instanceof SugarBean)) {
219             $GLOBALS['log']->fatal("LHS is not a SugarBean object");
220             return false;
221         }
222         if (!($rhs instanceof SugarBean)) {
223             $GLOBALS['log']->fatal("RHS is not a SugarBean object");
224             return false;
225         }
226         if (empty($lhs->$lhsLinkName) && !$lhs->load_relationship($lhsLinkName))
227         {
228             $GLOBALS['log']->fatal("could not load LHS $lhsLinkName");
229             return false;
230         }
231         if (empty($rhs->$rhsLinkName) && !$rhs->load_relationship($rhsLinkName))
232         {
233             $GLOBALS['log']->fatal("could not load RHS $rhsLinkName");
234             return false;
235         }
236
237         $dataToRemove = array(
238             $this->def['join_key_lhs'] => $lhs->id,
239             $this->def['join_key_rhs'] => $rhs->id
240         );
241
242         $this->removeRow($dataToRemove);
243
244         if ($this->self_referencing)
245             $this->removeSelfReferencing($lhs, $rhs);
246
247         if (empty($_SESSION['disable_workflow']) || $_SESSION['disable_workflow'] != "Yes")
248         {
249             if ($lhs->$lhsLinkName instanceof Link2)
250             {
251                 $lhs->$lhsLinkName->load();
252                 $this->callAfterDelete($lhs, $rhs, $lhsLinkName);
253             }
254
255             if ($rhs->$rhsLinkName instanceof Link2)
256             {
257                 $rhs->$rhsLinkName->load();
258                 $this->callAfterDelete($rhs, $lhs, $rhsLinkName);
259             }
260         }
261     }
262
263     /**
264      * Removes the reversed version of this relationship
265      * @param $lhs
266      * @param $rhs
267      * @param array $additionalFields
268      * @return void
269      */
270     protected function removeSelfReferencing($lhs, $rhs, $additionalFields = array())
271     {
272         if ($rhs->id != $lhs->id)
273         {
274             $dataToRemove = array(
275                 $this->def['join_key_lhs'] => $rhs->id,
276                 $this->def['join_key_rhs'] => $lhs->id
277             );
278             $this->removeRow($dataToRemove);
279         }
280     }
281
282     /**
283      * @param  $link Link2 loads the relationship for this link.
284      * @return void
285      */
286     public function load($link)
287     {
288         $db = DBManagerFactory::getInstance();
289         $query = $this->getQuery($link);
290         $result = $db->query($query);
291         $rows = Array();
292         $idField = $link->getSide() == REL_LHS ? $this->def['join_key_rhs'] : $this->def['join_key_lhs'];
293         while ($row = $db->fetchByAssoc($result))
294         {
295             if (empty($row['id']) && empty($row[$idField]))
296                 continue;
297             $id = empty($row['id']) ? $row[$idField] : $row['id'];
298             $rows[$id] = $row;
299         }
300         return array("rows" => $rows);
301     }
302
303     public function getQuery($link, $params = array())
304     {
305         if ($link->getSide() == REL_LHS) {
306             $knownKey = $this->def['join_key_lhs'];
307             $targetKey = $this->def['join_key_rhs'];
308         }
309         else
310         {
311             $knownKey = $this->def['join_key_rhs'];
312             $targetKey = $this->def['join_key_lhs'];
313         }
314         $rel_table = $this->getRelationshipTable();
315
316         $where = "$rel_table.$knownKey = '{$link->getFocus()->id}'" . $this->getRoleWhere();
317
318         if (empty($params['return_as_array'])) {
319             return "SELECT $targetKey id FROM $rel_table WHERE $where AND deleted=0";
320         }
321         else
322         {
323             return array(
324                 'select' => "SELECT $targetKey id",
325                 'from' => "FROM $rel_table",
326                 'where' => "WHERE $where AND $rel_table.deleted=0",
327             );
328         }
329     }
330
331     public function getJoin($link, $params = array(), $return_array = false)
332     {
333         $linkIsLHS = $link->getSide() == REL_LHS;
334         if ($linkIsLHS) {
335             $startingTable = (empty($params['left_join_table_alias']) ? $link->getFocus()->table_name : $params['left_join_table_alias']);
336         } else {
337             $startingTable = (empty($params['right_join_table_alias']) ? $link->getFocus()->table_name : $params['right_join_table_alias']);
338         }
339
340         $startingKey = $linkIsLHS ? $this->def['lhs_key'] : $this->def['rhs_key'];
341         $startingJoinKey = $linkIsLHS ? $this->def['join_key_lhs'] : $this->def['join_key_rhs'];
342         $joinTable = $this->getRelationshipTable();
343         $joinTableWithAlias = $joinTable;
344         $joinKey = $linkIsLHS ? $this->def['join_key_rhs'] : $this->def['join_key_lhs'];
345         $targetTable = $linkIsLHS ? $this->def['rhs_table'] : $this->def['lhs_table'];
346         $targetTableWithAlias = $targetTable;
347         $targetKey = $linkIsLHS ? $this->def['rhs_key'] : $this->def['lhs_key'];
348         $join_type= isset($params['join_type']) ? $params['join_type'] : ' INNER JOIN ';
349
350         $join = '';
351
352         //Set up any table aliases required
353         if (!empty($params['join_table_link_alias']))
354         {
355             $joinTableWithAlias = $joinTable . " ". $params['join_table_link_alias'];
356             $joinTable = $params['join_table_link_alias'];
357         }
358         if ( ! empty($params['join_table_alias']))
359         {
360             $targetTableWithAlias = $targetTable . " ". $params['join_table_alias'];
361             $targetTable = $params['join_table_alias'];
362         }
363
364         $join1 = "$startingTable.$startingKey=$joinTable.$startingJoinKey";
365         $join2 = "$targetTable.$targetKey=$joinTable.$joinKey";
366         $where = "";
367
368
369         //First join the relationship table
370         $join .= "$join_type $joinTableWithAlias ON $join1 AND $joinTable.deleted=0\n"
371         //Next add any role filters
372                . $this->getRoleWhere($joinTable) . "\n"
373         //Then finally join the related module's table
374                . "$join_type $targetTableWithAlias ON $join2 AND $targetTable.deleted=0\n";
375
376         if($return_array){
377             return array(
378                 'join' => $join,
379                 'type' => $this->type,
380                 'rel_key' => $joinKey,
381                 'join_tables' => array($joinTable, $targetTable),
382                 'where' => $where,
383                 'select' => "$targetTable.id",
384             );
385         }
386         return $join . $where;
387     }
388
389     /**
390      * Similar to getQuery or Get join, except this time we are starting from the related table and
391      * searching for items with id's matching the $link->focus->id
392      * @param  $link
393      * @param array $params
394      * @param bool $return_array
395      * @return String|Array
396      */
397     public function getSubpanelQuery($link, $params = array(), $return_array = false)
398     {
399         $targetIsLHS = $link->getSide() == REL_RHS;
400         $startingTable = $targetIsLHS ? $this->def['lhs_table'] : $this->def['rhs_table'];;
401         $startingKey = $targetIsLHS ? $this->def['lhs_key'] : $this->def['rhs_key'];
402         $startingJoinKey = $targetIsLHS ? $this->def['join_key_lhs'] : $this->def['join_key_rhs'];
403         $joinTable = $this->getRelationshipTable();
404         $joinTableWithAlias = $joinTable;
405         $joinKey = $targetIsLHS ? $this->def['join_key_rhs'] : $this->def['join_key_lhs'];
406         $targetKey = $targetIsLHS ? $this->def['rhs_key'] : $this->def['lhs_key'];
407         $join_type= isset($params['join_type']) ? $params['join_type'] : ' INNER JOIN ';
408
409         $query = '';
410
411         //Set up any table aliases required
412         if (!empty($params['join_table_link_alias']))
413         {
414             $joinTableWithAlias = $joinTable . " ". $params['join_table_link_alias'];
415             $joinTable = $params['join_table_link_alias'];
416         }
417
418         $where = "$startingTable.$startingKey=$joinTable.$startingJoinKey AND $joinTable.$joinKey='{$link->getFocus()->$targetKey}'";
419
420         //Check if we should ignore the role fileter;
421         $ignoreRole = !empty($params['ignore_role']);
422
423         //First join the relationship table
424         $query .= "$join_type $joinTableWithAlias ON $where AND $joinTable.deleted=0\n"
425         //Next add any role filters
426                . $this->getRoleWhere($joinTable, $ignoreRole) . "\n";
427
428         if (!empty($params['return_as_array'])) {
429             $return_array = true;
430         }
431         if($return_array){
432             return array(
433                 'join' => $query,
434                 'type' => $this->type,
435                 'rel_key' => $joinKey,
436                 'join_tables' => array($joinTable),
437                 'where' => "",
438                 'select' => " ",
439             );
440         }
441         return $query;
442
443     }
444
445     protected function getRoleFilterForJoin()
446     {
447         $ret = "";
448         if (!empty($this->relationship_role_column) && !$this->ignore_role_filter)
449         {
450             $ret .= " AND ".$this->getRelationshipTable().'.'.$this->relationship_role_column;
451             //role column value.
452             if (empty($this->relationship_role_column_value))
453             {
454                 $ret.=' IS NULL';
455             } else {
456                 $ret.= "='".$this->relationship_role_column_value."'";
457             }
458             $ret.= "\n";
459         }
460         return $ret;
461     }
462
463     /**
464      * @param  $lhs
465      * @param  $rhs
466      * @return bool
467      */
468     public function relationship_exists($lhs, $rhs)
469     {
470         $query = "SELECT * FROM {$this->getRelationshipTable()} WHERE {$this->join_key_lhs} = {$lhs->id} AND {$this->join_key_rhs} = {$rhs->id}";
471
472         //Roles can allow for multiple links between two records with different roles
473         $query .= $this->getRoleWhere() . " and deleted = 0";
474
475         $result = DBManagerFactory::getInstance()->query($query);
476         $row = $this->_db->fetchByAssoc($result);
477
478         if ($row == null) {
479             return false;
480         }
481         else {
482             return $row['id'];
483         }
484     }
485
486     /**
487      * @return Array - set of fields that uniquely identify an entry in this relationship
488      */
489     protected function getAlternateKeyFields()
490     {
491         $fields = array($this->join_key_lhs, $this->join_key_rhs);
492
493         //Roles can allow for multiple links between two records with different roles
494         if (!empty($this->def['relationship_role_column']) && !$this->ignore_role_filter)
495         {
496             $fields[] = $this->relationship_role_column;
497         }
498
499         return $fields;
500     }
501
502     public function getRelationshipTable()
503     {
504         if (!empty($this->def['table']))
505             return $this->def['table'];
506         else if(!empty($this->def['join_table']))
507             return $this->def['join_table'];
508
509         return false;
510     }
511
512     public function getFields()
513     {
514         if (!empty($this->def['fields']))
515             return $this->def['fields'];
516         $fields = array(
517             "id" => array('name' => 'id'),
518             'date_modified' => array('name' => 'date_modified'),
519             'modified_user_id' => array('name' => 'modified_user_id'),
520             'created_by' => array('name' => 'created_by'),
521             $this->def['join_key_lhs'] => array('name' => $this->def['join_key_lhs']),
522             $this->def['join_key_rhs'] => array('name' => $this->def['join_key_rhs'])
523         );
524         if (!empty($this->def['relationship_role_column']))
525         {
526             $fields[$this->def['relationship_role_column']] = array("name" => $this->def['relationship_role_column']);
527         }
528         $fields['deleted'] = array('name' => 'deleted');
529
530         return $fields;
531     }
532
533 }