PaymentService.php 28.8 KB
Newer Older
D
v1.2.0  
devil_gong 已提交
1 2 3 4
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
D
devil_gong 已提交
5
// | Copyright (c) 2011~2019 http://shopxo.net All rights reserved.
D
v1.2.0  
devil_gong 已提交
6 7 8 9 10 11 12 13
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\service;

use think\Db;
14
use app\service\ResourcesService;
D
v1.2.0  
devil_gong 已提交
15 16 17 18 19 20 21 22 23 24 25

/**
 * 支付方式服务层
 * @author   Devil
 * @blog     http://gong.gg/
 * @version  0.0.1
 * @datetime 2016-12-01T21:51:08+0800
 */
class PaymentService
{
    // 插件目录
26
    public static $payment_dir;
D
v1.2.0  
devil_gong 已提交
27 28

    // 支付业务类型
29
    public static $payment_business_type_all;
D
v1.2.0  
devil_gong 已提交
30 31

    // 不删除的支付方式
32
    public static $cannot_deleted_list;
D
v1.2.0  
devil_gong 已提交
33 34

    // 入口文件位置
35
    public static $dir_root_path;
D
v1.2.0  
devil_gong 已提交
36 37 38 39 40 41 42 43 44 45

    /**
     * 初始化
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-12-24
     * @desc    description
     * @param   [array]           $params [输入参数]
     */
46
    private static function Init($params = [])
D
v1.2.0  
devil_gong 已提交
47 48
    {
        // 插件目录
49
        self::$payment_dir = ROOT.'extend'.DS.'payment'.DS;
D
v1.2.0  
devil_gong 已提交
50 51

        // 支付业务类型
52
        self::$payment_business_type_all = config('shopxo.payment_business_type_all');
D
v1.2.0  
devil_gong 已提交
53 54

        // 不删除的支付方式
55
        self::$cannot_deleted_list = ['DeliveryPayment', 'CashPayment'];
D
v1.2.0  
devil_gong 已提交
56 57

        // 入口文件位置
58
        self::$dir_root_path = defined('IS_ROOT_ACCESS') ? ROOT : ROOT.'public'.DS;
D
v1.2.0  
devil_gong 已提交
59 60 61 62 63 64 65 66 67 68
    }

    /**
     * 获取支付插件列表
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-17
     * @desc    description
     */
69
    public static function PlugPaymentList()
D
v1.2.0  
devil_gong 已提交
70 71
    {
        // 初始化
72
        self::Init();
D
v1.2.0  
devil_gong 已提交
73 74 75

        // 开始处理
        $data = [];
76
        if(is_dir(self::$payment_dir))
D
v1.2.0  
devil_gong 已提交
77
        {
78
            if($dh = opendir(self::$payment_dir))
D
v1.2.0  
devil_gong 已提交
79
            {
D
devil 已提交
80
                $common_platform_type = lang('common_platform_type');
D
v1.2.0  
devil_gong 已提交
81 82 83 84 85 86
                while(($temp_file = readdir($dh)) !== false)
                {
                    if(substr($temp_file, 0, 1) != '.')
                    {
                        // 获取模块配置信息
                        $payment = htmlentities(str_replace('.php', '', $temp_file));
87
                        $config = self::GetPaymentConfig($payment);
D
v1.2.0  
devil_gong 已提交
88 89 90
                        if($config !== false)
                        {
                            // 数据组装
91
                            $temp = self::DataAnalysis($config);
D
v1.2.0  
devil_gong 已提交
92 93 94 95
                            $temp['id'] = date('YmdHis').GetNumberCode(8);
                            $temp['payment'] = $payment;

                            // 获取数据库配置信息
96
                            $db_config = self::PaymentList(['where'=>['payment'=>$payment]]);
D
v1.2.0  
devil_gong 已提交
97 98 99 100 101 102 103 104 105
                            if(!empty($db_config[0]))
                            {
                                $temp['is_install'] = 1;
                                $temp['id'] = $db_config[0]['id'];
                                $temp['name'] = $db_config[0]['name'];
                                $temp['logo'] = $db_config[0]['logo'];
                                $temp['config'] = $db_config[0]['config'];
                                $temp['is_enable'] = $db_config[0]['is_enable'];
                                $temp['is_open_user'] = $db_config[0]['is_open_user'];
D
devil 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120

                                // 支付平台类型
                                $apply_terminal_names = [];
                                if(!empty($db_config[0]['apply_terminal']) && is_array($db_config[0]['apply_terminal']))
                                {
                                    foreach($common_platform_type as $platform_type)
                                    {
                                        if(in_array($platform_type['value'], $db_config[0]['apply_terminal']))
                                        {
                                            $apply_terminal_names[] = $platform_type['name'];
                                        }
                                    }
                                }
                                $temp['apply_terminal_names'] = $apply_terminal_names;
                                $temp['apply_terminal'] = $db_config[0]['apply_terminal'];
D
v1.2.0  
devil_gong 已提交
121 122 123 124 125 126 127 128
                            }
                            $data[] = $temp;
                        }
                    }
                }
                closedir($dh);
            }
        }
D
devil 已提交
129
        return DataReturn('success', 0, $data);
D
v1.2.0  
devil_gong 已提交
130 131 132 133 134 135 136 137 138 139 140
    }

    /**
     * 获取支付模块配置信息
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-17
     * @desc    description
     * @param   [string]          $payment [模块名称]
     */
141
    private static function GetPaymentConfig($payment)
D
v1.2.0  
devil_gong 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
    {
        $payment = '\payment\\'.$payment;
        if(class_exists($payment))
        {
            $obj = new $payment();
            if(method_exists($obj, 'Config') && method_exists($obj, 'Pay') && method_exists($obj, 'Respond'))
            {
                return $obj->Config();
            }
        }
        return false;
    }

    /**
     * 数据解析
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-17
     * @desc    description
     * @param   [array]          $data [插件配置信息]
     */
164
    private static function DataAnalysis($data)
D
v1.2.0  
devil_gong 已提交
165 166
    {
        return [
D
devil 已提交
167 168 169 170 171 172 173 174 175 176 177 178 179
            'name'                  => isset($data['base']['name']) ? htmlentities($data['base']['name']) : '',
            'version'               => isset($data['base']['version']) ? htmlentities($data['base']['version']) : '',
            'apply_version'         => isset($data['base']['apply_version']) ? htmlentities($data['base']['apply_version']) : '',
            'desc'                  => isset($data['base']['desc']) ? $data['base']['desc'] : '',
            'author'                => isset($data['base']['author']) ? htmlentities($data['base']['author']) : '',
            'author_url'            => isset($data['base']['author_url']) ? htmlentities($data['base']['author_url']) : '',
            'element'               => isset($data['element']) ? $data['element'] : [],
            'logo'                  => '',
            'is_enable'             => 0,
            'is_open_user'          => 0,
            'is_install'            => 0,
            'apply_terminal'        => empty($data['base']['apply_terminal']) ? array_column(lang('common_platform_type'), 'value') : $data['base']['apply_terminal'],
            'config'                => '',
D
v1.2.0  
devil_gong 已提交
180 181 182 183 184 185 186 187 188 189 190 191
        ];
    }

    /**
     * 支付方式列表
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-19
     * @desc    description
     * @param   [array]          $params [输入参数]
     */
192
    public static function PaymentList($params = [])
D
v1.2.0  
devil_gong 已提交
193 194 195 196 197 198 199 200 201 202 203
    {
        $where = empty($params['where']) ? [] : $params['where'];
        if(isset($params['is_enable']))
        {
            $where['is_enable'] = intval($params['is_enable']);
        }
        if(isset($params['is_open_user']))
        {
            $where['is_open_user'] = intval($params['is_open_user']);
        }

D
devil 已提交
204
        $data = Db::name('Payment')->where($where)->field('id,logo,name,sort,payment,config,apply_terminal,apply_terminal_old,element,is_enable,is_open_user')->order('sort asc')->select();
D
v1.2.0  
devil_gong 已提交
205 206 207 208 209
        if(!empty($data) && is_array($data))
        {
            foreach($data as &$v)
            {
                $v['logo_old'] = $v['logo'];
210
                $v['logo'] = ResourcesService::AttachmentPathViewHandle($v['logo']);
D
v1.2.0  
devil_gong 已提交
211 212 213
                $v['element'] = empty($v['element']) ? '' : json_decode($v['element'], true);
                $v['config'] = empty($v['config']) ? '' : json_decode($v['config'], true);
                $v['apply_terminal'] = empty($v['apply_terminal']) ? '' : json_decode($v['apply_terminal'], true);
D
devil 已提交
214
                $v['apply_terminal_old'] = empty($v['apply_terminal_old']) ? '' : json_decode($v['apply_terminal_old'], true);
D
v1.2.0  
devil_gong 已提交
215 216 217 218 219 220 221 222 223 224 225 226 227 228
            }
        }
        return $data;
    }

    /**
     * 获取支付方式列表
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-19
     * @desc    下订单根据终端自动筛选支付方式
     * @param   [array]          $params [输入参数]
     */
229
    public static function BuyPaymentList($params = [])
D
v1.2.0  
devil_gong 已提交
230
    {
231
        $data = self::PaymentList($params);
D
v1.2.0  
devil_gong 已提交
232 233 234 235 236 237 238 239
        $result = [];
        if(!empty($data))
        {
            foreach($data as $v)
            {
                // 根据终端类型筛选
                if(in_array(APPLICATION_CLIENT_TYPE, $v['apply_terminal']))
                {
D
devil 已提交
240
                    unset($v['config'], $v['element'], $v['apply_terminal'], $v['author'], $v['author_url'], $v['is_open_user'], $v['is_enable']);
D
v1.2.0  
devil_gong 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254
                    $result[] = $v;
                }
            }
        }
        return $result;
    }

    /**
     * 获取订单支付名称
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-19
     * @desc    description
D
Devil 已提交
255
     * @param   [int|array]      $business_ids       [业务订单id]
D
v1.2.0  
devil_gong 已提交
256
     */
D
Devil 已提交
257
    public static function OrderPaymentName($business_ids = 0)
D
v1.2.0  
devil_gong 已提交
258
    {
D
Devil 已提交
259
        if(empty($business_ids))
D
devil 已提交
260
        {
D
Devil 已提交
261 262 263 264 265 266 267 268 269 270 271 272 273
            return null;
        }

        // 参数处理查询数据
        if(is_array($business_ids))
        {
            $business_ids = array_filter(array_unique($business_ids));
        }
        if(!empty($business_ids))
        {
            $res = Db::name('PayLog')->alias('pl')->join(['__PAY_LOG_VALUE__'=>'plv'], 'pl.id=plv.pay_log_id')->where(['plv.business_id'=>$business_ids])->order('pl.id desc')->field('plv.business_id,pl.payment_name')->select();
            $data = [];
            if(!empty($res) && is_array($res))
D
devil 已提交
274
            {
D
Devil 已提交
275 276 277 278 279 280 281
                foreach($res as $v)
                {
                    if(!array_key_exists($v['business_id'], $data))
                    {
                        $data[$v['business_id']] = $v['payment_name'];
                    }
                }
D
devil 已提交
282 283
            }
        }
D
Devil 已提交
284 285 286 287 288 289 290

        // id数组则直接返回
        if(is_array($business_ids))
        {
            return empty($data) ? [] : $data;
        }
        return (!empty($data) && is_array($data) && array_key_exists($business_ids, $data)) ? $data[$business_ids] : null;
D
v1.2.0  
devil_gong 已提交
291 292 293 294 295 296 297 298 299 300 301
    }

    /**
     * 数据更新
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-12-19
     * @desc    description
     * @param   [array]          $params [输入参数]
     */
302
    public static function PaymentUpdate($params = [])
D
v1.2.0  
devil_gong 已提交
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
    {
        // 请求类型
        $p = [
            [
                'checked_type'      => 'empty',
                'key_name'          => 'id',
                'error_msg'         => '操作id有误',
            ],
            [
                'checked_type'      => 'length',
                'key_name'          => 'name',
                'checked_data'      => '2,60',
                'error_msg'         => '名称长度 2~60 个字符',
            ],
            [
                'checked_type'      => 'empty',
                'key_name'          => 'apply_terminal',
                'error_msg'         => '至少选择一个适用终端',
            ],
            [
                'checked_type'      => 'length',
                'key_name'          => 'sort',
                'checked_data'      => '3',
                'error_msg'         => '顺序 0~255 之间的数值',
            ],
        ];
        $ret = ParamsChecked($params, $p);
        if($ret !== true)
        {
            return DataReturn($ret, -1);
        }

        // 附件
        $data_fields = ['logo'];
        $attachment = ResourcesService::AttachmentParams($params, $data_fields);

        // 数据
        $data = [
            'name'              => $params['name'],
            'apply_terminal'    => empty($params['apply_terminal']) ? '' : json_encode(explode(',', $params['apply_terminal'])),
            'logo'              => $attachment['data']['logo'],
344
            'config'            => json_encode(self::GetPlugConfig($params)),
D
v1.2.0  
devil_gong 已提交
345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
            'sort'              => intval($params['sort']),
            'is_enable'         => isset($params['is_enable']) ? intval($params['is_enable']) : 0,
            'is_open_user'      => isset($params['is_open_user']) ? intval($params['is_open_user']) : 0,
        ];

        $data['upd_time'] = time();
        if(Db::name('Payment')->where(['id'=>intval($params['id'])])->update($data))
        {
            return DataReturn('编辑成功', 0);
        }
        return DataReturn('编辑失败', -100); 
    }

    /**
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-18
     * @desc    description
     * @param   [array]          $params [输入参数]
     */
366
    private static function GetPlugConfig($params = [])
D
v1.2.0  
devil_gong 已提交
367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386
    {
        $data = [];
        foreach($params as $k=>$v)
        {
            if(substr($k, 0, 8) == 'plugins_')
            {
                $data[substr($k, 8)] = $v;
            }
        }
        return $data;
    }

    /**
     * 状态更新
     * @author   Devil
     * @blog     http://gong.gg/
     * @version  0.0.1
     * @datetime 2016-12-06T21:31:53+0800
     * @param    [array]          $params [输入参数]
     */
387
    public static function PaymentStatusUpdate($params = [])
D
v1.2.0  
devil_gong 已提交
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
    {
        // 请求参数
        $p = [
            [
                'checked_type'      => 'empty',
                'key_name'          => 'id',
                'error_msg'         => '操作id有误',
            ],
            [
                'checked_type'      => 'empty',
                'key_name'          => 'field',
                'error_msg'         => '未指定操作字段',
            ],
            [
                'checked_type'      => 'in',
                'key_name'          => 'state',
                'checked_data'      => [0,1],
                'error_msg'         => '状态有误',
            ],
        ];
        $ret = ParamsChecked($params, $p);
        if($ret !== true)
        {
            return DataReturn($ret, -1);
        }

        // 数据更新
        if(Db::name('Payment')->where(['payment'=>$params['id']])->update([$params['field']=>intval($params['state']), 'upd_time'=>time()]))
        {
            return DataReturn('操作成功');
        }
        return DataReturn('操作失败', -100);
    }

    /**
     * 权限校验
     * @author   Devil
     * @blog     http://gong.gg/
     * @version  1.0.0
     * @datetime 2018-09-29T00:01:49+0800
     */
429
    private static function PowerCheck()
D
v1.2.0  
devil_gong 已提交
430 431
    {
        // 入口文件目录
432
        if(!is_writable(self::$dir_root_path))
D
v1.2.0  
devil_gong 已提交
433
        {
434
            return DataReturn('目录没有操作权限'.'['.self::$dir_root_path.']', -3);
D
v1.2.0  
devil_gong 已提交
435 436 437
        }

        // 插件权限
438
        if(!is_writable(self::$payment_dir))
D
v1.2.0  
devil_gong 已提交
439
        {
D
devil_gong 已提交
440
            return DataReturn('目录没有操作权限'.'['.self::$payment_dir.']', -4);
D
v1.2.0  
devil_gong 已提交
441
        }
D
devil 已提交
442 443

        return DataReturn('验证成功', 0);
D
v1.2.0  
devil_gong 已提交
444 445 446 447 448 449 450 451 452 453 454
    }

    /**
     * 上传插件
     * @author  Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-17
     * @desc    description
     * @param   [array]          $params [输入参数]
     */
455
    public static function Upload($params = [])
D
v1.2.0  
devil_gong 已提交
456 457
    {
        // 初始化
458
        self::Init();
D
v1.2.0  
devil_gong 已提交
459 460

        // 权限
461
        $ret = self::PowerCheck();
D
v1.2.0  
devil_gong 已提交
462 463 464 465 466 467 468 469 470 471 472 473 474
        if($ret['code'] != 0)
        {
            return $ret;
        }

        // 文件上传校验
        $error = FileUploadError('file');
        if($error !== true)
        {
            return DataReturn($error, -1);
        }

        // 文件格式化校验
G
gongfuxiang 已提交
475
        $type = array('application/zip', 'application/octet-stream', 'application/x-zip-compressed');
D
v1.2.0  
devil_gong 已提交
476 477
        if(!in_array($_FILES['file']['type'], $type))
        {
G
gongfuxiang 已提交
478
            return DataReturn('文件格式有误,请上传zip压缩包', -2);
D
v1.2.0  
devil_gong 已提交
479 480
        }

G
gongfuxiang 已提交
481 482 483
        // 开始解压文件
        $resource = zip_open($_FILES['file']['tmp_name']);
        if(!is_resource($resource))
D
v1.2.0  
devil_gong 已提交
484
        {
G
gongfuxiang 已提交
485
            return DataReturn('压缩包打开失败['.$resource.']', -10);
D
v1.2.0  
devil_gong 已提交
486 487
        }

G
gongfuxiang 已提交
488 489 490
        $success = 0;
        $error = 0;
        while(($temp_resource = zip_read($resource)) !== false)
D
v1.2.0  
devil_gong 已提交
491
        {
G
gongfuxiang 已提交
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
            if(zip_entry_open($resource, $temp_resource))
            {
                // 当前压缩包中项目名称
                $file = zip_entry_name($temp_resource);

                // 排除临时文件和临时目录
                if(strpos($file, '/.') === false && strpos($file, '__') === false)
                {
                    // 忽略非php文件
                    if(substr($file, -4) != '.php')
                    {
                        $error++;
                        continue;
                    }

                    // 文件名称
                    $payment = str_replace(array('.', '/', '\\', ':'), '', substr($file, 0, -4));

                    // 是否已有存在插件
                    if(file_exists(self::$payment_dir.$payment))
                    {
                        $error++;
                        continue;
                    } else {
                        $file = self::$payment_dir.$payment.'.php';
                    }

                    // 如果不是目录则写入文件
                    if(!is_dir($file))
                    {
                        // 读取这个文件
                        $file_size = zip_entry_filesize($temp_resource);
                        $file_content = zip_entry_read($temp_resource, $file_size);
                        if(@file_put_contents($file, $file_content) !== false)
                        {
                            // 文件校验
                            $config = self::GetPaymentConfig($payment);
                            if($config === false)
                            {
                                $error++;
                                @unlink($file);
                            } else {
                                $success++;
                            }
                        }
                    }
                }
            }
D
v1.2.0  
devil_gong 已提交
540 541
        }

G
gongfuxiang 已提交
542
        if($success > 0)
D
v1.2.0  
devil_gong 已提交
543
        {
G
gongfuxiang 已提交
544
            return DataReturn('上传成功[成功'.$success.'个, 失败'.$error.'个]', 0);
D
v1.2.0  
devil_gong 已提交
545
        }
G
gongfuxiang 已提交
546
        return DataReturn('上传失败'.$error.'个', -10);
D
v1.2.0  
devil_gong 已提交
547 548 549 550 551 552 553 554 555 556 557
    }

    /**
     * 安装
     * @author  Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-17
     * @desc    description
     * @param   [array]          $params [输入参数]
     */
558
    public static function Install($params = [])
D
v1.2.0  
devil_gong 已提交
559 560
    {
        // 初始化
561
        self::Init();
D
v1.2.0  
devil_gong 已提交
562 563 564 565 566 567 568 569 570

        // 参数
        if(empty($params['id']))
        {
            return DataReturn('参数错误', -1);
        }

        // 数据处理
        $payment = $params['id'];
571
        $config = self::GetPaymentConfig($payment);
D
v1.2.0  
devil_gong 已提交
572 573
        if($config !== false)
        {
574
            $data = self::DataAnalysis($config);
D
devil 已提交
575
            $apply_terminal = empty($data['apply_terminal']) ? '' : json_encode($data['apply_terminal']);
D
v1.2.0  
devil_gong 已提交
576 577
            $data['payment'] = $payment;
            $data['element'] = empty($data['element']) ? '' : json_encode($data['element']);
D
devil 已提交
578 579
            $data['apply_terminal_old'] = $apply_terminal;
            $data['apply_terminal'] = $apply_terminal;
D
v1.2.0  
devil_gong 已提交
580 581 582 583 584 585 586 587 588 589
            $data['sort'] = 0;
            $data['add_time'] = time();

            // 移除多余的字段
            unset($data['is_install']);

            // 开启事务
            Db::startTrans();
            if(Db::name('Payment')->insertGetId($data) > 0)
            {
D
devil_gong 已提交
590 591 592 593
                // 提交事务
                Db::commit();

               return DataReturn('安装成功'); 
D
v1.2.0  
devil_gong 已提交
594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
            } else {
                // 事务回滚
                Db::rollback();
                return DataReturn('安装失败', -100);
            }
        } else {
            return DataReturn('插件配置有误', -10);
        }
    }

    /**
     * 删除插件
     * @author  Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-17
     * @desc    description
     * @param   [array]          $params [输入参数]
     */
613
    public static function Delete($params = [])
D
v1.2.0  
devil_gong 已提交
614 615
    {
        // 初始化
616
        self::Init();
D
v1.2.0  
devil_gong 已提交
617 618

        // 权限
619
        $ret = self::PowerCheck();
D
v1.2.0  
devil_gong 已提交
620 621 622 623 624 625 626 627 628 629 630 631 632
        if($ret['code'] != 0)
        {
            return $ret;
        }

        // 参数
        if(empty($params['id']))
        {
            return DataReturn('参数错误', -1);
        }

        // 是否禁止删除
        $payment = $params['id'];
633
        if(in_array($payment, self::$cannot_deleted_list))
D
v1.2.0  
devil_gong 已提交
634 635 636 637 638
        {
            return DataReturn('该支付方式禁止删除', -10);
        }

        // 是否存在
639
        $file = self::$payment_dir.$payment.'.php';
D
v1.2.0  
devil_gong 已提交
640 641 642 643 644 645 646 647
        if(!file_exists($file))
        {
            return DataReturn('资源不存在或已被删除', -2);
        }

        // 权限
        if(!is_writable($file))
        {
D
devil_gong 已提交
648
            return DataReturn('没操作权限['.$file.']', -3);
D
v1.2.0  
devil_gong 已提交
649 650 651 652 653 654 655 656 657
        }

        // 删除
        if(!@unlink($file))
        {
            return DataReturn('删除失败', -100);
        }

        // 删除入口文件
D
devil_gong 已提交
658
        self::PaymentEntranceDelete(['payment' => $payment]);
D
v1.2.0  
devil_gong 已提交
659 660 661 662 663 664 665 666 667 668 669 670 671

        return DataReturn('删除成功');
    }

    /**
     * 卸载
     * @author  Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-09-17
     * @desc    description
     * @param   [array]          $params [输入参数]
     */
672
    public static function Uninstall($params = [])
D
v1.2.0  
devil_gong 已提交
673 674 675 676 677 678 679 680
    {
        // 参数
        if(empty($params['id']))
        {
            return DataReturn('参数错误', -1);
        }

        // 初始化
681
        self::Init();
D
v1.2.0  
devil_gong 已提交
682 683 684 685 686 687

        // 开始卸载
        $payment = $params['id'];
        if(db('Payment')->where(['payment'=>$payment])->delete())
        {
            // 删除入口文件
D
devil_gong 已提交
688
            self::PaymentEntranceDelete(['payment' => $payment]);
D
v1.2.0  
devil_gong 已提交
689 690 691 692 693 694 695

            return DataReturn('卸载成功', 0);
        }
        return DataReturn('卸载失败', -100);
    }

    /**
D
devil_gong 已提交
696
     * 入口文件创建
D
v1.2.0  
devil_gong 已提交
697 698 699 700
     * @author   Devil
     * @blog     http://gong.gg/
     * @version  1.0.0
     * @datetime 2018-09-28T23:38:52+0800
D
devil_gong 已提交
701 702 703 704 705 706
     * @param    [array]            $params                 [输入参数]
     * @param    [string]           $params['payment']      [支付唯一标记]
     * @param    [array]            $params['business']     [处理业务, 默认配置文件读取]
     * @param    [array]            $params['not_notify']   [不生成异步入口]
     * @param    [string]           $params['respond']      [同步参数值]
     * @param    [string]           $params['notify']       [异步参数值]
D
v1.2.0  
devil_gong 已提交
707
     */
D
devil_gong 已提交
708
    public static function PaymentEntranceCreated($params = [])
D
v1.2.0  
devil_gong 已提交
709
    {
D
devil_gong 已提交
710 711 712
        // 初始化
        self::Init();

D
devil_gong 已提交
713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
        // 参数
        $p = [
            [
                'checked_type'      => 'empty',
                'key_name'          => 'payment',
                'error_msg'         => '支付唯一标记不能为空',
            ],
            [
                'checked_type'      => 'empty',
                'key_name'          => 'respond',
                'error_msg'         => '支付同步地址参数不能为空',
            ],
            [
                'checked_type'      => 'empty',
                'key_name'          => 'notify',
                'error_msg'         => '支付异步地址参数不能为空',
            ],
        ];
        $ret = ParamsChecked($params, $p);
        if($ret !== true)
        {
            return DataReturn($ret, -1);
        }

D
v1.2.0  
devil_gong 已提交
737
        // 权限
738
        $ret = self::PowerCheck();
D
v1.2.0  
devil_gong 已提交
739 740 741 742
        if($ret['code'] != 0)
        {
            return $ret;
        }
D
devil_gong 已提交
743

D
devil_gong 已提交
744 745 746 747 748 749 750 751 752 753 754
        if(empty($params['payment']))
        {
            return '支付唯一标记不能为空';
        }

        // 不生成异步入口
        $not_notify = empty($params['not_notify']) ? config('shopxo.under_line_list') : $params['not_notify'];

        // 处理业务
        $business_all = empty($params['business']) ? self::$payment_business_type_all : $params['business'];

D
v1.2.0  
devil_gong 已提交
755
        // 批量创建
D
devil_gong 已提交
756
        foreach($business_all as $v)
D
v1.2.0  
devil_gong 已提交
757
        {
D
devil_gong 已提交
758
            $business_name = strtolower($v['name']);
D
v1.2.0  
devil_gong 已提交
759 760 761 762 763 764 765 766 767 768 769
            if(defined('IS_ROOT_ACCESS'))
            {
// 异步
$notify=<<<php
<?php

/**
 * {$v['desc']}支付异步入口
 */

// 默认绑定模块
D
devil_gong 已提交
770
\$_GET['s'] = '{$params["notify"]}';
D
v1.2.0  
devil_gong 已提交
771 772

// 支付模块标记
D
devil_gong 已提交
773
define('PAYMENT_TYPE', '{$params["payment"]}');
D
v1.2.0  
devil_gong 已提交
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791

// 根目录入口
define('IS_ROOT_ACCESS', true);

// 引入公共入口文件
require './public/index.php';
?>
php;

// 同步
$respond=<<<php
<?php

/**
 * {$v['desc']}支付同步入口
 */

// 默认绑定模块
D
devil_gong 已提交
792
\$_GET['s'] = '{$params["respond"]}';
D
v1.2.0  
devil_gong 已提交
793 794

// 支付模块标记
D
devil_gong 已提交
795
define('PAYMENT_TYPE', '{$params["payment"]}');
D
v1.2.0  
devil_gong 已提交
796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815

// 根目录入口
define('IS_ROOT_ACCESS', true);

// 引入公共入口文件
require './public/index.php';
?>
php;

            } else {

// 异步
$notify=<<<php
<?php

/**
 * {$v['desc']}支付异步入口
 */

// 默认绑定模块
D
devil_gong 已提交
816
\$_GET['s'] = '{$params["notify"]}';
D
v1.2.0  
devil_gong 已提交
817 818

// 支付模块标记
D
devil_gong 已提交
819
define('PAYMENT_TYPE', '{$params["payment"]}');
D
v1.2.0  
devil_gong 已提交
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834

// 引入入口文件
require __DIR__.'/index.php';
?>
php;

// 同步
$respond=<<<php
<?php

/**
 * {$v['desc']}支付同步入口
 */

// 默认绑定模块
D
devil_gong 已提交
835
\$_GET['s'] = '{$params["respond"]}';
D
v1.2.0  
devil_gong 已提交
836 837

// 支付模块标记
D
devil_gong 已提交
838
define('PAYMENT_TYPE', '{$params["payment"]}');
D
v1.2.0  
devil_gong 已提交
839 840 841 842 843 844 845

// 引入入口文件
require __DIR__.'/index.php';
?>
php;
            }

D
devil_gong 已提交
846
            @file_put_contents(self::$dir_root_path.'payment_'.$business_name.'_'.strtolower($params['payment']).'_respond.php', $respond);
D
v1.2.0  
devil_gong 已提交
847 848

            // 线下支付不生成异步入口文件
D
devil_gong 已提交
849
            if(!in_array($params['payment'], $not_notify))
D
v1.2.0  
devil_gong 已提交
850
            {
D
devil_gong 已提交
851
                @file_put_contents(self::$dir_root_path.'payment_'.$business_name.'_'.strtolower($params['payment']).'_notify.php', $notify);
D
v1.2.0  
devil_gong 已提交
852 853 854 855 856 857 858 859 860 861 862 863
            }
        }

        return DataReturn('操作成功', 0);
    }

    /**
     * [PaymentEntranceDelete 入口文件删除]
     * @author   Devil
     * @blog     http://gong.gg/
     * @version  1.0.0
     * @datetime 2018-09-28T23:38:52+0800
D
devil_gong 已提交
864 865 866
     * @param    [array]            $params                 [输入参数]
     * @param    [string]           $params['payment']      [支付唯一标记]
     * @param    [array]            $params['business']     [处理业务, 默认配置文件读取]
D
v1.2.0  
devil_gong 已提交
867
     */
D
devil_gong 已提交
868
    public static function PaymentEntranceDelete($params = [])
D
v1.2.0  
devil_gong 已提交
869
    {
D
devil_gong 已提交
870 871 872
        // 初始化
        self::Init();

D
v1.2.0  
devil_gong 已提交
873
        // 权限
874
        $ret = self::PowerCheck();
D
v1.2.0  
devil_gong 已提交
875 876 877 878
        if($ret['code'] != 0)
        {
            return $ret;
        }
D
devil_gong 已提交
879 880 881 882 883 884 885
        if(empty($params['payment']))
        {
            return '支付唯一标记不能为空';
        }

        // 处理业务
        $business_all = empty($params['business']) ? self::$payment_business_type_all : $params['business'];
D
v1.2.0  
devil_gong 已提交
886

D
devil_gong 已提交
887 888
        $payment = strtolower($params['payment']);
        foreach($business_all as $v)
D
v1.2.0  
devil_gong 已提交
889
        {
D
devil_gong 已提交
890 891
            $business_name = strtolower($v['name']);
            if(file_exists(self::$dir_root_path.'payment_'.$business_name.'_'.$payment.'_notify.php'))
D
v1.2.0  
devil_gong 已提交
892
            {
D
devil_gong 已提交
893
                @unlink(self::$dir_root_path.'payment_'.$business_name.'_'.$payment.'_notify.php');
D
v1.2.0  
devil_gong 已提交
894
            }
D
devil_gong 已提交
895
            if(file_exists(self::$dir_root_path.'payment_'.$business_name.'_'.$payment.'_respond.php'))
D
v1.2.0  
devil_gong 已提交
896
            {
D
devil_gong 已提交
897
                @unlink(self::$dir_root_path.'payment_'.$business_name.'_'.$payment.'_respond.php');
D
v1.2.0  
devil_gong 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
            }
        }

        return DataReturn('操作成功', 0);
    }

    /**
     * 入库文件检查
     * @author   Devil
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-12-26
     * @desc    description
     * @param   [string]          $payment [支付标记]
     * @param   [string]          $name    [支付业务方式名称]
     */
914
    public static function EntranceFileChecked($payment, $name)
D
v1.2.0  
devil_gong 已提交
915 916
    {
        // 同步返回文件
917
        if(!file_exists(self::$dir_root_path.'payment_'.strtolower($name).'_'.strtolower($payment).'_respond.php'))
D
v1.2.0  
devil_gong 已提交
918 919 920 921 922
        {
            return DataReturn('支付返回入口文件不存在,请联系管理员处理', -10);
        }

        // 线下支付不生成异步入口文件
D
devil_gong 已提交
923
        if(!in_array($payment, config('shopxo.under_line_list')))
D
v1.2.0  
devil_gong 已提交
924
        {
925
            if(!file_exists(self::$dir_root_path.'payment_'.strtolower($name).'_'.strtolower($payment).'_notify.php'))
D
v1.2.0  
devil_gong 已提交
926 927 928 929 930 931 932 933
            {
                return DataReturn('支付通知入口文件不存在,请联系管理员处理', -10);
            }
        }
        return DataReturn('校验成功', 0);
    }
}
?>