| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?php
- /**
- * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
- * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- *
- * Licensed under The MIT License
- * For full copyright and license information, please see the LICENSE.txt
- * Redistributions of files must retain the above copyright notice.
- *
- * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
- * @link https://cakephp.org CakePHP(tm) Project
- * @since 3.3.0
- * @license https://opensource.org/licenses/mit-license.php MIT License
- */
- namespace Cake\Http;
- use Cake\Core\ConsoleApplicationInterface;
- use Cake\Core\HttpApplicationInterface;
- use Cake\Routing\DispatcherFactory;
- use Psr\Http\Message\ResponseInterface;
- use Psr\Http\Message\ServerRequestInterface;
- /**
- * Base class for application classes.
- *
- * The application class is responsible for bootstrapping the application,
- * and ensuring that middleware is attached. It is also invoked as the last piece
- * of middleware, and delegates request/response handling to the correct controller.
- */
- abstract class BaseApplication implements ConsoleApplicationInterface, HttpApplicationInterface
- {
- /**
- * @var string Contains the path of the config directory
- */
- protected $configDir;
- /**
- * Constructor
- *
- * @param string $configDir The directory the bootstrap configuration is held in.
- */
- public function __construct($configDir)
- {
- $this->configDir = $configDir;
- }
- /**
- * @param \Cake\Http\MiddlewareQueue $middleware The middleware queue to set in your App Class
- * @return \Cake\Http\MiddlewareQueue
- */
- abstract public function middleware($middleware);
- /**
- * {@inheritDoc}
- */
- public function bootstrap()
- {
- require_once $this->configDir . '/bootstrap.php';
- }
- /**
- * {@inheritDoc}
- *
- * By default this will load `config/routes.php` for ease of use and backwards compatibility.
- *
- * @param \Cake\Routing\RouteBuilder $routes A route builder to add routes into.
- * @return void
- */
- public function routes($routes)
- {
- require $this->configDir . '/routes.php';
- }
- /**
- * Define the console commands for an application.
- *
- * By default all commands in CakePHP, plugins and the application will be
- * loaded using conventions based names.
- *
- * @param \Cake\Console\CommandCollection $commands The CommandCollection to add commands into.
- * @return \Cake\Console\CommandCollection The updated collection.
- */
- public function console($commands)
- {
- return $commands->addMany($commands->autoDiscover());
- }
- /**
- * Invoke the application.
- *
- * - Convert the PSR response into CakePHP equivalents.
- * - Create the controller that will handle this request.
- * - Invoke the controller.
- *
- * @param \Psr\Http\Message\ServerRequestInterface $request The request
- * @param \Psr\Http\Message\ResponseInterface $response The response
- * @param callable $next The next middleware
- * @return \Psr\Http\Message\ResponseInterface
- */
- public function __invoke(ServerRequestInterface $request, ResponseInterface $response, $next)
- {
- return $this->getDispatcher()->dispatch($request, $response);
- }
- /**
- * Get the ActionDispatcher.
- *
- * @return \Cake\Http\ActionDispatcher
- */
- protected function getDispatcher()
- {
- return new ActionDispatcher(null, null, DispatcherFactory::filters());
- }
- }
|