[更新]增加微信商户红包支持

This commit is contained in:
Anyon 2018-05-25 10:21:36 +08:00
parent b49701fb05
commit 6d9b9f71cb
2 changed files with 70 additions and 0 deletions

1
We.php
View File

@ -54,6 +54,7 @@ use WeChat\Exceptions\InvalidInstanceException;
* @method \WePay\Bill WePayBill($options = []) static 微信商户账单及评论
* @method \WePay\Order WePayOrder($options = []) static 微信商户订单
* @method \WePay\Refund WePayRefund($options = []) static 微信商户退款
* @method \WePay\Redpack WePayRedpack($options = []) static 微信红包支持
* @method \WePay\Transfers WePayTransfers($options = []) static 微信商户打款到零钱
* @method \WePay\TransFresBank WePayTransFresBank($options = []) static 微信商户打款到银行卡
*/

69
WePay/Redpack.php Normal file
View File

@ -0,0 +1,69 @@
<?php
// +----------------------------------------------------------------------
// | WeChatDeveloper
// +----------------------------------------------------------------------
// | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
// +----------------------------------------------------------------------
// | 官方网站: http://think.ctolog.com
// +----------------------------------------------------------------------
// | 开源协议 ( https://mit-license.org )
// +----------------------------------------------------------------------
// | github开源项目https://github.com/zoujingli/WeChatDeveloper
// +----------------------------------------------------------------------
namespace WePay;
use WeChat\Contracts\BasicPay;
/**
* 微信红包支持
* Class Redpack
* @package WePay
*/
class Redpack extends BasicPay
{
/**
* 发放普通红包
* @param array $options
* @return array
* @throws \WeChat\Exceptions\InvalidResponseException
*/
public function create(array $options)
{
$this->params->offsetUnset('appid');
$this->params->set('wxappid', $this->config->get('appid'));
$url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack";
return $this->callPostApi($url, $options, true);
}
/**
* 发放裂变红包
* @param array $options
* @return array
* @throws \WeChat\Exceptions\InvalidResponseException
*/
public function groups(array $options)
{
$this->params->offsetUnset('appid');
$this->params->set('wxappid', $this->config->get('appid'));
$url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendgroupredpack";
return $this->callPostApi($url, $options, true);
}
/**
* 查询红包记录
* @param array $options
* @return array
* @throws \WeChat\Exceptions\InvalidResponseException
*/
public function query(array $options)
{
$this->params->offsetUnset('wxappid');
$this->params->set('appid', $this->config->get('appid'));
$url = "https://api.mch.weixin.qq.com/mmpaymkttransfers/gethbinfo";
return $this->callPostApi($url, $options, true);
}
}