mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 09:52:47 +08:00
Pre Merge pull request !17 from 承诺/master
This commit is contained in:
commit
8ada0d2a75
@ -92,13 +92,13 @@ class BasicWePay
|
||||
|
||||
/**
|
||||
* 获取微信支付通知
|
||||
* @param string $xml
|
||||
* @param string|array $xml
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function getNotify($xml = '')
|
||||
{
|
||||
$data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
|
||||
$data = is_array($xml) ? $xml : Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
|
||||
if (isset($data['sign']) && $this->getPaySign($data) === $data['sign']) {
|
||||
return $data;
|
||||
}
|
||||
|
@ -57,14 +57,14 @@ class Refund extends BasicWePay
|
||||
|
||||
/**
|
||||
* 获取退款通知
|
||||
* @param string $xml
|
||||
* @param string|array $xml
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidDecryptException
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function getNotify($xml = '')
|
||||
{
|
||||
$data = Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
|
||||
$data = is_array($xml) ? $xml : Tools::xml2arr(empty($xml) ? Tools::getRawInput() : $xml);
|
||||
if (!isset($data['return_code']) || $data['return_code'] !== 'SUCCESS') {
|
||||
throw new InvalidResponseException('获取退款通知XML失败!');
|
||||
}
|
||||
|
144
WePayV3/Complaints.php
Normal file
144
WePayV3/Complaints.php
Normal file
@ -0,0 +1,144 @@
|
||||
<?php
|
||||
|
||||
namespace WePayV3;
|
||||
|
||||
use WePayV3\Contracts\BasicWePay;
|
||||
/**
|
||||
* 普通商户消费者投诉2.0
|
||||
* Class Complaints
|
||||
* @package WePayV3
|
||||
*/
|
||||
class Complaints extends BasicWePay
|
||||
{
|
||||
|
||||
/**
|
||||
* 查询投诉列表
|
||||
* @param int $offset 分页开始位置
|
||||
* @param int $limit 分页大小
|
||||
* @param String $begin_date 开始日期
|
||||
* @param String $end_date 结束日期
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function complaintList(int $offset = 0, int $limit = 10, String $begin_date, String $end_date)
|
||||
{
|
||||
$mchId = $this->config['mch_id'];
|
||||
$pathinfo = "/v3/merchant-service/complaints-v2?limit={$limit}&offset={$offset}&begin_date={$begin_date}&end_date={$end_date}&complainted_mchid={$mchId}";
|
||||
return $this->doRequest('GET', $pathinfo,'', true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询投诉详情
|
||||
* @param String $complaint_id 被投诉单号
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function complaintDetails(String $complaint_id)
|
||||
{
|
||||
$pathinfo = "/v3/merchant-service/complaints-v2/{$complaint_id}";
|
||||
return $this->doRequest('GET', $pathinfo,'', true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询投诉协商历史
|
||||
* @param String $complaint_id 被投诉单号
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function negotiationHistory(String $complaint_id)
|
||||
{
|
||||
$pathinfo = "/v3/merchant-service/complaints-v2/{$complaint_id}/negotiation-historys";
|
||||
return $this->doRequest('GET', $pathinfo,'', true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建投诉通知回调地址
|
||||
* @param String $url 回调通知地址
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function CreateComplaintsNotify(String $url)
|
||||
{
|
||||
return $this->doRequest('POST', '/v3/merchant-service/complaint-notifications', json_encode(['url' => $url],JSON_UNESCAPED_UNICODE), true);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 查询投诉通知回调地址
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function queryComplaintsNotify()
|
||||
{
|
||||
return $this->doRequest('GET', '/v3/merchant-service/complaint-notifications', '', true);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新投诉通知回调地址
|
||||
* @param String $url 回调通知地址
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function updateComplaintsNotify(String $url){
|
||||
return $this->doRequest('PUT', '/v3/merchant-service/complaint-notifications', json_encode(['url' => $url],JSON_UNESCAPED_UNICODE), true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除投诉通知回调地址
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function deleteComplaintsNotify(){
|
||||
return $this->doRequest('DELETE', '/v3/merchant-service/complaint-notifications', '', true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 回复投诉
|
||||
* @param String $complaint_id 被投诉单号
|
||||
* @param String $content 回复内容
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function replyInfo(String $complaint_id, array $content)
|
||||
{
|
||||
$content['complainted_mchid'] = $this->config['mch_id'];
|
||||
$pathinfo = "/v3/merchant-service/complaints-v2/{$complaint_id}/response";
|
||||
return $this->doRequest('POST', $pathinfo, json_encode($content,JSON_UNESCAPED_UNICODE), true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 反馈处理完成
|
||||
* @param string $complaint_id 被投诉单号
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function completeComplaints(string $complaint_id)
|
||||
{
|
||||
$mchId = $this->config['mch_id'];
|
||||
$pathinfo = "/v3/merchant-service/complaints-v2/{$complaint_id}/complete";
|
||||
return $this->doRequest('POST', $pathinfo, json_encode(['complainted_mchid' => $mchId],JSON_UNESCAPED_UNICODE),true);
|
||||
}
|
||||
|
||||
/**
|
||||
* 图片请求接口
|
||||
* @param $pathinfo
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function downLoadImg(string $pathinfo)
|
||||
{
|
||||
return $this->doRequest('GET', $pathinfo, '',true,false);
|
||||
}
|
||||
/**
|
||||
* 图片上传接口
|
||||
* @param $imginfo
|
||||
* @return array|string
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function uploadImg(array $imginfo)
|
||||
{
|
||||
return $this->doRequest('POST', '/v3/merchant-service/images/upload', json_encode($imginfo,JSON_UNESCAPED_UNICODE),true);
|
||||
}
|
||||
|
||||
}
|
@ -180,7 +180,6 @@ abstract class BasicWePay
|
||||
"Wechatpay-Serial: {$this->config['mp_cert_serial']}"
|
||||
],
|
||||
]);
|
||||
|
||||
if ($verify) {
|
||||
$headers = [];
|
||||
foreach (explode("\n", $header) as $line) {
|
||||
|
@ -31,7 +31,7 @@ class ProfitSharing extends BasicWePay
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function create($options)
|
||||
public function create(array $options)
|
||||
{
|
||||
$options['appid'] = $this->config['appid'];
|
||||
return $this->doRequest('POST', '/v3/profitsharing/orders', json_encode($options, JSON_UNESCAPED_UNICODE), true);
|
||||
@ -45,7 +45,7 @@ class ProfitSharing extends BasicWePay
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function query($outOrderNo, $transactionId)
|
||||
public function query(string $outOrderNo, string $transactionId)
|
||||
{
|
||||
$pathinfo = "/v3/profitsharing/orders/{$outOrderNo}?&transaction_id={$transactionId}";
|
||||
return $this->doRequest('GET', $pathinfo, '', true);
|
||||
@ -57,7 +57,7 @@ class ProfitSharing extends BasicWePay
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function unfreeze($options)
|
||||
public function unfreeze(array $options)
|
||||
{
|
||||
return $this->doRequest('POST', '/v3/profitsharing/orders/unfreeze', json_encode($options, JSON_UNESCAPED_UNICODE), true);
|
||||
}
|
||||
@ -68,7 +68,7 @@ class ProfitSharing extends BasicWePay
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function amounts($transactionId)
|
||||
public function amounts(string $transactionId)
|
||||
{
|
||||
$pathinfo = "/v3/profitsharing/transactions/{$transactionId}/amounts";
|
||||
return $this->doRequest('GET', $pathinfo, '', true);
|
||||
@ -80,9 +80,12 @@ class ProfitSharing extends BasicWePay
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function addReceiver($options)
|
||||
public function addReceiver(array $options)
|
||||
{
|
||||
$options['appid'] = $this->config['appid'];
|
||||
if (isset($options['name'])) {
|
||||
$options['name'] = $this->rsaEncode($options['name']);
|
||||
}
|
||||
return $this->doRequest('POST', "/v3/profitsharing/receivers/add", json_encode($options, JSON_UNESCAPED_UNICODE), true);
|
||||
}
|
||||
|
||||
@ -92,9 +95,20 @@ class ProfitSharing extends BasicWePay
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function deleteReceiver($options)
|
||||
public function deleteReceiver(array $options)
|
||||
{
|
||||
$options['appid'] = $this->config['appid'];
|
||||
return $this->doRequest('POST', "/v3/profitsharing/receivers/delete", json_encode($options, JSON_UNESCAPED_UNICODE), true);
|
||||
}
|
||||
/**
|
||||
* 请求分账回退
|
||||
* @param array $options
|
||||
* @return array
|
||||
* @throws \WeChat\Exceptions\InvalidResponseException
|
||||
*/
|
||||
public function backspace(array $options)
|
||||
{
|
||||
$options['appid'] = $this->config['appid'];
|
||||
return $this->doRequest('POST', "/v3/profitsharing/return-orders", json_encode($options, JSON_UNESCAPED_UNICODE), true);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user