phpOMS/Account/AccountManager.php
2017-12-31 15:35:13 +01:00

138 lines
2.5 KiB
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.1
*
* @package phpOMS\Account
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link http://website.orange-management.de
*/
declare(strict_types = 1);
namespace phpOMS\Account;
use phpOMS\Auth\Auth;
use phpOMS\DataStorage\Session\SessionInterface;
/**
* Account manager class.
*
* The account manager is used to manage multiple accounts.
*
* @package phpOMS\Account
* @license OMS License 1.0
* @link http://website.orange-management.de
* @since 1.0.0
*/
class AccountManager implements \Countable
{
/**
* Accounts.
*
* @var Account[]
* @since 1.0.0
*/
private $accounts = [];
/**
* Session.
*
* @var SessionInterface
* @since 1.0.0
*/
private $session = null;
/**
* Constructor.
*
* @param SessionInterface $session Session
*
* @since 1.0.0
*/
public function __construct(SessionInterface $session)
{
$this->session = $session;
}
/**
* Get account.
*
* @param int $id Account id
*
* @return Account
*
* @since 1.0.0
*/
public function get(int $id = 0) : Account
{
if ($id === 0) {
$account = new Account(Auth::authenticate($this->session));
if (!isset($this->accounts[$account->getId()])) {
$this->accounts[$account->getId()] = $account;
}
return $account;
}
return $this->accounts[$id] ?? new NullAccount();
}
/**
* Add account.
*
* @param Account $account Account
*
* @return bool
*
* @since 1.0.0
*/
public function add(Account $account) : bool
{
if (!isset($this->accounts[$account->getId()])) {
$this->accounts[$account->getId()] = $account;
return true;
}
return false;
}
/**
* Remove account.
*
* @param int $id Account id
*
* @return bool
*
* @since 1.0.0
*/
public function remove(int $id) : bool
{
if (isset($this->accounts[$id])) {
unset($this->accounts[$id]);
return true;
}
return false;
}
/**
* Get accounts count.
*
* @return int
*
* @since 1.0.0
*/
public function count() : int
{
return count($this->accounts);
}
}