承接 othercode/rest 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

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

othercode/rest

Composer 安装命令:

composer require othercode/rest

包简介

Rest client to make GET, POST, PUT, DELETE, PATCH, etc calls.

README 文档

README

Tests Latest Stable Version License Total Downloads

Rest client to make GET, POST, PUT, DELETE, PATCH, etc.

Installation

To install the package we only have to add the dependency to composer.json file:

{
  "require": {
    "othercode/rest": "*"
  }
}

And run the following command:

composer install

Usage

To use the Rest we only have to instantiate it and configure the params we want. We can establish the configuration accessing to the ->configuration->configure_property, for example to configure the url of the call we only have to set the ->configuration->url parameter like we can see as follows:

$api = new \OtherCode\Rest\Rest();
$api->configuration->url = "https://jsonplaceholder.typicode.com/";

or

$api = new \OtherCode\Rest\Rest(new \OtherCode\Rest\Core\Configuration(array(
    'url' => 'https://jsonplaceholder.typicode.com/',
)));

After this we have to set the type of call and the parameters that we wil use, in this case we are going to perform a GET request to the "posts/1" endpoint:

$response = $api->get("posts/1");

The rest client will throw a ConnectionException if there are any problem related to the connection.

NOTE: These errors are related to the session cURL, here is the complete list

Methods

The available methods to work with are:

get()

Perform a GET request.

Parameters Type Description
$url String Required. The URL to which the request is made
$data Array Optional. Associative array of data parameters

Return: Response object

head()

Perform a HEAD request.

Parameters Type Description
$url String Required. The URL to which the request is made

Return: Response object (no body)

post()

Perform a POST request.

Parameters Type Description
$url String Required. The URL to which the request is made
$data Array Optional. Associative array of data parameters

Return: Response object

delete()

Perform a DELETE request.

Parameters Type Description
$url String Required. The URL to which the request is made
$data Array Optional. Associative array of data parameters

Return: Response object

put()

Perform a PUT request.

Parameters Type Description
$url String Required. The URL to which the request is made
$data Array Optional. Associative array of data parameters

Return: Response object

patch()

Perform a PATCH request.

Parameters Type Description
$url String Required. The URL to which the request is made
$data Array Optional. Associative array of data parameters

Return: Response object

getMetadata()

Return the metadata of the request.

Return: Array

getError()

Return the last known error.

Return: Error object

getPayloads()

Return an array with the Response and Request objects.

Return: Array

setDecoder()

Set a new Decoder.

Parameters Type Description
$name String Required. The unique name of the decoder.
$decoder String Optional. The class name with namespace of the new decoder.

Return: Rest object

setEncoder()

Set a new Encoder.

Parameters Type Description
$name String Required. The unique name of the encoder.
$encoder String Optional. The class name with namespace of the new encoder.

Return: Rest object

setModule()

Set a new Module.

Parameters Type Description
$name String Required. The unique name of the module.
$module String Required. The class name with namespace of the new module.
$hook String Optional. The hook name (after/before) that will trigger the module, 'after' by default.

Return: Rest object

unsetModule()

Unregister a module.

Parameters Type Description
$moduleName String Required. The unique name of the decoder.
$hook String Optional. The hook name (after/before) from where delete the module.

Return: Rest object

addHeader()

Add a new header.

Parameters Type Description
$header String Required. The unique name of the header.
$value String Requires. The value of the header.

Return: Rest object

addHeaders()

Add an array of headers.

Parameters Type Description
$headers String Required. An array of headers.

Return: Rest object

NOTE: We can use the addHeader() and addHeaders() methods with the Rest instance or with the configuration object

$api->addHeader('some_header','some_value');
$api->addHeaders(array('some_header' => 'some_value','other_header' => 'other_value'));

is the same as

$api->configuration->addHeader('some_header','some_value');
$api->configuration->addHeaders(array('some_header' => 'some_value','other_header' => 'other_value'));

removeHeader()

Remove a header offset.

Parameters Type Description
$header String Required. The unique name of the header.

Return: Rest object

removeHeaders()

Remove an array of headers.

Parameters Type Description
$headers String Required. An array of headers to remove.

Return: Rest object

Modules

This package allow you to create modules to perform task before and after the request. To create a new module we only have to use this template:

class CustomModule extends BaseModule
{
    public function run()
    {
        // do something
    }
}

IMPORTANT: Any module MUST extends BaseModule

The only method that is mandatory is ->run(), this method execute your custom code of the module.

Once we have our module we can register it with the ->setModule() method. This method needs three parameters, the first one is the name of the module, the second one is the complete namespace of the module, and the third one is the hook name for our module, it can be "before" and "after" depends on when we want to launch our module.

$api->setModule('module_name','Module\Complete\Namespace','after');

For "before" modules you can use all the properties of the Request object.

  • method
  • url
  • headers
  • body

For "after" modules you can use all the properties of the Response object.

  • code
  • content_type
  • charset
  • body
  • headers
  • error
  • metadata

All modules are executed in the order that we register them into the Rest client, this also affect to Decoders and Encoders.

Decoders

A decoder is a kind of module that allows you to automatically decode de response in xml or json, to use them we only have to set the decoder we want with the ->setDecoder() method:

$api->setDecoder("json");

The default allowed values for this method are: json, xml and xmlrpc. All the decoders are always executed in the "after" hook.

Custom Decoders

To create a new decoder we only have to use this template:

class CustomDecoder extends BaseDecoder
{
	protected $contentType = 'application/json';

	protected function decode()
	{
		// decode $this->body
	}
}

Like in modules, we have the Response object available to work. The $contentType property is the content-type that will trigger the decoder, in the example above all responses with content-type "application/json" will trigger this decoder.

Quick Calls

We can do quick calls using the \OtherCode\Rest\Payloads\Request::call() method. This static method returns a Rest instance, so we can use all the methods from it.

$response = \OtherCode\Rest\Payloads\Request::call('https://jsonplaceholder.typicode.com')
    ->setDecoder('json')
    ->get('/posts/1');

Complete Example

require_once '../autoload.php';

try {

    $api = new \OtherCode\Rest\Rest(new \OtherCode\Rest\Core\Configuration(array(
        'url' => 'https://jsonplaceholder.typicode.com/',
        'httpheader' => array(
            'some_header' => 'some_value',
        )
    )));
    $api->setDecoder("json");
    
    $response = $api->get("posts/1");
    var_dump($response);
    
} catch (\Exception $e) {
    print "> " . $e->getMessage() . "\n"
}

othercode/rest 适用场景与选型建议

othercode/rest 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 47.03k 次下载、GitHub Stars 达 10, 最近一次更新时间为 2016 年 03 月 06 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「curl」 「http」 「rest」 「requests」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 othercode/rest 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 othercode/rest 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

  • Stars: 10
  • Watchers: 3
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-03-06