2009-11-22 06:29:24 +01:00
|
|
|
<?php
|
|
|
|
|
2016-06-15 06:03:16 +02:00
|
|
|
namespace SilverStripe\ORM;
|
|
|
|
|
|
|
|
use Exception;
|
2015-02-13 05:35:39 +01:00
|
|
|
|
2009-11-22 06:29:24 +01:00
|
|
|
/**
|
|
|
|
* A DataList that represents a relation.
|
2013-05-20 12:18:07 +02:00
|
|
|
*
|
2009-11-22 06:29:24 +01:00
|
|
|
* Adds the notion of a foreign ID that can be optionally set.
|
|
|
|
*/
|
2016-11-29 00:31:16 +01:00
|
|
|
abstract class RelationList extends DataList implements Relation
|
|
|
|
{
|
2012-03-06 16:34:51 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* Any number of foreign keys to apply to this list
|
|
|
|
*
|
|
|
|
* @return string|array|null
|
|
|
|
*/
|
|
|
|
public function getForeignID()
|
|
|
|
{
|
|
|
|
return $this->dataQuery->getQueryParam('Foreign.ID');
|
|
|
|
}
|
2012-12-12 05:22:45 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
public function getQueryParams()
|
|
|
|
{
|
|
|
|
$params = parent::getQueryParams();
|
2016-02-25 05:32:41 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
// Remove `Foreign.` query parameters for created objects,
|
|
|
|
// as this would interfere with relations on those objects.
|
|
|
|
foreach (array_keys($params) as $key) {
|
|
|
|
if (stripos($key, 'Foreign.') === 0) {
|
|
|
|
unset($params[$key]);
|
|
|
|
}
|
|
|
|
}
|
2016-02-25 05:32:41 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
return $params;
|
|
|
|
}
|
2016-02-25 05:32:41 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* Returns a copy of this list with the ManyMany relationship linked to
|
|
|
|
* the given foreign ID.
|
|
|
|
*
|
|
|
|
* @param int|array $id An ID or an array of IDs.
|
|
|
|
*
|
|
|
|
* @return static
|
|
|
|
*/
|
|
|
|
public function forForeignID($id)
|
|
|
|
{
|
|
|
|
// Turn a 1-element array into a simple value
|
|
|
|
if (is_array($id) && sizeof($id) == 1) {
|
|
|
|
$id = reset($id);
|
|
|
|
}
|
2012-12-12 05:22:45 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
// Calculate the new filter
|
|
|
|
$filter = $this->foreignIDFilter($id);
|
2012-12-12 05:22:45 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
$list = $this->alterDataQuery(function (DataQuery $query) use ($id, $filter) {
|
|
|
|
// Check if there is an existing filter, remove if there is
|
|
|
|
$currentFilter = $query->getQueryParam('Foreign.Filter');
|
|
|
|
if ($currentFilter) {
|
|
|
|
try {
|
|
|
|
$query->removeFilterOn($currentFilter);
|
|
|
|
} catch (Exception $e) {
|
2017-11-09 05:08:31 +01:00
|
|
|
/* NOP */
|
2016-11-29 00:31:16 +01:00
|
|
|
}
|
|
|
|
}
|
2012-12-12 05:22:45 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
// Add the new filter
|
|
|
|
$query->setQueryParam('Foreign.ID', $id);
|
|
|
|
$query->setQueryParam('Foreign.Filter', $filter);
|
|
|
|
$query->where($filter);
|
|
|
|
});
|
2012-12-12 05:22:45 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
return $list;
|
|
|
|
}
|
2012-12-12 05:22:45 +01:00
|
|
|
|
2016-11-29 00:31:16 +01:00
|
|
|
/**
|
|
|
|
* Returns a where clause that filters the members of this relationship to
|
|
|
|
* just the related items.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @param array|integer $id (optional) An ID or an array of IDs - if not provided, will use the current ids as
|
|
|
|
* per getForeignID
|
|
|
|
* @return array Condition In array(SQL => parameters format)
|
|
|
|
*/
|
|
|
|
abstract protected function foreignIDFilter($id = null);
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|