/** * @return \Micro\Application\Application */ public function registerDefaultServices() { if (!isset($this['request'])) { $this['request'] = function () { return new Http\Request(); }; } if (!isset($this['response'])) { $this['response'] = function () { return new Http\Response\HtmlResponse(); }; } if (!isset($this['event'])) { $this['event'] = function () { return new Event\Manager(); }; } if (!isset($this['exception.handler'])) { $this['exception.handler'] = function ($app) { return $app; }; } if (!isset($this['exception.handler.fallback'])) { $this['exception.handler.fallback'] = function ($app) { return $app; }; } if (!isset($this['acl'])) { $this['acl'] = function ($app) { if ($app->get('config')->get('acl.enabled', 1)) { return new Acl(); } return \null; }; } if (!isset($this['caches'])) { $this['caches'] = function ($app) { $adapters = $app['config']->get('cache.adapters', []); $caches = []; foreach ($adapters as $adapter => $config) { $caches[$adapter] = Cache::factory($config['frontend']['adapter'], $config['backend']['adapter'], $config['frontend']['options'], $config['backend']['options']); } return $caches; }; } if (!isset($this['cache'])) { $this['cache'] = function ($app) { $adapters = $app->get('caches'); $default = (string) $app['config']->get('cache.default'); return isset($adapters[$default]) ? $adapters[$default] : \null; }; } /** * Create router with routes */ if (!isset($this['router'])) { $this['router'] = function ($app) { return new Router($app['request']); }; } /** * Create default db adapter */ if (!isset($this['db'])) { $this['db'] = function ($app) { $default = $app['config']->get('db.default'); $adapters = $app['config']->get('db.adapters', []); if (!isset($adapters[$default])) { return \null; } $db = Database::factory($adapters[$default]['adapter'], $adapters[$default]); TableAbstract::setDefaultAdapter($db); TableAbstract::setDefaultMetadataCache($app['cache']); return $db; }; } /** * Create default translator */ if (!isset($this['translator'])) { $this['translator'] = function ($app) { return new Translator(); }; } /** * Register session config */ $sessionConfig = $this['config']->get('session', []); if (!empty($sessionConfig)) { Session::register($sessionConfig); } CoreLog::register(); CoreException::register(); return $this; }
public function registerCacheBinder() { $config = $this->container->get('config'); $this->container->set('caches', function () use($config) { $adapters = $config->get('cache.adapters', []); $caches = []; foreach ($adapters as $adapter => $adapterConfig) { $caches[$adapter] = Cache::factory($adapterConfig['frontend']['adapter'], $adapterConfig['backend']['adapter'], $adapterConfig['frontend']['options'], $adapterConfig['backend']['options']); } return $caches; }, \false); $this->container->set('cache', function ($container) use($config) { $adapters = $container->get('caches'); $default = (string) $config->get('cache.default'); return isset($adapters[$default]) ? $adapters[$default] : \null; }, \false); }