如何在 MixPHP V2.1 中使用 EasyWeChat

國內中小型公司有大量的微信接入需求,EasyWeChat 是一個非常流行的微信開發庫,由於該庫是爲 FPM 模式的傳統框架而打造,因此很多 Swoole 用戶不知道如何使用,下面詳細介紹一下 MixPHP v2.1 中如何使用。

Hook Guzzle

首先由於 overtrue/wechat 是基於 GuzzleHttp 開發的,因爲 GuzzleHttp 無法直接在 Swoole 中使用,所以需要先安裝 Mix Guzzle Hook,該庫能在不修改源碼的情況下讓 GuzzleHttp 協程化。

Request 類代理

由於 EasyWeChat 中使用的是 Symfony 框架的 Request 類,並且又不完全符合  PSR-7 規範,因此我們需要創建一個 Request 代理類:

<?php

namespace App\Http\EasyWeChat;

class Request
{

    /**
     * @var \Mix\Http\Message\ServerRequest
     */
    public $request;

    public function __construct(\Mix\Http\Message\ServerRequest $request)
    {
        $this->request = $request;
    }

    public function get($key)
    {
        return $this->request->getAttribute($key);
    }

    public function getContent()
    {
        return $this->request->getBody()->getContents();
    }

    public function getContentType()
    {
        return $this->request->getHeaderLine('Content-Type');
    }

    public function getUri()
    {
        return $this->request->getUri()->__toString();
    }

    public function getMethod()
    {
        return $this->request->getMethod();
    }

}

框架中使用

創建完成後就可在 MixPHP 的控制器中按如下代碼使用:

public function index(ServerRequest $request, Response $response)
{
    $config         = [
        'app_id'        => 'wx3cf0f39249eb0xxx',
        'secret'        => 'f1c242f4f28f735d4687abb469072xxx',
        'token'         => 'TestToken',
        'response_type' => 'array',
        //...
    ];
    $app            = \EasyWeChat\Factory::officialAccount($config);
    $app->request   = new \App\Http\EasyWeChat\Request($request);
    $wechatResponse = $app->server->serve();
    $body           = (new StreamFactory())->createStream($wechatResponse->getContent());
    $code           = $wechatResponse->getStatusCode();
    $response->withBody($body)
        ->withStatus($code);
    return $response;
}
發佈了15 篇原創文章 · 獲贊 0 · 訪問量 9046
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章