Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ccaccbd129 | |||
| b677771328 | |||
| e640647709 | |||
| f49481ad29 | |||
| 3d867be82d | |||
| a803fc2f1d |
@@ -156,7 +156,6 @@ class Init
|
|||||||
{
|
{
|
||||||
$signStr = $this->getSignString();
|
$signStr = $this->getSignString();
|
||||||
$private_key = $this->getPrivate();
|
$private_key = $this->getPrivate();
|
||||||
|
|
||||||
$privKeyId = openssl_get_privatekey($private_key);
|
$privKeyId = openssl_get_privatekey($private_key);
|
||||||
|
|
||||||
if (!$privKeyId) {
|
if (!$privKeyId) {
|
||||||
@@ -301,7 +300,6 @@ class Init
|
|||||||
}
|
}
|
||||||
|
|
||||||
$client = new Client();
|
$client = new Client();
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$response = $client->request('POST', $url, [
|
$response = $client->request('POST', $url, [
|
||||||
'form_params' => $paramArray,
|
'form_params' => $paramArray,
|
||||||
@@ -312,26 +310,27 @@ class Init
|
|||||||
if ($response->getStatusCode() == 200) {
|
if ($response->getStatusCode() == 200) {
|
||||||
$body = $response->getBody();
|
$body = $response->getBody();
|
||||||
$content = str_replace(["\r\n", "\n", "\r", '/n', "\\n",], '&', $body->getContents());
|
$content = str_replace(["\r\n", "\n", "\r", '/n', "\\n",], '&', $body->getContents());
|
||||||
|
|
||||||
parse_str($content, $data);
|
parse_str($content, $data);
|
||||||
|
|
||||||
$this->data = $data;
|
$this->data = $data;
|
||||||
|
|
||||||
if ($data['transRet'] != 'SUCCESS') {
|
if (isset($data['queryResult']) && $data['queryResult'] != 'SUCCESS') {
|
||||||
$this->code = false;
|
throw new \Exception('返回的数据错误');
|
||||||
$this->message = $data['resultDis'];
|
}
|
||||||
|
|
||||||
|
if (isset($data['transRet']) && $data['transRet'] != 'SUCCESS') {
|
||||||
|
throw new \Exception($data['resultDis']);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->code = true;
|
$this->code = true;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$this->code = false;
|
throw new \Exception('未正常返回数据');
|
||||||
$this->message = '接口错误 Post';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (\Exception $exception) {
|
} catch (\Exception $exception) {
|
||||||
$this->code = false;
|
$this->code = false;
|
||||||
$this->message = '接口错误 Post' . $exception->getMessage();
|
$this->message = '接口错误 ' . $exception->getMessage();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,28 @@ class Query extends Init
|
|||||||
|
|
||||||
public function start()
|
public function start()
|
||||||
{
|
{
|
||||||
|
$this->setIsLower(false);
|
||||||
|
$this->addData();
|
||||||
|
$this->setSignData();
|
||||||
|
$url = config('wounicom.uri.unicom.query');
|
||||||
|
$this->sendPost($this->params, $url);
|
||||||
|
|
||||||
|
return $this->respond();
|
||||||
|
}
|
||||||
|
|
||||||
|
public function addData()
|
||||||
|
{
|
||||||
|
$order = $this->params;
|
||||||
|
|
||||||
|
$data = [
|
||||||
|
'merNo' => $this->merNo,
|
||||||
|
'orderNo' => $order->orderid,
|
||||||
|
'orderDate' => $order->created_at->format('Ymd'),
|
||||||
|
'charSet' => 'UTF-8',
|
||||||
|
'signType' => config('wounicom.signType'),
|
||||||
|
];
|
||||||
|
|
||||||
|
$this->params = $data;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ class Refund extends Init
|
|||||||
'orderDate' => $order->created_at->format('Ymd'),
|
'orderDate' => $order->created_at->format('Ymd'),
|
||||||
'payJournl' => $order->payment->out_trade_no,
|
'payJournl' => $order->payment->out_trade_no,
|
||||||
'merReqTime' => Carbon::now()->format('YmdHis'),
|
'merReqTime' => Carbon::now()->format('YmdHis'),
|
||||||
'amount' => -1,
|
'amount' => $order->payment->amount * 100,
|
||||||
'reason' => '退款',
|
'reason' => '退款',
|
||||||
'signType' => 'RSA_SHA256',
|
'signType' => 'RSA_SHA256',
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ class Sign extends Init
|
|||||||
// $signMsg = str_replace('\\', '', $signMsg);
|
// $signMsg = str_replace('\\', '', $signMsg);
|
||||||
$signMsg = str_replace(' ', '+', $signMsg);
|
$signMsg = str_replace(' ', '+', $signMsg);
|
||||||
$this->sign = $signMsg;
|
$this->sign = $signMsg;
|
||||||
info($this->sign);
|
|
||||||
|
|
||||||
return $this->checkSign();
|
return $this->checkSign();
|
||||||
|
|
||||||
|
|||||||
@@ -2,11 +2,15 @@
|
|||||||
|
|
||||||
namespace XuanChen\WoUnicom;
|
namespace XuanChen\WoUnicom;
|
||||||
|
|
||||||
|
use App\Helpers\Helper;
|
||||||
|
use App\Models\ActivitySchoolOrder;
|
||||||
|
use App\Models\ActivityPetroOrder;
|
||||||
use App\Models\Payment;
|
use App\Models\Payment;
|
||||||
use App\Models\Welfare;
|
use App\Models\Welfare;
|
||||||
use App\Models\WelfareOrder;
|
use App\Models\WelfareOrder;
|
||||||
use App\Models\WelfarePayment;
|
use App\Models\WelfarePayment;
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
|
use Illuminate\Support\Str;
|
||||||
use XuanChen\WoUnicom\Action\Init;
|
use XuanChen\WoUnicom\Action\Init;
|
||||||
use XuanChen\WoUnicom\Action\Order;
|
use XuanChen\WoUnicom\Action\Order;
|
||||||
use XuanChen\WoUnicom\Action\Query;
|
use XuanChen\WoUnicom\Action\Query;
|
||||||
@@ -24,6 +28,7 @@ class WoUnicom
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Notes: 下单
|
* Notes: 下单
|
||||||
|
*
|
||||||
* @Author: 玄尘
|
* @Author: 玄尘
|
||||||
* @Date : 2021/4/30 9:36
|
* @Date : 2021/4/30 9:36
|
||||||
* @return \XuanChen\WoUnicom\Action\Order
|
* @return \XuanChen\WoUnicom\Action\Order
|
||||||
@@ -39,17 +44,22 @@ class WoUnicom
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Notes: 查询订单
|
* Notes: 查询订单
|
||||||
|
*
|
||||||
* @Author: 玄尘
|
* @Author: 玄尘
|
||||||
* @Date : 2021/4/30 9:39
|
* @Date : 2021/4/30 9:39
|
||||||
* @return \XuanChen\WoUnicom\Action\Query
|
* @return \XuanChen\WoUnicom\Action\Query
|
||||||
*/
|
*/
|
||||||
public function query()
|
public function query()
|
||||||
{
|
{
|
||||||
return (new Query());
|
$action = new Query();
|
||||||
|
$action->setConfig();
|
||||||
|
|
||||||
|
return $action;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Notes: 退款
|
* Notes: 退款
|
||||||
|
*
|
||||||
* @Author: 玄尘
|
* @Author: 玄尘
|
||||||
* @Date : 2021/4/30 9:37
|
* @Date : 2021/4/30 9:37
|
||||||
*/
|
*/
|
||||||
@@ -64,6 +74,7 @@ class WoUnicom
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Notes: 验签
|
* Notes: 验签
|
||||||
|
*
|
||||||
* @Author: 玄尘
|
* @Author: 玄尘
|
||||||
* @Date : 2021/5/11 11:51
|
* @Date : 2021/5/11 11:51
|
||||||
* @param $params
|
* @param $params
|
||||||
@@ -78,6 +89,7 @@ class WoUnicom
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Notes: 回调数据
|
* Notes: 回调数据
|
||||||
|
*
|
||||||
* @Author: 玄尘
|
* @Author: 玄尘
|
||||||
* @Date : 2021/5/11 15:54
|
* @Date : 2021/5/11 15:54
|
||||||
* @param $params
|
* @param $params
|
||||||
@@ -99,9 +111,9 @@ class WoUnicom
|
|||||||
|
|
||||||
//验签成功
|
//验签成功
|
||||||
if ($res === true) {
|
if ($res === true) {
|
||||||
|
$channel = Helper::getChannel($data['orderid']);
|
||||||
//福利订单
|
switch ($channel) {
|
||||||
if (str_contains($data['orderid'], 'WEAL')) {
|
case 'welfare':
|
||||||
$order = WelfareOrder::where('orderid', $data['orderid'])->first();
|
$order = WelfareOrder::where('orderid', $data['orderid'])->first();
|
||||||
if ($order && $order->status == 'UNPAY') {
|
if ($order && $order->status == 'UNPAY') {
|
||||||
$payment = $order->payment;
|
$payment = $order->payment;
|
||||||
@@ -112,12 +124,11 @@ class WoUnicom
|
|||||||
]);
|
]);
|
||||||
$order->paid();
|
$order->paid();
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
} else {
|
case 'school':
|
||||||
$order = \App\Models\Order::where('orderid', $data['orderid'])->first();
|
$order = ActivitySchoolOrder::where('orderid', $data['orderid'])->first();
|
||||||
|
|
||||||
if ($order && $order->state == 'UNPAY') {
|
if ($order && $order->state == 'UNPAY') {
|
||||||
$payment = \App\Models\Payment::where('orderable_type', get_class($order))
|
$payment = Payment::where('orderable_type', get_class($order))
|
||||||
->where('orderable_id', $order->id)
|
->where('orderable_id', $order->id)
|
||||||
->latest()
|
->latest()
|
||||||
->first();
|
->first();
|
||||||
@@ -129,14 +140,45 @@ class WoUnicom
|
|||||||
$payment->save();
|
$payment->save();
|
||||||
$order->paid();
|
$order->paid();
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
case 'petro':
|
||||||
|
$order = ActivityPetroOrder::where('orderid', $data['orderid'])->first();
|
||||||
|
if ($order && $order->state == 'UNPAY') {
|
||||||
|
$payment = Payment::where('orderable_type', get_class($order))
|
||||||
|
->where('orderable_id', $order->id)
|
||||||
|
->latest()
|
||||||
|
->first();
|
||||||
|
|
||||||
|
$payment->state = 'SUCCESS';
|
||||||
|
$payment->out_trade_no = $data['payfloodid'];
|
||||||
|
$payment->type = 'UNICOM';
|
||||||
|
$payment->paid_at = Carbon::now();
|
||||||
|
$payment->save();
|
||||||
|
$order->paid();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case 'web':
|
||||||
|
default:
|
||||||
|
$order = \App\Models\Order::where('orderid', $data['orderid'])->first();
|
||||||
|
if ($order && $order->state == 'UNPAY') {
|
||||||
|
$payment = Payment::where('orderable_type', get_class($order))
|
||||||
|
->where('orderable_id', $order->id)
|
||||||
|
->latest()
|
||||||
|
->first();
|
||||||
|
|
||||||
|
$payment->state = 'SUCCESS';
|
||||||
|
$payment->out_trade_no = $data['payfloodid'];
|
||||||
|
$payment->type = 'UNICOM';
|
||||||
|
$payment->paid_at = Carbon::now();
|
||||||
|
$payment->save();
|
||||||
|
$order->paid();
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
$this->updateLog(['SUCCESS']);
|
$this->updateLog(['SUCCESS']);
|
||||||
|
|
||||||
return 'SUCCESS';
|
return 'SUCCESS';
|
||||||
} else {
|
} else {
|
||||||
$this->updateLog(['验签失败']);
|
$this->updateLog(['验签失败']);
|
||||||
|
|
||||||
return '验签失败';
|
return '验签失败';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user