HummingBirdAnimeClient/src/Aviat/AnimeClient/Config.php

103 lines
1.7 KiB
PHP
Raw Normal View History

<?php
/**
2015-11-16 11:40:01 -05:00
* Hummingbird Anime Client
*
* An API client for Hummingbird to manage anime and manga watch lists
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren
* @copyright Copyright (c) 2015
* @link https://github.com/timw4mail/HummingBirdAnimeClient
* @license MIT
*/
2015-09-15 13:19:29 -04:00
namespace Aviat\AnimeClient;
2015-06-26 16:39:10 -04:00
use InvalidArgumentException;
/**
* Wrapper for configuration values
*/
class Config {
2015-10-15 09:25:30 -04:00
use \Aviat\Ion\ArrayWrapper;
/**
* Config object
*
2015-11-04 16:53:22 -05:00
* @var \Aviat\Ion\Type\ArrayType
*/
2015-10-09 14:34:55 -04:00
protected $map = [];
/**
* Constructor
*
* @param array $config_array
*/
2015-10-09 14:34:55 -04:00
public function __construct(array $config_array = [])
{
$this->map = $this->arr($config_array);
}
/**
2015-10-06 11:38:20 -04:00
* Get a config value
*
2015-10-15 09:25:30 -04:00
* @param array|string $key
* @return mixed
*/
2015-10-06 11:38:20 -04:00
public function get($key)
{
2015-10-15 09:25:30 -04:00
if (is_array($key))
{
return $this->map->get_deep_key($key);
2015-10-15 09:25:30 -04:00
}
return $this->map->get($key);
2015-10-15 09:25:30 -04:00
}
/**
* Remove a config value
*
* @param string|array $key
* @return void
*/
public function delete($key)
{
if (is_array($key))
{
$this->map->set_deep_key($key, NULL);
2015-10-15 09:25:30 -04:00
}
else
{
$pos =& $this->map->get($key);
$pos = NULL;
2015-10-15 09:25:30 -04:00
}
}
2015-10-06 11:38:20 -04:00
/**
* Set a config value
*
* @param integer|string|array $key
2015-10-06 11:38:20 -04:00
* @param mixed $value
* @throws InvalidArgumentException
2015-10-06 11:38:20 -04:00
* @return Config
*/
public function set($key, $value)
{
2015-10-15 09:25:30 -04:00
if (is_array($key))
{
$this->map->set_deep_key($key, $value);
}
2015-10-19 13:26:50 -04:00
else if (is_scalar($key) && ! empty($key))
{
$this->map->set($key, $value);
2015-10-15 09:25:30 -04:00
}
2015-11-05 10:41:46 -05:00
else
{
throw new InvalidArgumentException("Key must be integer, string, or array, and cannot be empty");
}
2015-10-15 09:25:30 -04:00
2015-10-06 11:38:20 -04:00
return $this;
}
}
// End of config.php