REAPI/app/channel/service/system/Xinjunhui.php
2024-09-29 15:43:18 +08:00

150 lines
3.9 KiB
PHP

<?php
namespace app\channel\service\system;
/**
* 讯银服务
* Class Bodingcheng
* @package app\channel\service
*/
class Xinjunhui extends Core
{
# 这几个可以后台设置
protected $host = '';
protected $mid = '';
protected $token = '';
protected $api = '';
# 中石油油卡充值 拼音来吧
public function zsycz($param)
{
$check = array
(
'card' => 'chargeacct',
'cash' => 'cash',
'accounttype' => 'accounttype',
);
$param['accounttype'] = 5;
$this->api = 'api/order/charge';
return $this->submit($param, $check);
}
# 中石化油卡充值
public function zshcz($param)
{
$check = array
(
'card' => 'chargeacct',
'cash' => 'cash',
'accounttype' => 'accounttype',
);
$param['accounttype'] = 5;
$this->api = 'api/order/charge';
return $this->submit($param, $check);
}
# 通知处理 主要返回状态 2是成功 3是失败
public function notify($data)
{
$request = $data;
$result = array();
$result['cash'] = 1;
if ($data['result'] == 'Q0000') {
$result['status'] = 2;
} elseif ($data['result'] == 'Q0001') {
$result['status'] = 3;
} else {
$result['status'] = 4;
}
if (isset($data['transo']) && $data['transo']) {
# 错误信息
$msg = $data['msg'] = $result['msg'] = $data['transo'];
# 流水号
if (strstr($data['msg'], '订单号:')) {
$temp = explode('订单号:', $data['msg']);
$data['s_nubmer'] = $result['s_nubmer'] = $temp[1];
}
}
$result['yes'] = 'success';
$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['code']) && $array['code'] == 'R0000') {
# 正确
$msg = 'ok';
} else {
# 错误
$msg = isset($array['msg']) ? $array['msg'] : '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;
}
$request = $param['detail'];
unset($request['cash']);
$request['partnerno'] = $this->mid;
$request['product'] = $this->getGid($param['cash']);
$request['orderno'] = $param['order'];
$request['timestamp'] = time();
$request['sign'] = $this->_sign($request);
$url = $this->host . $this->api;
$response = $this->curl('post', $url, $request, true);
$response = $this->response($response);
//$response['data'] = '';
//$response['msg'] = 'ok';
$channel_order_id = '';
if (isset($response['array']['orderno'])) {
$channel_order_id = $response['array']['orderno'];
}
$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)
{
$signature_string = $request['partnerno'] . '||' . $this->token . '||' . $request['timestamp'];
return md5($signature_string);
}
}