2017-08-30 01:06:07 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\Subsites\State;
|
|
|
|
|
|
|
|
use SilverStripe\Core\Injector\Injectable;
|
|
|
|
use SilverStripe\Core\Injector\Injector;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SubsiteState provides static access to the current state for subsite related data during a request
|
|
|
|
*/
|
|
|
|
class SubsiteState
|
|
|
|
{
|
|
|
|
use Injectable;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var int|null
|
|
|
|
*/
|
|
|
|
protected $subsiteId;
|
|
|
|
|
2017-09-05 03:48:28 +02:00
|
|
|
|
2017-08-30 05:29:13 +02:00
|
|
|
/**
|
2017-09-05 03:48:28 +02:00
|
|
|
* @var int|null
|
2017-08-30 05:29:13 +02:00
|
|
|
*/
|
2017-09-05 03:48:28 +02:00
|
|
|
protected $originalSubsiteId;
|
2017-08-30 05:29:13 +02:00
|
|
|
|
2017-09-04 01:45:21 +02:00
|
|
|
/**
|
|
|
|
* @var bool
|
|
|
|
*/
|
2017-09-05 03:48:28 +02:00
|
|
|
protected $useSessions;
|
2017-09-04 01:45:21 +02:00
|
|
|
|
2017-08-30 01:06:07 +02:00
|
|
|
/**
|
|
|
|
* Get the current subsite ID
|
|
|
|
*
|
|
|
|
* @return int|null
|
|
|
|
*/
|
|
|
|
public function getSubsiteId()
|
|
|
|
{
|
|
|
|
return $this->subsiteId;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-09-05 03:48:28 +02:00
|
|
|
* Set the current subsite ID, and track the first subsite ID set as the "original". This is used to check
|
|
|
|
* whether the ID has been changed through a request.
|
2017-08-30 01:06:07 +02:00
|
|
|
*
|
|
|
|
* @param int $id
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setSubsiteId($id)
|
|
|
|
{
|
2017-09-05 03:48:28 +02:00
|
|
|
if (is_null($this->originalSubsiteId)) {
|
|
|
|
$this->originalSubsiteId = (int) $id;
|
|
|
|
}
|
|
|
|
|
2017-08-30 01:06:07 +02:00
|
|
|
$this->subsiteId = (int) $id;
|
|
|
|
|
2017-08-30 05:29:13 +02:00
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get whether to use sessions for storing the subsite ID
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getUseSessions()
|
|
|
|
{
|
|
|
|
return $this->useSessions;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set whether to use sessions for storing the subsite ID
|
|
|
|
*
|
|
|
|
* @param bool $useSessions
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setUseSessions($useSessions)
|
|
|
|
{
|
|
|
|
$this->useSessions = $useSessions;
|
2017-09-04 01:45:21 +02:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2017-09-05 03:48:28 +02:00
|
|
|
/**
|
|
|
|
* Get whether the subsite ID has been changed during a request, based on the original and current IDs
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function getSubsiteIdWasChanged()
|
2017-09-04 01:45:21 +02:00
|
|
|
{
|
2017-09-05 03:48:28 +02:00
|
|
|
return $this->originalSubsiteId !== $this->getSubsiteId();
|
2017-08-30 01:06:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform a given action within the context of a new, isolated state. Modifications are temporary
|
|
|
|
* and the existing state will be restored afterwards.
|
|
|
|
*
|
|
|
|
* @param callable $callback Callback to run. Will be passed the nested state as a parameter
|
|
|
|
* @return mixed Result of callback
|
|
|
|
*/
|
|
|
|
public function withState(callable $callback)
|
|
|
|
{
|
|
|
|
$newState = clone $this;
|
|
|
|
try {
|
|
|
|
Injector::inst()->registerService($newState);
|
|
|
|
return $callback($newState);
|
|
|
|
} finally {
|
|
|
|
Injector::inst()->registerService($this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|