hc/rest-routes
Composer 安装命令:
composer require hc/rest-routes
包简介
Rest API Routes for Wordpress.
README 文档
README
A plugin for custom API routing. Made with love by Howatson+Co.
Usage
There are two parts to using this plugin:
- Defining API routes
- Defining custom controllers for handling response logic
To do either of these, you will need to first access the Rest API Server class instance. This can be achieved either by calling the global scope function HCRR like this:
$server = HCRR();
Or, by accessing the global scope variable assigned:
global $hcrr;
Defining Routes
You can define a route through the registerRoute method attached to the Router class, like so:
$server->router->registerRoute("/test", "\TestController", "index");
The registerRoute method takes three arguments:
- API URI pattern to be matched for this route to be executed. This can be a regex string.
- Name of Controller to instantiate.
- Name of method attached to Controller to execute.
Defining Controllers
When defining Controllers, adhere to the following rules:
- The controller must extend
\HC\RestRoutes\Abstracts\ControllerAbstract - Controller methods should be named
${name}_${httpVerb}, where:nameis the name you pass to the route, andhttpVerbis the HTTP verb of the request (e.gGET,POST,PUT, etc)
Returnthe data you want to respond with.- Throw a
RestfulExceptionprovided by theRestRoutesplugin to handle exceptions.
See example below:
class TestController extends \HC\RestRoutes\Abstracts\ControllerAbstract
{
public function index_get()
{
$posts = get_posts();
// This will send a 200 response to the client side
// with the data payload attached
if (!empty($posts)) {
return $posts;
}
// Otherwise, you can handle exceptions like this
throw new \HC\RestRoutes\Exceptions\NotFoundException("No posts found.");
}
}
Next, we will need to register the controller.
To register the Controller, use the ControllerFactory class register method:
$server->router->controllerFactory->register("\TestController");
Full example
Bringing it all together, an example could look like this:
class TestController extends \HC\RestRoutes\Abstracts\ControllerAbstract
{
public function index_get()
{
$posts = get_posts();
// This will send a 200 response to the client side
// with the data payload attached
if (!empty($posts)) {
return $posts;
}
// Otherwise, you can handle exceptions like this
throw new \HC\RestRoutes\Exceptions\NotFoundException("No posts found.");
}
}
$server = HCRR();
$server->router->controllerFactory->register("\TestController");
$server->router->registerRoute("/test", "\TestController", "index");
Extra
Authorisation
To ensure an endpoint only gives the full payload to a user who is authorised, you can use the validateAdmin and validateEditor methods which are attached to the \HC\RestRoutes\Abstracts\ControllerAbstract class.
Defining API prefix
The default API prefix is /api/hcrr. You can customise this by using the setPrefix method on the \HC\RestRoutes\Router class:
$server->router->setPrefix("/your/custom/prefix");
hc/rest-routes 适用场景与选型建议
hc/rest-routes 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.53k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 03 月 01 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 hc/rest-routes 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hc/rest-routes 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.53k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 6
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2022-03-01