hc/rest-routes 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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:

  1. Defining API routes
  2. 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:
    • name is the name you pass to the route, and
    • httpVerb is the HTTP verb of the request (e.g GET, POST, PUT, etc)
  • Return the data you want to respond with.
  • Throw a RestfulException provided by the RestRoutes plugin 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 我们能提供哪些服务?
定制开发 / 二次开发

基于 hc/rest-routes 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1.53k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 6
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2022-03-01