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

/**
14
 * 应用调用入口
G
1.3.0  
gongfuxiang 已提交
15 16 17 18 19 20 21 22 23 24
 * @author   Devil
 * @blog     http://gong.gg/
 * @version  0.0.1
 * @datetime 2016-12-01T21:51:08+0800
 */
class Plugins extends Common
{
    /**
     * 构造方法
     * @author   Devil
25 26 27 28
     * @blog    http://gong.gg/
     * @version 1.0.0
     * @date    2018-11-30
     * @desc    description
G
1.3.0  
gongfuxiang 已提交
29 30 31 32 33 34
     */
    public function __construct()
    {
        parent::__construct();

        // 登录校验
D
devil_gong 已提交
35
        $this->IsLogin();
G
1.3.0  
gongfuxiang 已提交
36 37

        // 权限校验
D
devil_gong 已提交
38
        $this->IsPower();
G
1.3.0  
gongfuxiang 已提交
39
    }
40
    
G
1.3.0  
gongfuxiang 已提交
41
    /**
42
     * [Index 首页]
G
1.3.0  
gongfuxiang 已提交
43 44 45
     * @author   Devil
     * @blog     http://gong.gg/
     * @version  0.0.1
46
     * @datetime 2017-02-22T16:50:32+0800
G
1.3.0  
gongfuxiang 已提交
47 48 49 50 51 52
     */
    public function Index()
    {
        // 参数
        $params = input();

53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
        // 请求参数校验
        $p = [
            [
                'checked_type'      => 'empty',
                'key_name'          => 'pluginsname',
                'error_msg'         => '应用名称有误',
            ],
            [
                'checked_type'      => 'empty',
                'key_name'          => 'pluginscontrol',
                'error_msg'         => '应用控制器有误',
            ],
            [
                'checked_type'      => 'empty',
                'key_name'          => 'pluginsaction',
                'error_msg'         => '应用操作方法有误',
            ],
        ];
        $ret = ParamsChecked($params, $p);
        if($ret !== true)
D
devil_gong 已提交
73
        {
74 75 76 77 78 79 80 81
            if(IS_AJAX)
            {
                return DataReturn($ret, -5000);
            } else {
                $this->assign('msg', $ret);
                return $this->fetch('public/error');
            }
        }
D
devil_gong 已提交
82

83 84 85 86
        // 应用名称/控制器/方法
        $pluginsname = $params['pluginsname'];
        $pluginscontrol = strtolower($params['pluginscontrol']);
        $pluginsaction = strtolower($params['pluginsaction']);
G
1.3.0  
gongfuxiang 已提交
87

88 89
        // 视图初始化
        $this->PluginsViewInit($pluginsname, $pluginscontrol, $pluginsaction);
G
1.3.0  
gongfuxiang 已提交
90

91 92
        // 编辑器文件存放地址定义
        $this->assign('editor_path_type', 'plugins_'.$pluginsname);
G
1.3.0  
gongfuxiang 已提交
93

D
devil_gong 已提交
94
        // 应用控制器
95
        $plugins = '\app\plugins\\'.$pluginsname.'\\'.ucfirst($pluginscontrol);
D
devil_gong 已提交
96 97
        if(!class_exists($plugins))
        {
D
devil_gong 已提交
98
            $this->assign('msg', ucfirst($pluginscontrol).' 应用控制器未定义');
D
devil_gong 已提交
99 100 101 102 103 104 105
            return $this->fetch('public/error');
        }

        // 调用方法
        $obj = new $plugins();
        if(!method_exists($obj, $pluginsaction))
        {
D
devil_gong 已提交
106
            $this->assign('msg', ucfirst($pluginsaction).' 应用方法未定义');
D
devil_gong 已提交
107 108
            return $this->fetch('public/error');
        }
D
devil_gong 已提交
109
        return $obj->$pluginsaction($params);
G
1.3.0  
gongfuxiang 已提交
110
    }
G
gongfuxiang 已提交
111 112

    /**
113
     * 视图初始化
G
gongfuxiang 已提交
114 115
     * @author   Devil
     * @blog     http://gong.gg/
116 117 118 119 120
     * @version  1.0.0
     * @datetime 2019-02-07T22:46:29+0800
     * @param    [string]                   $plugins_name       [应用名称]
     * @param    [string]                   $plugins_control    [控制器名称]
     * @param    [string]                   $plugins_action     [方法]
G
gongfuxiang 已提交
121
     */
122
    public function PluginsViewInit($plugins_name, $plugins_control, $plugins_action)
G
gongfuxiang 已提交
123
    {
124 125
        // 当前操作名称
        $module_name = 'plugins';
G
gongfuxiang 已提交
126

127 128 129 130 131 132 133 134
        // 控制器静态文件状态css,js
        $module_css = $module_name.DS.'css'.DS.$plugins_name.DS.$plugins_control;
        $module_css .= file_exists(ROOT_PATH.'static'.DS.$module_css.'.'.$plugins_action.'.css') ? '.'.$plugins_action.'.css' : '.css';
        $this->assign('module_css', file_exists(ROOT_PATH.'static'.DS.$module_css) ? $module_css : '');

        $module_js = $module_name.DS.'js'.DS.$plugins_name.DS.$plugins_control;
        $module_js .= file_exists(ROOT_PATH.'static'.DS.$module_js.'.'.$plugins_action.'.js') ? '.'.$plugins_action.'.js' : '.js';
        $this->assign('module_js', file_exists(ROOT_PATH.'static'.DS.$module_js) ? $module_js : '');
G
gongfuxiang 已提交
135
    }
G
1.3.0  
gongfuxiang 已提交
136 137
}
?>