183 lines
4.9 KiB
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?php
namespace app\channel\service\system;
/**
* 服务
* Class Bodingcheng
* @package app\channel\service
*/
class Jiashi extends Core
{
# 这几个可以后台设置
protected $host = 'host';
protected $mid = 'mid';
protected $token = 'token';
protected $api = 'api';
# 中石油充值
public function zsycz($param)
{
$check = array
(
'card' => 'accountId',
'cash' => 'faceValue',
'amt' => 'amt',
'skuId' => 'skuId',
'skuType' => 'skuType',
);
$param['amt'] = 1;
$param['skuId'] = $this->getCode($param['cash'], 2);
if (!$param['skuId']) {
return 'order';
}
$param['skuType'] = 999;
return $this->submit($param, $check);
}
# 中石化油卡充值
public function zshcz($param)
{
$check = array
(
'card' => 'accountId',
'cash' => 'faceValue',
'amt' => 'amt',
'skuId' => 'skuId',
'skuType' => 'skuType',
);
$param['amt'] = 1;
$param['skuId'] = $this->getCode($param['cash'], 1);
if (!$param['skuId']) {
return 'order';
}
$param['skuType'] = 999;
return $this->submit($param, $check);
}
# 通知处理 主要返回状态 2是成功 3是失败
public function notify($data)
{
$request = $data;
$sign = $this->_sign($request, array('orderId', 'retCode', 'sysOrderId', 'accountId', 'payAmount', 'createTime', 'amt'));
if ($sign != $data['sign']) {
return false;
}
$result = array();
$result['cash'] = 1;
if ($data['retCode'] == '200') {
$result['status'] = 2;
} elseif ($data['retCode'] == '100') {
$result['status'] = 3;
} else {
$result['status'] = 4;
}
if (isset($data['transactionVoucher']) && $data['transactionVoucher']) {
# 流水号
$data['s_nubmer'] = $result['s_nubmer'] = $data['transactionVoucher'];
}
$result['yes'] = '{
"retCode":"200",
"retMsg":"回调成功"
}';
$result['data'] = $data;
return $result;
}
# 数据响应格式处理
public function response($data)
{
$log['type'] = 'response';
$log['data'] = $data;
$log['config'] = $this->data;
$this->log($log);
$array = $this->json_decode($data);
if (!$array) {
$msg = 'error';
} elseif (isset($array['retCode']) && $array['retCode'] == '200') {
# 正确
$msg = 'ok';
} else {
# 错误
$msg = isset($array['retMsg']) ? $array['retMsg'] : 'error';
}
return array
(
'msg' => $msg,
'data' => $data,
'array' => $array,
);
}
# 查询接口
public function query($param)
{
}
# 提交数据
private function submit($param, $check)
{
$param = $this->param($param, $check);
if (is_string($param) || (is_array($param) && $param['status'] == 1)) {
return $param;
}
$this->api = 'biz/unionAsync/buyOrder';
$request = $param['detail'];
$request['userId'] = $this->mid;
$request['orderId'] = $param['order'];
$request['notify_url'] = $this->getNotify($param['order'], 1);
$request['dtCreate'] = date('YmdHis');
$request['version'] = 'V2.0';
$request['sign'] = $this->_sign($request, array('userId', 'orderId', 'skuId', 'skuType', 'accountId', 'faceValue', 'dtCreate', 'version', 'amt'));
$url = $this->host . $this->api;
$response = $this->curl('get', $url, $request);
$response = $this->response($response);
//$response['data'] = '';
//$response['msg'] = 'ok';
$channel_order_id = '';
$this->create($param['order'], $channel_order_id, $param['merchant_order'], $param['cash'], $url, $request, $response, 1, $param['account']);
return $response['msg'];
}
private function _sign($request, $param)
{
//ksort($request);
$signature_string = '';
foreach ($param as $k => $v) {
$signature_string .= $request[$v];
}
$signature_string .= $this->token;
return md5($signature_string);
}
private function getCode($cash, $type)
{
if ($type == 1) {
if ($cash == 50) {
return 'def_zsh_50';
} elseif ($cash == 100) {
return 'def_zsh_100';
} elseif ($cash == 200) {
return 'def_zsh_200';
} elseif ($cash == 500) {
return 'def_zsh_500';
} elseif ($cash == 1000) {
return 'def_zsh_1000';
}
}
return false;
}
}