* Date: 2018-4-3 */ namespace app\admin\controller; use app\admin\controller\Base; use think\Controller; use think\Db; use think\Page; use app\admin\logic\UpgradeLogic; use app\admin\logic\EyouCmsLogic; class Index extends Base { public $eyouCmsLogic; public function _initialize() { parent::_initialize(); $this->eyouCmsLogic = new EyouCmsLogic; //初始化admin_menu表(将原来左边栏目设置为跟原来一样) $ajaxLogic = new \app\admin\logic\AjaxLogic; $ajaxLogic->initialize_admin_menu(); } public function index() { // $dbtables = Db::query('SHOW TABLE STATUS'); // $list = array(); // foreach ($dbtables as $k => $v) { // if (preg_match('/^'.PREFIX.'/i', $v['Name'])) { // $list[$k] = $v; // } // } // $str = ''; // foreach ($list as $_k => $_v) { // $table = $_v['Name']; // $str .= $table.'|'; // $str2 = "|"; // $fields = Db::table($table)->getTableFields(); // foreach ($fields as $key => $value) { // if ($key == 0) { // $str .= "{$value}"; // } else { // $str .= ",{$value}"; // $str2 .= ";"; // } // } // $str = $str . $str2 . "|". PHP_EOL . PHP_EOL; // } // echo($str); // exit; $language_db = Db::name('language'); /*多语言列表*/ $web_language_switch = tpCache('global.web_language_switch'); $languages = []; $languages = $language_db->field('a.mark, a.title') ->alias('a') ->where('a.status',1) ->order('sort_order asc,id asc') ->getAllWithIndex('mark'); $this->assign('languages', $languages); $this->assign('web_language_switch', $web_language_switch); /*--end*/ $web_adminlogo = tpCache('web.web_adminlogo', [], $this->main_lang); $this->assign('web_adminlogo', handle_subdir_pic($web_adminlogo)); /*代理贴牌功能限制-s*/ $function_switch = $upgrade = true; if (function_exists('checkAuthRule')) { // 功能地图 $function_switch = checkAuthRule(2004008); // 系统更新 $upgrade = checkAuthRule('upgrade'); } $this->assign('function_switch', $function_switch); $this->assign('upgrade', $upgrade); /*代理贴牌功能限制-e*/ /*小程序开关*/ $diyminipro_list = []; if ($this->admin_lang == $this->main_lang) { $diyminipro_list = Db::name('weapp')->field('id,code,name,config')->where(['code'=>['IN',['Diyminipro','DiyminiproMall','BdDiyminipro','TtDiyminipro']],'status'=>1])->order('code desc')->select(); foreach ($diyminipro_list as $key => $val) { $val['config'] = (array)json_decode($val['config']); $val['litpic'] = empty($val['config']['litpic']) ? '' : handle_subdir_pic($val['config']['litpic']); if ('Diyminipro' == $val['code']) { $val['name'] = '微信企业小程序'; } else if ('DiyminiproMall' == $val['code']) { $val['name'] = '微信商城小程序'; } else if ('BdDiyminipro' == $val['code']) { $val['name'] = '百度企业小程序'; } else if ('TtDiyminipro' == $val['code']) { $val['name'] = '抖音企业小程序'; } $diyminipro_list[$key] = $val; } } $this->assign('diyminipro_list', $diyminipro_list); /*end*/ //获取前台入口链接 $this->assign('home_url', $this->eyouCmsLogic->shouye($this->globalConfig)); /*--end*/ $this->assign('admin_info', getAdminInfo(session('admin_id'))); //左侧菜单列表(old) // $this->assign('menu',getMenuList()); //获取所有权限 $all_menu_tree = getAllMenu(); $all_menu_list = tree_to_list($all_menu_tree,'child','id'); $this->assign('all_menu_list',$all_menu_list); //获取选中的权限 $ajaxLogic = new \app\admin\logic\AjaxLogic; $ajaxLogic->admin_menu_clear(); // $ajaxLogic->eyou_v165_del_func(); $menu_list = Db::name("admin_menu")->where(['status'=>1,'is_menu'=>1])->order("sort_order asc,update_time asc,id asc")->select(); foreach ($menu_list as $key => $val) { if (stristr($val['param'], '|sm|Diyminipro|')) { $val['title'] = '微信企业小程序'; } else if (stristr($val['param'], '|sm|DiyminiproMall|')) { $val['title'] = '微信商城小程序'; } else if (stristr($val['param'], '|sm|BdDiyminipro|')) { $val['title'] = '百度企业小程序'; } else if (stristr($val['param'], '|sm|TtDiyminipro|')) { $val['title'] = '抖音企业小程序'; } $menu_list[$key] = $val; // 其他语言不显示留言管理 /*if ($this->admin_lang != $this->main_lang) { foreach ([2004018] as $_k => $_v) { if ($_v == $val['menu_id']) { unset($menu_list[$key]); } } }*/ } $menu_list = getAdminMenuList($menu_list); $this->assign('menu_list',$menu_list); //获取因为没有开启相关模块没有权限的节点 $not_role_menu_id_arr = get_not_role_menu_id(); $this->assign('not_role_menu_id_arr',$not_role_menu_id_arr); // 是否开启安全补丁 $security_patch = tpSetting('upgrade.upgrade_security_patch'); if (empty($security_patch)) $security_patch = 0; $this->assign('security_patch', $security_patch); // 统计未读的站内信数量 action('admin/Notify/count_unread_notify'); return $this->fetch(); } public function welcome() { $assign_data = []; // 更新数据缓存表信息 $this->update_sql_cache_table(); /*小程序组件更新*/ $assign_data['is_update_component_access'] = 1; if (!is_dir('./weapp/Diyminipro/') || $this->admin_lang != $this->main_lang) { $assign_data['is_update_component_access'] = 0; } /*end*/ // 纠正上传附件的大小,始终以空间大小为准 $file_size = $this->globalConfig['file_size']; $maxFileupload = @ini_get('file_uploads') ? ini_get('upload_max_filesize') : 0; $maxFileupload = intval($maxFileupload); if (empty($file_size) || $file_size > $maxFileupload) { /*多语言*/ if (is_language()) { $langRow = Db::name('language')->cache(true, EYOUCMS_CACHE_TIME, 'language') ->order('id asc') ->select(); foreach ($langRow as $key => $val) { tpCache('basic', ['file_size'=>$maxFileupload], $val['mark']); } } else { // 单语言 tpCache('basic', ['file_size'=>$maxFileupload]); } /*--end*/ } /*检查密码复杂度*/ $admin_login_pwdlevel = -1; $system_explanation_welcome_2 = !empty($this->globalConfig['system_explanation_welcome_2']) ? $this->globalConfig['system_explanation_welcome_2'] : 0; if (empty($system_explanation_welcome_2)) { $admin_login_pwdlevel = session('admin_login_pwdlevel'); if (!session('?admin_login_pwdlevel') || 3 < intval($admin_login_pwdlevel)) { $system_explanation_welcome_2 = 1; } } $assign_data['admin_login_pwdlevel'] = $admin_login_pwdlevel; $assign_data['system_explanation_welcome_2'] = $system_explanation_welcome_2; /*end*/ /*代理贴牌功能限制-s*/ $assign_data['upgrade'] = true; if (function_exists('checkAuthRule')) { //系统更新 $assign_data['upgrade'] = checkAuthRule('upgrade'); } /*代理贴牌功能限制-e*/ // 是否开启安全补丁 $assign_data['security_patch'] = (int)tpSetting('upgrade.upgrade_security_patch'); // 升级弹窗 if (2 == $this->globalConfig['web_show_popup_upgrade'] && $this->php_servicemeal <= 0) { $this->globalConfig['web_show_popup_upgrade'] = -1; } $assign_data['web_show_popup_upgrade'] = $this->globalConfig['web_show_popup_upgrade']; // 升级系统时,同时处理sql语句 $this->synExecuteSql(); $ajaxLogic = new \app\admin\logic\AjaxLogic; // $ajaxLogic->update_template('users'); // 升级前台会员中心的模板文件 $ajaxLogic->system_langnum_file(); // 记录当前是多语言还是单语言到文件里 $ajaxLogic->system_citysite_file(); // 记录当前是否多站点到文件里 $ajaxLogic->admin_logic_1609900642(); // 内置方法 // 纠正SQL缓存表结果字段类型(v1.6.1节点去掉--陈风任) $ajaxLogic->admin_logic_1623036205(); // 评价主表评分由原先的(好评、中评、差评)转至实际星评数(1、2、3、4、5)(v1.6.1节点去掉--陈风任) $ajaxLogic->admin_logic_1651114275(); //融合多商家模板升级数据库表、字段变动 $ajaxLogic->admin_logic_1658220528(); // 添加商城订单主表字段(消费获得积分数(obtain_scores);订单是否已赠送积分(is_obtain_scores)) $ajaxLogic->admin_logic_1677653220(); // 更新会员积分数据表,积分类型字段 type $ajaxLogic->admin_logic_1680749290(); // 纠正文章模型发布的文章数据中【付费预览】-【自动截取】的大小,由KB改为字节,article_pay表的size字段(1024字节=1KB) $ajaxLogic->admin_logic_1685094852(); // 运费模板数据同步--陈风任 $ajaxLogic->admin_logic_1687687709(); $viewfile = 'welcome'; $web_theme_welcome_tplname = empty($this->globalConfig['web_theme_welcome_tplname']) ? '' : $this->globalConfig['web_theme_welcome_tplname']; if (!empty($web_theme_welcome_tplname) && file_exists("application/admin/template/theme/{$web_theme_welcome_tplname}")) { $welcome_tplname = str_ireplace('.htm', '', $web_theme_welcome_tplname); $viewfile = "theme/{$welcome_tplname}"; } if (preg_match('/^(.*)\/welcome_shop$/i', $viewfile)) { // 商城版欢迎页主题 $this->eyouCmsLogic->welcome_shop($assign_data, $this->globalConfig, $this->usersConfig); } else if (preg_match('/^(.*)\/welcome_taskflow$/i', $viewfile)) { // 任务流版欢迎页主题 $this->eyouCmsLogic->welcome_taskflow($assign_data, $this->globalConfig, $this->usersConfig); } else { // 默认欢迎页主题 $this->eyouCmsLogic->welcome_default($assign_data, $this->globalConfig, $this->usersConfig); } $this->assign($assign_data); return $this->fetch($viewfile); } /** * 实时概况快捷导航管理 */ public function ajax_surveyquickmenu() { if (IS_AJAX_POST) { $checkedids = input('post.checkedids/a', []); if (count($checkedids) != 4){ $this->error('保存数量必须为4个'); } $ids = input('post.ids/a', []); $saveData = []; foreach ($ids as $key => $val) { if (in_array($val, $checkedids)) { $checked = 1; } else { $checked = 0; } $saveData[$key] = [ 'id' => $val, 'checked' => $checked, 'sort_order' => intval($key) + 1, 'update_time' => getTime(), ]; } if (!empty($saveData)) { $r = model('Quickentry')->saveAll($saveData); if ($r !== false) { $this->success('操作成功', url('Index/welcome')); } } $this->error('操作失败'); } $menuList = Db::name('quickentry')->where([ 'type' => 21, 'groups' => 1, 'status' => 1, ])->order('sort_order asc, id asc')->select(); $this->assign('menuList',$menuList); return $this->fetch(); } /** * 实时概况快捷导航管理 - 任务流版 */ public function ajax_surveyquickmenu_taskflow() { if (IS_AJAX_POST) { $checkedids = input('post.checkedids/a', []); $ids = input('post.ids/a', []); $saveData = []; foreach ($ids as $key => $val) { if (in_array($val, $checkedids)) { $checked = 1; } else { $checked = 0; } $saveData[$key] = [ 'id' => $val, 'checked' => $checked, 'sort_order' => intval($key) + 1, 'update_time' => getTime(), ]; } if (!empty($saveData)) { $r = model('Quickentry')->saveAll($saveData); if ($r !== false) { $this->success('操作成功', url('Index/welcome')); } } $this->error('操作失败'); } $menuList = Db::name('quickentry')->where([ 'type' => 31, 'groups' => 1, 'status' => 1, ])->order('sort_order asc, id asc')->select(); $this->assign('menuList',$menuList); return $this->fetch(); } /** * 升级系统时,同时处理sql语句 * @return [type] [description] */ private function synExecuteSql() { // 新增订单提醒的邮箱模板 if (!tpCache('global.system_smtp_tpl_5')){ /*多语言*/ if (is_language()) { $langRow = Db::name('language')->cache(true, EYOUCMS_CACHE_TIME, 'language') ->order('id asc') ->select(); foreach ($langRow as $key => $val) { $r = Db::name('smtp_tpl')->insert([ 'tpl_name' => '订单提醒', 'tpl_title' => '您有新的订单消息,请查收!', 'tpl_content' => '${content}', 'send_scene' => 5, 'is_open' => 1, 'lang' => $val['mark'], 'add_time' => getTime(), ]); false !== $r && tpCache('system', ['system_smtp_tpl_5' => 1], $val['mark']); } } else { // 单语言 $r = Db::name('smtp_tpl')->insert([ 'tpl_name' => '订单提醒', 'tpl_title' => '您有新的订单消息,请查收!', 'tpl_content' => '${content}', 'send_scene' => 5, 'is_open' => 1, 'lang' => $this->admin_lang, 'add_time' => getTime(), ]); false !== $r && tpCache('system', ['system_smtp_tpl_5' => 1]); } /*--end*/ } } /** * 内容统计管理 */ public function ajax_content_total() { if (IS_AJAX_POST) { $checkedids = input('post.checkedids/a', []); $ids = input('post.ids/a', []); $saveData = []; foreach ($ids as $key => $val) { if (in_array($val, $checkedids)) { $checked = 1; } else { $checked = 0; } $saveData[$key] = [ 'id' => $val, 'checked' => $checked, 'sort_order' => intval($key) + 1, 'update_time' => getTime(), ]; } if (!empty($saveData)) { $r = model('Quickentry')->saveAll($saveData); if ($r) { $this->success('操作成功', url('Index/welcome')); } } $this->error('操作失败'); } /*同步v1.3.9以及早期版本的自定义模型*/ $this->syn_custom_quickmenu(2); /*end*/ $totalList = Db::name('quickentry')->where([ 'type' => ['IN', [2]], 'status' => 1, ])->order('sort_order asc, id asc')->select(); $this->assign('totalList',$totalList); return $this->fetch(); } /** * 快捷导航管理 */ public function ajax_quickmenu() { if (IS_AJAX_POST) { $checkedids = input('post.checkedids/a', []); $ids = input('post.ids/a', []); $saveData = []; foreach ($ids as $key => $val) { if (in_array($val, $checkedids)) { $checked = 1; } else { $checked = 0; } $saveData[$key] = [ 'id' => $val, 'checked' => $checked, 'sort_order' => intval($key) + 1, 'update_time' => getTime(), ]; } if (!empty($saveData)) { $r = model('Quickentry')->saveAll($saveData); if ($r) { $this->success('操作成功', url('Index/welcome')); } } $this->error('操作失败'); } $welcome_type = input('param.welcome_type/s'); if ($welcome_type == 'shop') { $type = [11]; } else { /*同步v1.3.9以及早期版本的自定义模型*/ $this->syn_custom_quickmenu(1); /*end*/ $type = [1]; } $menuList = Db::name('quickentry')->where([ 'type' => ['IN', $type], 'groups' => 0, 'status' => 1, ])->order('sort_order asc, id asc')->select(); foreach ($menuList as $key => $val) { if ($this->php_servicemeal <= 2 && $val['controller'] == 'Shop' && $val['action'] == 'index') { unset($menuList[$key]); continue; } if (!empty($this->globalConfig['web_recycle_switch']) && $val['controller'] == 'RecycleBin' && $val['action'] == 'archives_index'){ unset($menuList[$key]); continue; } if (is_language() && $this->main_lang != $this->admin_lang) { $controllerArr = ['Weapp','Filemanager','Sitemap','Admin','Member','Seo','Channeltype','Tools']; if (empty($globalConfig['language_split'])) { $controllerArr[] = 'RecycleBin'; } $ctlActArr = ['System@water','System@thumb','System@api_conf']; if (in_array($val['controller'], $controllerArr) || in_array($val['controller'].'@'.$val['action'], $ctlActArr)) { unset($menuList[$key]); continue; } } } $this->assign('menuList',$menuList); return $this->fetch(); } /** * * 插件快捷导航管理 */ public function ajax_weapp_quickmenu() { if (IS_AJAX_POST) { $checkedids = input('post.checkedids/a', []); $ids = input('post.ids/a', []); $saveData = []; foreach ($ids as $key => $val) { if (in_array($val, $checkedids)) { $checked = 1; } else { $checked = 0; } $saveData[$key] = [ 'id' => $val, 'checked' => $checked, 'quick_sort' => intval($key) + 1, 'update_time' => getTime(), ]; } if (!empty($saveData)) { $r = model('Weapp')->saveAll($saveData); if ($r !== false) { $this->success('操作成功', url('Index/welcome')); } } $this->error('操作失败'); } $where = ['status'=>1]; $menuList = Db::name('weapp')->where($where)->order('quick_sort asc, id asc')->select(); $this->assign('menuList',$menuList); return $this->fetch(); } /** * 同步自定义模型的快捷导航 */ private function syn_custom_quickmenu($type = 1) { $row = Db::name('quickentry')->where([ 'controller' => 'Custom', 'type' => $type, ])->count(); if (empty($row)) { $customRow = Db::name('channeltype')->field('id,ntitle') ->where(['ifsystem'=>0])->select(); $saveData = []; foreach ($customRow as $key => $val) { $saveData[] = [ 'title' => $val['ntitle'], 'laytext' => $val['ntitle'].'列表', 'type' => $type, 'controller' => 'Custom', 'action' => 'index', 'vars' => 'channel='.$val['id'], 'groups' => 1, 'sort_order' => 100, 'add_time' => getTime(), 'update_time' => getTime(), ]; } model('Quickentry')->saveAll($saveData); } } /** * 录入商业授权 */ public function authortoken() { $is_force = input('param.is_force/d', 0); $redata = verify_authortoken($is_force); if (!empty($redata['code'])) { $source = realpath('public/static/admin/images/logo_ey.png'); $destination = realpath('public/static/admin/images/logo.png'); @copy($source, $destination); adminLog('验证商业授权'); $this->success('授权校验成功', $this->request->baseFile(), '', 1, [], '_parent'); } $msg = empty($redata['msg']) ? '域名('.$this->request->host(true).')未授权' : $redata['msg']; $this->error($msg, $this->request->baseFile(), '', 5, [], '_parent'); } /** * 更换后台logo */ public function edit_adminlogo() { $filename = input('param.filename/s', ''); if (!empty($filename)) { $source = realpath(preg_replace('#^'.ROOT_DIR.'/#i', '', $filename)); // 支持子目录 $web_is_authortoken = tpCache('global.web_is_authortoken'); if (empty($web_is_authortoken)) { $destination = realpath('public/static/admin/images/logo.png'); } else { $destination = realpath('public/static/admin/images/logo_ey.png'); } if (@copy($source, $destination)) { $this->success('操作成功'); } } $this->error('操作失败'); } /** * 待处理事项 */ public function pending_matters() { $html = '