mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
111 lines
4.3 KiB
PHP
111 lines
4.3 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | Think.Admin
|
||
// +----------------------------------------------------------------------
|
||
// | 版权所有 2016~2017 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
|
||
// +----------------------------------------------------------------------
|
||
// | 官方网站: http://think.ctolog.com
|
||
// +----------------------------------------------------------------------
|
||
// | 开源协议 ( https://mit-license.org )
|
||
// +----------------------------------------------------------------------
|
||
// | github开源项目:https://github.com/zoujingli/Think.Admin
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\wechat\controller;
|
||
|
||
use controller\BasicAdmin;
|
||
use service\DataService;
|
||
use service\PayService;
|
||
use think\Db;
|
||
use Wechat\WechatService;
|
||
|
||
/**
|
||
* 微信配置管理
|
||
* Class Config
|
||
* @package app\wechat\controller
|
||
* @author Anyon <zoujingli@qq.com>
|
||
* @date 2017/03/27 14:43
|
||
*/
|
||
class Config extends BasicAdmin {
|
||
|
||
/**
|
||
* 定义当前操作表名
|
||
* @var string
|
||
*/
|
||
protected $table = 'SystemConfig';
|
||
|
||
/**
|
||
* 微信基础参数配置
|
||
* @return \think\response\View
|
||
*/
|
||
public function index() {
|
||
if ($this->request->isGet()) {
|
||
$this->assign('title', '微信接口配置');
|
||
return view();
|
||
|
||
}
|
||
$data = $this->request->post();
|
||
foreach ($data as $key => $vo) {
|
||
DataService::save($this->table, ['name' => $key, 'value' => $vo], 'name');
|
||
}
|
||
$this->success('数据修改成功!', '');
|
||
}
|
||
|
||
/**
|
||
* 微信商户参数配置
|
||
* @return \think\response\View
|
||
*/
|
||
public function pay() {
|
||
if ($this->request->isGet()) {
|
||
switch ($this->request->get('action')) {
|
||
// 生成测试支付二维码
|
||
case 'payqrc':
|
||
$pay = &load_wechat('pay');
|
||
// 生成订单号
|
||
$order_no = session('pay-test-order-no');
|
||
if (empty($order_no)) {
|
||
$order_no = DataService::createSequence(10, 'wechat-pay-test');
|
||
session('pay-test-order-no',$order_no);
|
||
}
|
||
// 该订单号已经支付
|
||
if(PayService::isPay($order_no)){
|
||
return json(['code'=>2,'order_no'=>$order_no]);
|
||
}
|
||
// 订单号未支付,生成支付二维码URL
|
||
$url = PayService::createWechatPayQrc($pay, $order_no, 1, '扫码支付测试!');
|
||
if ($url !== false) {
|
||
return json(['code'=>1,'url'=>$url,'order_no'=>$order_no]);
|
||
}
|
||
// 生成支付二维码URL失败
|
||
$this->error("生成支付二维码失败,{$pay->errMsg}[{$pay->errCode}]");
|
||
break;
|
||
// 检查订单是否支付成功
|
||
case 'check':
|
||
$order_no = $this->request->get('order_no');
|
||
if (PayService::isPay($order_no)) {
|
||
$this->success('已经支付成功!', '');
|
||
}
|
||
$this->error('订单尚未支付!');
|
||
break;
|
||
default:
|
||
$this->assign('title', '微信支付配置');
|
||
return view();
|
||
}
|
||
}
|
||
$data = $this->request->post();
|
||
foreach ($data as $key => $vo) {
|
||
if (in_array($key, ['wechat_cert_key_md5', 'wechat_cert_cert_md5']) && !empty($vo)) {
|
||
$filename = ROOT_PATH . 'public/upload/' . join('/', str_split($vo, 16)) . '.pem';
|
||
!file_exists($filename) && $this->error('支付双向证书上传失败,请重新上传!');
|
||
$keyname = str_replace('_md5', '', $key);
|
||
$data[$keyname] = $filename;
|
||
unset($data[$key]);
|
||
}
|
||
}
|
||
foreach ($data as $key => $vo) {
|
||
DataService::save($this->table, ['name' => $key, 'value' => $vo], 'name');
|
||
}
|
||
$this->success('数据修改成功!', '');
|
||
}
|
||
}
|