167 lines
7.0 KiB
PHP
167 lines
7.0 KiB
PHP
![]() |
<?php
|
||
|
/**
|
||
|
* tpshop
|
||
|
* ============================================================================
|
||
|
* * 版权所有 2015-2027 深圳搜豹网络科技有限公司,并保留所有权利。
|
||
|
* 网站地址: http://www.tp-shop.cn
|
||
|
* ----------------------------------------------------------------------------
|
||
|
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
|
||
|
* 不允许对程序代码以任何形式任何目的的再发布。
|
||
|
* 采用最新Thinkphp5助手函数特性实现单字母函数M D U等简写方式
|
||
|
* ============================================================================
|
||
|
* $Author: IT宇宙人 2015-08-10 $
|
||
|
*/
|
||
|
namespace app\home\controller;
|
||
|
use think\Request;
|
||
|
use think\Db;
|
||
|
|
||
|
class Payment extends Base {
|
||
|
|
||
|
public $payment; // 具体的支付类
|
||
|
public $pay_code; // 具体的支付code
|
||
|
|
||
|
/**
|
||
|
* 析构流函数
|
||
|
*/
|
||
|
public function __construct() {
|
||
|
parent::__construct();
|
||
|
|
||
|
// tpshop 订单支付提交
|
||
|
$pay_radio = $_REQUEST['pay_radio'];
|
||
|
if(!empty($pay_radio))
|
||
|
{
|
||
|
$pay_radio = parse_url_param($pay_radio);
|
||
|
$this->pay_code = $pay_radio['pay_code']; // 支付 code
|
||
|
}
|
||
|
else // 第三方 支付商返回
|
||
|
{
|
||
|
//file_put_contents('./a.html',$_GET,FILE_APPEND);
|
||
|
$this->pay_code = I('get.pay_code');
|
||
|
unset($_GET['pay_code']); // 用完之后删除, 以免进入签名判断里面去 导致错误
|
||
|
}
|
||
|
//获取通知的数据
|
||
|
$xml = $GLOBALS['HTTP_RAW_POST_DATA'];
|
||
|
$xml = file_get_contents('php://input');
|
||
|
if(empty($this->pay_code))
|
||
|
exit('pay_code 不能为空');
|
||
|
// 导入具体的支付类文件
|
||
|
include_once "plugins/payment/{$this->pay_code}/{$this->pay_code}.class.php"; // D:\wamp\www\svn_tpshop\www\plugins\payment\alipay\alipayPayment.class.php
|
||
|
$code = '\\'.$this->pay_code; // \alipay
|
||
|
$this->payment = new $code();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* tpshop 提交支付方式
|
||
|
*/
|
||
|
public function getCode(){
|
||
|
//C('TOKEN_ON',false); // 关闭 TOKEN_ON
|
||
|
header("Content-type:text/html;charset=utf-8");
|
||
|
$order_id = I('order_id/d'); // 订单id
|
||
|
session('order_id',$order_id); // 最近支付的一笔订单 id
|
||
|
if(!session('user')) $this->error('请先登录',U('User/login'));
|
||
|
$order = Db::name('Order')->where(['order_id' => $order_id])->find();
|
||
|
if(empty($order) || $order['order_status'] > 1){
|
||
|
$this->error('非法操作!',U("Home/Index/index"));
|
||
|
}
|
||
|
if($order['pay_status'] == 1){
|
||
|
$this->error('此订单,已完成支付!');
|
||
|
}
|
||
|
// 修改订单的支付方式
|
||
|
$payment_arr = M('Plugin')->where("`type` = 'payment'")->getField("code,name");
|
||
|
M('order')->where("order_id",$order_id)->save(array('pay_code'=>$this->pay_code,'pay_name'=>$payment_arr[$this->pay_code]));
|
||
|
|
||
|
// tpshop 订单支付提交
|
||
|
$pay_radio = $_REQUEST['pay_radio'];
|
||
|
$config_value = parse_url_param($pay_radio); // 类似于 pay_code=alipay&bank_code=CCB-DEBIT 参数
|
||
|
$payBody = getPayBody($order_id);
|
||
|
$config_value['body'] = $payBody;
|
||
|
|
||
|
//微信JS支付
|
||
|
if($this->pay_code == 'weixin' && $_SESSION['openid'] && strstr($_SERVER['HTTP_USER_AGENT'],'MicroMessenger')){
|
||
|
$code_str = $this->payment->getJSAPI($order,$config_value);
|
||
|
exit($code_str);
|
||
|
}else{
|
||
|
$code_str = $this->payment->get_code($order,$config_value);
|
||
|
}
|
||
|
$this->assign('code_str', $code_str);
|
||
|
$this->assign('order_id', $order_id);
|
||
|
return $this->fetch('payment'); // 分跳转 和不 跳转
|
||
|
}
|
||
|
|
||
|
public function getPay(){
|
||
|
//C('TOKEN_ON',false); // 关闭 TOKEN_ON
|
||
|
header("Content-type:text/html;charset=utf-8");
|
||
|
$order_id = I('order_id/d'); // 订单id
|
||
|
session('order_id',$order_id); // 最近支付的一笔订单 id
|
||
|
$user = session('user');
|
||
|
// 修改充值订单的支付方式
|
||
|
$payment_arr = M('Plugin')->where("`type` = 'payment'")->getField("code,name");
|
||
|
|
||
|
M('recharge')->where("order_id", $order_id)->save(array('pay_code'=>$this->pay_code,'pay_name'=>$payment_arr[$this->pay_code]));
|
||
|
$order = M('recharge')->where("order_id", $order_id)->find();
|
||
|
if($order['pay_status'] == 1){
|
||
|
$this->error('此订单,已完成支付!');
|
||
|
}
|
||
|
$pay_radio = $_REQUEST['pay_radio'];
|
||
|
$config_value = parse_url_param($pay_radio); // 类似于 pay_code=alipay&bank_code=CCB-DEBIT 参数
|
||
|
$order['order_amount'] = $order['account'];
|
||
|
$config_value['body'] = ($order['buy_vip'] == 1) ? 'VIP充值' : '充值到余额';
|
||
|
|
||
|
//微信JS支付
|
||
|
if($this->pay_code == 'weixin' && $_SESSION['openid'] && strstr($_SERVER['HTTP_USER_AGENT'],'MicroMessenger')){
|
||
|
$code_str = $this->payment->getJSAPI($order,$config_value);
|
||
|
exit($code_str);
|
||
|
} else {
|
||
|
$code_str = $this->payment->get_code($order,$config_value);
|
||
|
}
|
||
|
$this->assign('code_str', $code_str);
|
||
|
$this->assign('order_id', $order_id);
|
||
|
return $this->fetch('recharge'); //分跳转 和不 跳转
|
||
|
}
|
||
|
|
||
|
// 服务器点对点 // http://www.tp-shop.cn/index.php/Home/Payment/notifyUrl
|
||
|
public function notifyUrl(){
|
||
|
$this->payment->response();
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
// 页面跳转 // http://www.tp-shop.cn/index.php/Home/Payment/returnUrl
|
||
|
public function returnUrl(){
|
||
|
$result = $this->payment->respond2(); // $result['order_sn'] = '201512241425288593';
|
||
|
|
||
|
if(stripos($result['order_sn'],'recharge') !== false)
|
||
|
{
|
||
|
$order = M('recharge')->where("order_sn", $result['order_sn'])->find();
|
||
|
$this->assign('order', $order);
|
||
|
if($result['status'] == 1)
|
||
|
return $this->fetch('recharge_success');
|
||
|
else
|
||
|
return $this->fetch('recharge_error');
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
$order = M('order')->where("order_sn", $result['order_sn'])->find();
|
||
|
if(empty($order)) // order_sn 找不到 根据 order_id 去找
|
||
|
{
|
||
|
$order_id = session('order_id'); // 最近支付的一笔订单 id
|
||
|
$order = M('order')->where("order_id", $order_id)->find();
|
||
|
}
|
||
|
|
||
|
$this->assign('order', $order);
|
||
|
if($result['status'] == 1)
|
||
|
return $this->fetch('success');
|
||
|
else
|
||
|
return $this->fetch('error');
|
||
|
}
|
||
|
|
||
|
public function refundBack(){
|
||
|
$this->payment->refund_respose();
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
public function transferBack(){
|
||
|
$this->payment->transfer_response();
|
||
|
exit();
|
||
|
}
|
||
|
}
|