weew/router
Composer 安装命令:
composer require weew/router
包简介
Simple router.
README 文档
README
Table of contents
- Installation
- Introduction
- Registering routes
- Route parameters
- Matching routes
- Custom patterns
- Firewalls
- Parameter resolvers
- Rules
- Grouping routes
- Complete example
- Extensions
Installation
composer require weew/router
Introduction
What the router basically does is matching a URL to a list of registered routes and returns you a route upon a successful match. If there was no match,you'll get null. A route can contain any value you want, since it's up to you to create a response based on the route after all. This gives you the flexibility to use the router together with any other existing dependency injection containers or any other components. The router doesn't do anything but matching a URL to a route.
Registering routes
Below you'll see the basic methods for route registration. Route path may
contain some placeholders for expected values, like {id}. If
the placeholder ends with a ?, like here {alias?}, it is
considered optional. As the second argument you may pass anything you
want. You'll have access to that value later, so you can create a
response or similar.
$router = new Router(); $router->get('/', 'home') ->post('login', 'SomeController::handleLogin') ->put('users/{id}', function() {}) ->patch('users/{id}', '') ->update('some/path/{optional?}', '') ->delete('users/{id}/{alias?}', '') ->options('you/wont/need/it', '');
Mostly you are going to use this definition format for your route definitions:
$router = new Router(); $router ->get('/', [SampleController::class, 'getHome']) ->get('about', [SampleController::class, 'getAbout']) ->get('contact', [SampleController::class, 'getContact']);
As you see in this example, you've got to write the SampleController class over and over again. You can avoid this by setting a controller class on the router itself. Doing so, will create a new nested router. Example below does exactly the same as the example above, except you have less boilerplate code.
$router = new Router(); $router ->setController(SampleController::class) ->get('/', 'getHome') ->get('about', 'getAbout') ->get('contact', 'getContact');
Route parameters
Let's say you've defined some routes that expect a parameter to be set in the url, here you'll see how you can access them.
$router = new Router(); $router->get('home/{greeting?}', 'home'); $route = $router->match(HttpRequestMethod::GET, new Url('home/welcome')); echo $route->getParameter('greeting'); // welcome
Matching routes
By now you have registered all of your routes and want to find the one that matches the specified url.
$router = new Router(); $router->get('home/{greeting?}', 'home'); $route = $router->match(HttpRequestMethod::GET, new Url('home/hello-there')); if ( ! $route === null) { echo $route->getAction(); // home echo $route->getParameter('greeting'); // hello-there } else { // no route found, thow a 404? }
Custom patterns
In some situations you wont to be able to specify custom patterns for route parameters. For example, lets say you want your ids to consist of numerical characters only.
$router = new Router(); $router ->addPattern('id', '[0-9]+') ->get('users/{id}', '');
Firewalls
It is very easy to protect routes with custom filters. In general, if a single filter fails (returns false or throws an exception), no further filters will be called. Same goes the other way around. If a filter explicitly says that everything is ok (returns true), no further filters will be called.
$router = new Router(); $router->addFilter('auth', function(IRoute $route) { // returning false indicates that filter has failed, no other filters will be called return false; }); $router->addFilter('guest', function(IRoute $route) { // explicitly returning true indicates that this route is ok, no other filters will be called return true; }); $router->enableFilter('auth'); $router->enableFilter('guest'); // or $router->enableFilter(['auth', 'guest']);
A filter has to return a boolean value to indicate whether the affected routes are good to go or rather should be ignored. Filter work best with groups, see below.
Sometimes you might want to throw an exception that would hold the reason why a filter did not pass. If you simply throw a regular exception, this would kill the program flow, and even if you catch this exception somewhere, it would kill the whole routing process. Even though a particular route did not match, because a filter failed, there might be another one that would fit. After a regular exception was thrown, there is no way another route might match. To work around this you might simply wrap you exception in the FilterException. This would ensure that the routing process finishes as supposed to and gives a chance for another route to match. If no route was found after all, you original exception will be thrown.
$router = new Router(); $router->addFilter('auth', function(IRoute $route) { throw new FilterException( new UnauthorizedException() ); });
Now, failure of a filter will not break the routing process. If a route gets matched after all, there will be no exception thrown. But if there was no other route that could take it's place (be matched instead), the UnauthorizedException will be thrown.
Parameter resolvers
Often you might want to process a route parameter and replace it with another one. For example when you're using models. This route /users/{id} would always hold the id of the requested user. Wouldn't it be cool if it would hold the user model instead?
$router = new Router(); $router->addResolver('user', function($parameter) { return new User(); // for the sake of the example lets just return a new model }); $router->get('users/{user}', function(User $user) { // work with the user model });
User's id has been magically resolved to it's model. Now you can use it in your route handlers.
Rules
You might also want to specify additional routing restrictions based on the current url. For example, limiting your routes to a subdomain or protocol.
$router = new Router(); $router ->restrictSubdomain('api') ->get('users/{id}', '');
There are many other restrictions that you might find useful.
$router = new Router(); $router->restrictProtocol('https') ->restrictDomain(['domain1', 'domain2']) ->restrictTLD(['com', 'net']) ->restrictSubdomain('api') ->restrictHost(['domain1.com', 'domain2.net'])
Grouping routes
Sometimes you have an obvious boundary between your routes.
Lets say you want your api routes to be available from the
api subdomain and over https only. All the other routes should
remain as is.
$router = new Router(); $router->get('/', 'home'); $router->group(function(IRouter $router) { $router->restrictProtocol('https') ->restrictSubdomain('api') ->get('users/{id}', ''); }); $router->get('about', 'about');
Complete example
A complete example of how you might use the router out of the box. The router itself is very flexible and at the end it comes down to your preference on how you will use it. Basically all it does is returning a route. After that it's up to you how you want to handle it. You might dynamically resolve the controller, or event combine it with a dependency injection container.
$router = new Router(); $router->get('/', 'home'); $router->get('about', 'about'); $router->post('login', 'login'); $router->addFilter('auth', function(IRoute $route) { return fasle; // not logged in }); $router->addResolver('user', function($id) { return new User($id); }); $router->group(function(IRouter $router) { $router->setPrefix('api/v1'); $router->restrictProtocol('https'); $router->restrictSubdomain('api'); $router->enableFilter('auth'); $router->get('users/{user}/{alias?}', function(IRoute $route) { $response = new JsonResponse(HttpRequestMethod::GET, [ 'id' => $route->getParameter('user')->id, 'alias' => $route->getParameter('alias', 'no alias') ]); $response->send(); }); }); $router->group(function(IRouter $router) { $router->setPrefix('api/v2'); $router->addPattern('id', '[a-zA-Z]+'); $router->get('users/{user}/{alias?}', function(IRoute $route) { $response = new JsonResponse(HttpRequestMethod::GET, [ 'id' => $route->getParameter('user')->id, 'alias' => $route->getParameter('alias', 'no alias') ]); $response->send(); }); }); // recommended way to work with the request $request = new CurrentRequest(); $route = $router->match($request->getMethod(), $request->getUrl()); // create a response based on the route if ($route instanceof IRoute) { $abstract = $route->getAction(); if (is_callable($abstract)) { $abstract($route); } else { echo $abstract; } } else { echo '404'; }
Extensions
There are several extensions available:
weew/router 适用场景与选型建议
weew/router 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 283 次下载、GitHub Stars 达 1, 最近一次更新时间为 2016 年 07 月 16 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 weew/router 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 weew/router 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 283
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 5
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-07-16