Payment.php
5.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?php
/**
* tpshop
* ============================================================================
* * 版权所有 2015-2027 深圳搜豹网络科技有限公司,并保留所有权利。
* 网站地址: http://www.tp-shop.cn
* ----------------------------------------------------------------------------
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
* 不允许对程序代码以任何形式任何目的的再发布。
* ============================================================================
* $Author: IT宇宙人 2015-08-10 $
*/
namespace app\home\controller;
use think\Request;
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'];
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
// 修改订单的支付方式
$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]));
$order = M('order')->where("order_id", $order_id)->find();
if($order['pay_status'] == 1){
$this->error('此订单,已完成支付!');
}
// tpshop 订单支付提交
$pay_radio = $_REQUEST['pay_radio'];
$config_value = parse_url_param($pay_radio); // 类似于 pay_code=alipay&bank_code=CCB-DEBIT 参数
//微信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'); // 订单id
// 修改充值订单的支付方式
$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 参数
//微信JS支付
if($this->pay_code == 'weixin' && $_SESSION['openid'] && strstr($_SERVER['HTTP_USER_AGENT'],'MicroMessenger')){
mlog('1','recharge');
$code_str = $this->payment->getJSAPI($order,$config_value);
exit($code_str);
}else{
$this->error('暂时只支持微信支付');
}
$order['order_amount'] = $order['account'];
$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',getMobileStoId()); //分跳转 和不 跳转
}
// 服务器点对点 // 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();
$this->assign('order', $order);
if($result['status'] == 1)
return $this->fetch('success');
else
return $this->fetch('error');
}
}