mirror of
https://github.com/silverstripe/silverstripe-subsites
synced 2024-10-22 11:05:55 +02:00
78 lines
2.1 KiB
PHP
78 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Subsites\Extensions;
|
|
|
|
|
|
use SilverStripe\Forms\FieldList;
|
|
use SilverStripe\Forms\HiddenField;
|
|
use SilverStripe\ORM\DataExtension;
|
|
use SilverStripe\ORM\DataQuery;
|
|
use SilverStripe\ORM\Queries\SQLSelect;
|
|
use SilverStripe\SiteConfig\SiteConfig;
|
|
use SilverStripe\Subsites\Model\Subsite;
|
|
|
|
|
|
/**
|
|
* Extension for the SiteConfig object to add subsites support
|
|
*/
|
|
class SiteConfigSubsites extends DataExtension
|
|
{
|
|
|
|
private static $has_one = [
|
|
'Subsite' => Subsite::class, // The subsite that this page belongs to
|
|
];
|
|
|
|
/**
|
|
* Update any requests to limit the results to the current site
|
|
*/
|
|
public function augmentSQL(SQLSelect $query, DataQuery $dataQuery = null)
|
|
{
|
|
if (Subsite::$disable_subsite_filter) {
|
|
return;
|
|
}
|
|
|
|
// If you're querying by ID, ignore the sub-site - this is a bit ugly...
|
|
if ($query->filtersOnID()) {
|
|
return;
|
|
}
|
|
$regexp = '/^(.*\.)?("|`)?SubsiteID("|`)?\s?=/';
|
|
foreach ($query->getWhereParameterised($parameters) as $predicate) {
|
|
if (preg_match($regexp, $predicate)) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
/*if($context = DataObject::context_obj()) $subsiteID = (int)$context->SubsiteID;
|
|
else */
|
|
$subsiteID = (int)Subsite::currentSubsiteID();
|
|
|
|
$froms = $query->getFrom();
|
|
$froms = array_keys($froms);
|
|
$tableName = array_shift($froms);
|
|
if ($tableName != SiteConfig::class) {
|
|
return;
|
|
}
|
|
$query->addWhere("\"$tableName\".\"SubsiteID\" IN ($subsiteID)");
|
|
}
|
|
|
|
function onBeforeWrite()
|
|
{
|
|
if ((!is_numeric($this->owner->ID) || !$this->owner->ID) && !$this->owner->SubsiteID) {
|
|
$this->owner->SubsiteID = Subsite::currentSubsiteID();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Return a piece of text to keep DataObject cache keys appropriately specific
|
|
*/
|
|
function cacheKeyComponent()
|
|
{
|
|
return 'subsite-' . Subsite::currentSubsiteID();
|
|
}
|
|
|
|
function updateCMSFields(FieldList $fields)
|
|
{
|
|
$fields->push(new HiddenField('SubsiteID', 'SubsiteID', Subsite::currentSubsiteID()));
|
|
}
|
|
}
|