REAPI/app/channel/service/system/diandian.php

227 lines
6.7 KiB
PHP
Raw Normal View History

<?php
namespace app\channel\service\system;
#模板
class diandian extends Core
{
protected $host = ''; // 主机,不设置,后台
protected $mid = ''; // 商户id
protected $token = ''; // 密钥
protected $api = '';
//话费直充
public function qbcz($param){
// $check 前面为我们系统参宿,后面为文档中上游对应参数
# card(油卡账户),mobile(手机号,只在话费充值有),account(账户,除话费充值均为这个),以上三个基本上都是单独存在,不会同时存在,所以选择好判断.
# cash(充值金额),num(充值数量,非必须存在)
$check = array
(
'account' => 'account',
'cash'=>'price',
'num'=>'quantity'
);
if(!isset($param['num'])){
$param['num'] = 1;
}
$this->api='Service/PostOrder.aspx';
return $this->submit($param, $check);
}
# 通知处理 主要返回状态 2是成功 3是失败
public function notify($data)
{
$result = array();
$result['cash'] = 1;
$result['status'] = 4;
#以上基本不要变
if ($data['OrderStatus'] == 'SUCCESS') {
$result['status'] = 2;
} elseif($data['OrderStatus'] == 'CANCEL' && $data['OrderStatus'] == 'FAILED'){
$result['status'] = 3;
}
if (isset($data['FailedReason']) && $data['FailedReason']) {
$data['msg'] = $result['msg'] = $data['FailedReason'];
}
$result['yes'] = 'ok'; //响应给上游的数据
$result['data'] = $data;
return $result;
}
//
public function query($order){
$request['coopid'] = $this->mid;
$request['tranid'] = $order['merchant_order_id'];
$request['sign'] = $this->_sign($request);
$url = $this->host . 'Service/GetOrder.aspx';
$response = $this->curl('post', $url, $request);
#记录日志
$log['type'] = 'query_response';
$log['data'] = $response;
$log['config'] = $this->data;
$this->log($log);
#记录借宿
$array = $this->json_decode($response);
$result = array();
// if(isset($array['data']['cards'])){
// $result['kami']=array(
// 'cardno' => isset($array['data']['cards'][0]['card_no'])?$array['data']['cards'][0]['card_no']:'',
// 'cardpwd' => $array['data']['cards'][0]['card_password'],
// 'expired' => $array['data']['cards'][0]['expired_at'],
// );
// }
return $array;
}
# 数据响应格式处理
public function response($data)
{
$log['type'] = 'response';
$log['data'] = $data;
$log['config'] = $this->data;
$this->log($log);
#以上不要做任何变动
// $array = $this->json_decode($data); //响应数据为json
#如果响应为XML格式
$array = (array) simplexml_load_string($data);
if (!$array) {
$msg = 'error';
} elseif (isset($array['orderStatus']) && ($array['orderStatus']=='UNDERWAY' || $array['orderStatus']=='SUCCESS')) { //修改判断逻辑为确定提交成功即可
# 正确
$msg = 'ok';
#如有其他判断以下
// if(isset($array['cards'])){
// $array['kami'] = array
// (
// 'cardno' => $array['cards'][0]['card_no'],
// 'cardpwd' => $array['cards'][0]['card_password'],
// 'expired' => $array['cards'][0]['expired_at'],
//// 'value' => $array['data']['count_money'],
// );
// }
} else {
# 错误
$msg = $array['msg'] ?? 'error'; //前面message根据响应内容改成对应的错误提示
}
return array
(
'msg' => $msg,
'data' => $data,
'array' => $array,
);
}
# 查询余额接口
public function account($day)
{
$request['coopid'] = $this->mid;
$request['sign'] = $this->_sign($request);
$url = $this->host . 'Service/GetBalance.aspx';
$response = $this->curl('post', $url, $request);
// $response = $this->response($response);
#如果响应为XML格式
$array = (array) simplexml_load_string($response);
$array = [
'status' => 'T',
'amount' => '100.00',
];
if (!$array) {
return false;
} elseif (isset($array['status']) && $array['status']=='T' && isset($array['amount']) && $array['amount']) { //修改判断逻辑为确定提交成功即可
# 正确
$array['account'] = $array['amount']; //此处为余额
return $array;
}
# 错误
return false;
}
# 提交数据
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['tranid']=$param['order']; //我方系统订单号
$request['coopid']=$this->mid;//商户号
$request['proid']=$this->getGid($param['cash']); //此方法为根据面值获取产品id,如无需可注释
$request['asyncurl']=$this->getNotify($param['order'], 1); //回调方法默认不用改
if (isset($_SERVER['SERVER_ADDR'])) {
$request['ipaddr'] = $_SERVER['SERVER_ADDR'];
} elseif (isset($_SERVER['LOCAL_ADDR'])) {
$request['ipaddr'] = $_SERVER['LOCAL_ADDR'];
} else {
$request['ipaddr'] = '127.0.0.1';
}
$request['sign'] = $this->_sign($request);
$url = $this->host . $this->api; //组装地址
$response = $this->curl('post', $url, $request);
$response = $this->response($response);
$channel_order_id = '';
#如果出现响应有上游订单号,可以如下
if (isset($response["array"]['tranId'])) {
$channel_order_id = $response["array"]['tranId'];
}
$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)
{
// unset($request['cash']);
$str = '';
ksort($request);//ASIIC码顺序+商户秘钥
foreach($request as $k=>$v){
$str.=$k.$v;
}
$str.=$this->token;
$str=strtolower(md5($str));
return $str;
}
}