* @copyright 2015 - 2017 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @version 4.0 * @link https://github.com/timw4mail/HummingBirdAnimeClient */ namespace Aviat\AnimeClient\Command; use Aura\Session\SessionFactory; use Aviat\AnimeClient\{ AnimeClient, Model, Util }; use Aviat\AnimeClient\Auth\HummingbirdAuth; use Aviat\Banker\Pool; use Aviat\Ion\Config; use Aviat\Ion\Di\Container; use ConsoleKit\Command; use ConsoleKit\Widgets\Box; use Monolog\Handler\RotatingFileHandler; use Monolog\Logger; /** * Base class for console command setup */ class BaseCommand extends Command { use \Aviat\Ion\Di\ContainerAware; /** * Echo text in a box * * @param string $message * @return void */ protected function echoBox($message) { echo "\n"; $box = new Box($this->getConsole(), $message); $box->write(); echo "\n"; } /** * Setup the Di container * * @return Container */ protected function setupContainer() { $APP_DIR = realpath(__DIR__ . '/../../app'); $CONF_DIR = realpath("{$APP_DIR}/config/"); require_once $CONF_DIR . '/base_config.php'; // $base_config $config = AnimeClient::loadToml($CONF_DIR); $config_array = array_merge($base_config, $config); $di = function ($config_array) use ($APP_DIR) { $container = new Container(); $app_logger = new Logger('animeclient'); $app_logger->pushHandler(new RotatingFileHandler("{$APP_DIR}/logs/app.log", Logger::NOTICE)); $container->setLogger($app_logger, 'default'); // Create Config Object $container->set('config', function() use ($config_array) { return new Config($config_array); }); // Create Cache Object $container->set('cache', function($container) { $logger = $container->getLogger(); $config = $container->get('config')->get('cache'); return new Pool($config, $logger); }); // Create session Object $container->set('session', function() { return (new SessionFactory())->newInstance($_COOKIE); }); // Models $container->set('api-model', function($container) { return new Model\API($container); }); $container->set('anime-model', function($container) { return new Model\Anime($container); }); $container->set('manga-model', function($container) { return new Model\Manga($container); }); $container->set('auth', function($container) { return new HummingbirdAuth($container); }); $container->set('util', function($container) { return new Util($container); }); return $container; }; return $di($config_array); } }