Files
shopxo/app/admin/controller/Payment.php

178 lines
4.7 KiB
PHP
Raw Normal View History

2018-12-28 18:58:37 +08:00
<?php
// +----------------------------------------------------------------------
// | ShopXO 国内领先企业级B2C免费开源电商系统
// +----------------------------------------------------------------------
2021-03-16 10:34:52 +08:00
// | Copyright (c) 2011~2099 http://shopxo.net All rights reserved.
2018-12-28 18:58:37 +08:00
// +----------------------------------------------------------------------
2021-03-16 10:34:52 +08:00
// | Licensed ( https://opensource.org/licenses/mit-license.php )
2018-12-28 18:58:37 +08:00
// +----------------------------------------------------------------------
// | Author: Devil
// +----------------------------------------------------------------------
namespace app\admin\controller;
use app\admin\controller\Base;
use app\service\ApiService;
use app\service\PaymentService;
2020-01-16 15:01:30 +08:00
use app\service\StoreService;
2021-01-27 22:21:04 +08:00
use app\service\ResourcesService;
2018-12-28 18:58:37 +08:00
/**
* 支付方式管理
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-01T21:51:08+0800
*/
class Payment extends Base
2018-12-28 18:58:37 +08:00
{
/**
* 列表
2018-12-28 18:58:37 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-06T21:31:53+0800
*/
public function Index()
{
2022-09-01 15:14:08 +08:00
// 插件列表
$payment = PaymentService::PluginsPaymentList();
// 模板数据
$assign = [
2022-09-01 15:14:08 +08:00
// 支付插件列表
'data_list' => empty($payment['data']) ? [] : $payment['data'],
// 不能删除的支付方式
'cannot_deleted_list' => PaymentService::$cannot_deleted_list,
2018-12-28 18:58:37 +08:00
// 适用平台
'common_platform_type' => MyConst('common_platform_type'),
2018-12-28 18:58:37 +08:00
// 应用商店
'store_payment_url' => StoreService::StorePaymentUrl(),
];
2020-01-16 15:01:30 +08:00
2021-04-23 16:43:23 +08:00
// 插件更新信息
2022-09-01 15:14:08 +08:00
$upgrade = PaymentService::PaymentUpgradeInfo($payment['data']);
$assign['upgrade_info'] = $upgrade['data'];
2021-04-23 16:43:23 +08:00
// 数据赋值
MyViewAssign($assign);
2021-07-18 23:42:10 +08:00
return MyView();
2018-12-28 18:58:37 +08:00
}
/**
* 添加/编辑页面
2018-12-28 18:58:37 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-14T21:37:02+0800
*/
public function SaveInfo()
{
2022-08-02 17:23:10 +08:00
$data = [];
if(!empty($this->data_request['id']))
2018-12-28 18:58:37 +08:00
{
$data_params = [
2022-08-02 17:23:10 +08:00
'where' => ['id'=>$this->data_request['id']],
2018-12-28 18:58:37 +08:00
'm' => 0,
'n' => 1,
];
$data = PaymentService::PaymentList($data_params);
2022-08-02 17:23:10 +08:00
if(!empty($data) && !empty($data[0]))
2018-12-28 18:58:37 +08:00
{
2022-08-02 17:23:10 +08:00
$data = $data[0];
2018-12-28 18:58:37 +08:00
}
}
// 模板数据
$assign = [
2022-08-28 14:08:09 +08:00
// 当前数据
'data' => $data,
2018-12-28 18:58:37 +08:00
// 适用平台
'common_platform_type' => MyConst('common_platform_type'),
2018-12-28 18:58:37 +08:00
// 编辑器文件存放地址
'editor_path_type' => ResourcesService::EditorPathTypeValue('payment'),
];
MyViewAssign($assign);
2021-07-18 23:42:10 +08:00
return MyView();
2018-12-28 18:58:37 +08:00
}
/**
* 保存
2018-12-28 18:58:37 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2016-12-25T22:36:12+0800
*/
public function Save()
{
return ApiService::ApiDataReturn(PaymentService::PaymentUpdate($this->data_request));
2018-12-28 18:58:37 +08:00
}
/**
* 状态更新
2018-12-28 18:58:37 +08:00
* @author Devil
* @blog http://gong.gg/
* @version 0.0.1
* @datetime 2017-01-12T22:23:06+0800
*/
public function StatusUpdate()
{
return ApiService::ApiDataReturn(PaymentService::PaymentStatusUpdate($this->data_request));
2018-12-28 18:58:37 +08:00
}
/**
* 安装
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-09-17
* @desc description
*/
public function Install()
{
return ApiService::ApiDataReturn(PaymentService::Install($this->data_request));
2018-12-28 18:58:37 +08:00
}
/**
* 卸载
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-09-17
* @desc description
*/
public function Uninstall()
{
return ApiService::ApiDataReturn(PaymentService::Uninstall($this->data_request));
2018-12-28 18:58:37 +08:00
}
/**
* 删除插件
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-09-17
* @desc description
*/
public function Delete()
{
return ApiService::ApiDataReturn(PaymentService::Delete($this->data_request));
2018-12-28 18:58:37 +08:00
}
/**
* 上传插件
* @author Devil
* @blog http://gong.gg/
* @version 1.0.0
* @date 2018-09-17
* @desc description
*/
public function Upload()
{
return ApiService::ApiDataReturn(PaymentService::Upload($this->data_request));
2018-12-28 18:58:37 +08:00
}
}
?>