icingaweb2/library/Icinga/Web/Session/SessionNamespace.php

212 lines
4.5 KiB
PHP
Raw Normal View History

<?php
// {{{ICINGA_LICENSE_HEADER}}}
// {{{ICINGA_LICENSE_HEADER}}}
2014-03-25 11:12:55 +01:00
namespace Icinga\Web\Session;
use Exception;
use ArrayIterator;
use Icinga\Exception\IcingaException;
use IteratorAggregate;
/**
* Container for session values
*/
class SessionNamespace implements IteratorAggregate
{
/**
* The session this namespace is associated to
*
* @var Session
*/
protected $session;
/**
* The actual values stored in this container
*
* @var array
*/
protected $values = array();
/**
* The names of all values removed from this container
*
* @var array
*/
protected $removed = array();
/**
* Create a new session namespace
*
* @param Session $session The session this namespace is associated to
*/
public function __construct(Session $session = null)
{
$this->session = $session;
}
/**
* Return an iterator for all values in this namespace
*
* @return ArrayIterator
*/
public function getIterator()
{
return new ArrayIterator($this->getAll());
}
/**
* Set a session value by property access
*
* @param string $key The value's name
* @param mixed $value The value
*/
2014-02-21 14:07:32 +01:00
public function __set($key, $value)
{
$this->set($key, $value);
}
/**
* Return a session value by property access
*
* @param string $key The value's name
*
* @return mixed The value
* @throws Exception When the given value-name is not found
*/
2014-02-21 14:07:32 +01:00
public function __get($key)
{
if (!array_key_exists($key, $this->values)) {
throw new IcingaException(
'Cannot access non-existent session value "%s"',
$key
);
}
return $this->get($key);
}
/**
* Return whether the given session value is set
*
* @param string $key The value's name
* @return bool
*/
2014-02-21 14:07:32 +01:00
public function __isset($key)
{
return isset($this->values[$key]);
}
/**
* Unset the given session value
*
* @param string $key The value's name
*/
2014-02-21 14:07:32 +01:00
public function __unset($key)
{
$this->delete($key);
}
/**
* Setter for session values
*
* @param string $key Name of value
* @param mixed $value Value to set
*
* @return self
*/
public function set($key, $value)
{
$this->values[$key] = $value;
if (in_array($key, $this->removed)) {
unset($this->removed[array_search($key, $this->removed)]);
}
return $this;
}
public function setByRef($key, &$value)
{
$this->values[$key] = $value;
if (in_array($key, $this->removed)) {
unset($this->removed[array_search($key, $this->removed)]);
}
return $this;
}
/**
* Getter for session values
*
* @param string $key Name of the value to return
* @param mixed $default Default value to return
*
* @return mixed
*/
public function get($key, $default = null)
{
return isset($this->values[$key]) ? $this->values[$key] : $default;
}
public function & getByRef($key, $default = null)
{
$value = $default;
if (isset($this->values[$key])) {
$value = & $this->values[$key];
}
return $value;
}
/**
* Delete the given value from the session
*
* @param string $key The value's name
*/
public function delete($key)
{
$this->removed[] = $key;
unset($this->values[$key]);
}
/**
* Getter for all session values
*
* @return array
*/
public function getAll()
{
return $this->values;
}
/**
* Put an array into the session
*
* @param array $values Values to set
* @param bool $overwrite Overwrite existing values
*/
public function setAll(array $values, $overwrite = false)
{
foreach ($values as $key => $value) {
if ($this->get($key, $value) !== $value && !$overwrite) {
continue;
}
$this->set($key, $value);
}
}
/**
* Save the session this namespace is associated to
*/
public function write()
{
if (!$this->session) {
throw new IcingaException('Cannot save, session not set');
}
$this->session->write();
}
}