140 lines
3.8 KiB
PHP
140 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace app\channel\service\system;
|
|
|
|
/**
|
|
* 浦上亚婕服务
|
|
* Class Bodingcheng
|
|
* @package app\channel\service
|
|
*/
|
|
class Hua extends Core
|
|
{
|
|
# 这几个可以后台设置
|
|
protected $host = '';
|
|
protected $mid = '';
|
|
protected $token = '';
|
|
protected $api = 'api/phoneOrder';
|
|
protected $sign = array();
|
|
|
|
# 电话充值
|
|
public function dhcz($param)
|
|
{
|
|
$check = array
|
|
(
|
|
'mobile' => 'tel',
|
|
'cash' => 'price',
|
|
'telType' => 'telType',
|
|
);
|
|
$param['telType'] = 1;
|
|
if (isset($param['isp']) && $param['isp']) {
|
|
$param['telType'] = $param['isp'];
|
|
}
|
|
$this->sign = array('mchId', 'orderId', 'tel', 'telType', 'price', 'notify', 'timeout', 'rand', 'time' );
|
|
return $this->submit($param, $check);
|
|
}
|
|
|
|
# 通知处理 主要返回状态 2是成功 3是失败
|
|
public function notify($data)
|
|
{
|
|
$request = $data;
|
|
$result = array();
|
|
$result['cash'] = 1;
|
|
$result['status'] = 4;
|
|
if ($data['orderType'] == 3) {
|
|
$result['status'] = 2;
|
|
} elseif ($data['orderType'] == 4) {
|
|
$result['status'] = 3;
|
|
} else {
|
|
$result['status'] = 4;
|
|
}
|
|
|
|
if (isset($data['voucher']) && $data['voucher']) {
|
|
# 流水号
|
|
$data['s_nubmer'] = $result['s_nubmer'] = $data['voucher'];
|
|
}
|
|
|
|
$result['yes'] = '{"code" :0, "msg" : "ok"}';
|
|
|
|
$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'] == '0') {
|
|
# 正确
|
|
$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'];
|
|
$request['mchId'] = $this->mid;
|
|
$request['orderId'] = $param['order'];
|
|
$request['notify'] = $this->getNotify($param['order'], 1);
|
|
$request['timeout'] = 3600;
|
|
$request['time'] = time();
|
|
$request['rand'] = rand(100000, 999999);
|
|
$request['sign'] = $this->_sign($request, $this->sign);
|
|
$url = $this->host . $this->api;
|
|
$response = $this->curl('post', $url, $request, true);
|
|
$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) {
|
|
if (isset($request[$v]) && $request[$v]) {
|
|
//$signature_string .= $v . '=' . $request[$v] . '&';
|
|
$signature_string .= $request[$v];
|
|
}
|
|
}
|
|
|
|
//$signature_string = substr($signature_string, 0, -1);
|
|
|
|
$signature_string .= $this->token;
|
|
|
|
return md5($signature_string);
|
|
}
|
|
} |