Croute
Convention based routing for PHP based on Symfony components.
Croute is great because:
- You don't need to maintain a routing table
- Promotes consistent code organization
- Allows for customization through annotations and events
Install via Composer
Via the command line:
composer.phar require thewunder/croute ~1.0
Or add the following to the require section your composer.json:
"thewunder/croute": "~1.0"
Basics
Your index.php should look something like this:
$router = Router::create($eventDispatcher, ['Your\\Controller\\Namespace'], [$dependency1, $dependency2]);
$router->route($request);
Your controllers should look something like this:
namespace Your\Controller\Namespace
class IndexController extends Croute\Controller
{
public function __construct($dependency1, $dependency2)
{
//...
}
/**
* Will be available at http://yourdomain/
* and require the "required" (body or querystring) request parameter
*/
public function indexAction($required, $optional = null)
{
echo 'Crouter Controller'; //you can echo or return a symfony Response
}
/**
* Available at http://yourdomain/test
*/
public function testAction()
{
return new Response('Test Action');
}
}
The name of the controller determines which url it appears as:
- http://yourdomain/my/ -> Your\Controller\Namespace\MyController::indexAction()
- http://yourdomain/my/action -> Your\Controller\Namespace\MyController::actionAction()
It supports nested namespaces so that:
- http://yourdomain/level1/level2/save -> Your\Controller\Namespace\Level1\Level2\IndexController::saveAction()
Annotations
Croute optionally supports controller and action annotations through the excellent minime/annotations library. To add an annotation handler simply:
$router->addAnnotationHandler($myhandler);
Two annotations are included (but must be added) out of the box @httpMethod and @secure.
@httpMethod
Restricts the allowed http methods. Returns a 400 response if the method does not match.
/**
* @httpMethod POST
*/
public function saveAction()
@secure
Requires a secure connection. If the connection is not https send a 301 redirect to the same url with the https protocol.
/**
* @secure
*/
class IndexController extends Controller
{
Events
Symfony events are dispatched for every step in the routing process. A total of 12 events are dispatched in a successful request:
- router.request
- router.controller_loaded
- router.controller_loaded.{ControllerName}
- router.before_action
- router.before_action.{ControllerName}
- router.before_action.{ControllerName}.{actionName}
- router.after_action
- router.after_action.{ControllerName}
- router.after_action.{ControllerName}.{actionName}
- router.before_response_sent
- router.response_sent
- router.response_sent.{ControllerName}
- router.response_sent.{ControllerName}.{actionName}
The {ControllerName} will be sans 'Controller' and {actionName} sans 'Action' i.e IndexController::indexAction -> router.before_action.Index.index.
At any time before the response is sent, in an event listener you can set a response on the event to bypass the action and send instead.
public function myListener(ControllerLoadedEvent $event)
{
$event->setResponse(new Response('PermissionDenied', 403));
}
Error Handling
Proper error handling is not really something that I can do for you. It's up to you to determine how to do logging, how and when to render a pretty error page. To handle errors, implement the EventHandlerInterface and set your error handler on the router. Your class will be called when common routing events occur (i.e. 404 errors) and when there is an exception during the routing process.
Contributing
Please see CONTRIBUTING for details.