* Date: 2018-4-3 */ if (!function_exists('security_verify_func')) { /** * 当前功能是否需要密保问题验证 * @param * @return bool */ function security_verify_func($ctl_act = '') { if (empty($ctl_act)) { $ctl = request()->controller(); $act = request()->action(); $ctl_all = $ctl.'@*'; $ctl_act = $ctl.'@'.$act; } else { $ctl_all = preg_replace('/\@([\w\-]+)$/i', '@*', $ctl_act); } $security = tpSetting('security'); $security_verifyfunc = !empty($security['security_verifyfunc']) ? json_decode($security['security_verifyfunc'], true) : ['Filemanager@*','Arctype@ajax_newtpl','Archives@ajax_newtpl']; if (in_array($ctl_act, ['Filemanager@*','Arctype@ajax_newtpl','Archives@ajax_newtpl'])) { return true; } else { if (!empty($security['security_ask_open'])) { if (in_array($ctl_all, $security_verifyfunc) || in_array($ctl_act, $security_verifyfunc)) { return true; } } } return false; } } if (!function_exists('security_answer_verify')) { /** * 是否验证了密保答案 */ function security_answer_verify() { $security = tpSetting('security'); if (!empty($security['security_ask_open'])) { $admin_id = session('?admin_id') ? (int)session('admin_id') : 0; $admin_info = \think\Db::name('admin')->field('admin_id,last_ip')->where(['admin_id'=>$admin_id])->find(); // 当前管理员二次安全验证过的IP地址 $security_answerverify_ip = !empty($security['security_answerverify_ip']) ? $security['security_answerverify_ip'] : '-1'; // 同IP不验证 if (empty($admin_info) || $admin_info['last_ip'] != $security_answerverify_ip) { return false; } } return true; } } if (!function_exists('del_html_dirpath')){ /* * 删除静态页面 */ function del_html_dirpath(){ $error = false; $dirArr = []; $seo_html_listname = tpCache('global.seo_html_listname'); $row = \think\Db::name('arctype')->field('dirpath,diy_dirpath')->select(); foreach ($row as $key => $val) { $dirpathArr = explode('/', $val['dirpath']); if (3 == $seo_html_listname) { $dir = end($dirpathArr); } else if (4 == $seo_html_listname) { $dirpathArr = explode('/', $val['diy_dirpath']); $dir = end($dirpathArr); } else { $dir = !empty($dirpathArr[1]) ? $dirpathArr[1] : ''; } $filepath = "./{$dir}"; if (!empty($dir) && !in_array($dir, $dirArr) && file_exists($filepath)) { @unlink($filepath."/index.html"); $bool = delFile($filepath, true); if (false !== $bool) { array_push($dirArr, $dir); } else { $error = true; } } } $data = []; $data['msg'] = ''; if ($error) { $num = 0; $wwwroot = glob('*', GLOB_ONLYDIR); foreach ($wwwroot as $key => $val) { if (in_array($val, $dirArr)) { if (0 == $num) { $data['msg'] .= "部分目录删除失败,请手工删除:
"; } $data['msg'] .= ($num+1)."、{$val}
"; $num++; } } $data['height'] = $num * 24; } return $data; } } if (!function_exists('is_adminlogin')) { /** * 检验登陆 * @param * @return bool */ function is_adminlogin(){ $admin_id = session('admin_id'); if(isset($admin_id) && $admin_id > 0){ return $admin_id; }else{ return false; } } } if (!function_exists('getAdminInfo')) { /** * 获取管理员登录信息 */ function getAdminInfo($admin_id = 0) { $admin_info = []; $admin_id = empty($admin_id) ? session('admin_id') : $admin_id; if (0 < intval($admin_id)) { $admin_info = \think\Db::name('admin') ->field('a.*, b.name AS role_name') ->alias('a') ->join('__AUTH_ROLE__ b', 'b.id = a.role_id', 'LEFT') ->where("a.admin_id", $admin_id) ->find(); if (!empty($admin_info)) { // 头像 empty($admin_info['head_pic']) && $admin_info['head_pic'] = get_head_pic($admin_info['head_pic'], true); // 权限组 $admin_info['role_id'] = !empty($admin_info['role_id']) ? $admin_info['role_id'] : -1; // 是否创始人 $is_founder = 0; if (-1 == $admin_info['role_id']) { if (!empty($admin_info['parent_id'])) { $role_name = '超级管理员'; } else { $is_founder = 1; $role_name = '创始人'; } } else { $role_name = $admin_info['role_name']; } $admin_info['role_name'] = $role_name; $admin_info['is_founder'] = $is_founder; } } return $admin_info; } } if (!function_exists('get_conf')) { /** * 获取conf配置文件 */ function get_conf($name = 'global') { $arr = include APP_PATH.MODULE_NAME.'/conf/'.$name.'.php'; return $arr; } } if (!function_exists('get_auth_rule')) { /** * 获取权限列表文件 */ function get_auth_rule($where = []) { $auth_rule = include APP_PATH.MODULE_NAME.'/conf/auth_rule.php'; // 排序号排序 // $sort_order_arr = array(); // foreach($auth_rule as $key => $val){ // $sort_order_arr[]['sort_order'] = $val['sort_order']; // } // array_multisort($sort_order_arr,SORT_ASC,$auth_rule); if (!empty($where)) { foreach ($auth_rule as $k1 => $rules) { foreach ($where as $k2 => $v2) { if ($rules[$k2] != $v2) { unset($auth_rule[$k1]); } } } } return $auth_rule; } } if (!function_exists('is_check_access')) { /** * 检测是否有该权限 */ function is_check_access($str = 'Index@index') { $bool_flag = 1; $role_id = session('admin_info.role_id'); if (0 < intval($role_id)) { $ctl_act = strtolower($str); $arr = explode('@', $ctl_act); $ctl = !empty($arr[0]) ? $arr[0] : ''; $act = !empty($arr[1]) ? $arr[1] : ''; $ctl_all = $ctl.'@*'; $auth_role_info = session('admin_info.auth_role_info'); $permission = $auth_role_info['permission']; $permission_rules = !empty($permission['rules']) ? $permission['rules'] : []; $auth_rule = get_auth_rule(); $all_auths = []; // 系统全部权限对应的菜单ID $admin_auths = []; // 用户当前拥有权限对应的菜单ID $diff_auths = []; // 用户没有被授权的权限对应的菜单ID foreach($auth_rule as $key => $val){ $all_auths = array_merge($all_auths, explode(',', strtolower($val['auths']))); if (in_array($val['id'], $permission_rules)) { $admin_auths = array_merge($admin_auths, explode(',', strtolower($val['auths']))); } } $all_auths = array_unique($all_auths); $admin_auths = array_unique($admin_auths); $diff_auths = array_diff($all_auths, $admin_auths); if (in_array('archives@index_draft', $diff_auths) && !in_array('archives@*', $diff_auths)) { $index_key = array_search('archives@index_draft', $diff_auths); if (isset($diff_auths[$index_key])) { unset($diff_auths[$index_key]); } } if (in_array($ctl_act, $diff_auths) || in_array($ctl_all, $diff_auths)) { $bool_flag = false; }else if($ctl_act == 'order@index' && (in_array('member@money_index', $diff_auths) || in_array('member@*', $diff_auths)) && (in_array('shop@index', $diff_auths) || in_array('shop@*', $diff_auths))){ //Member@money_index 会员订单入口; Shop@index 商城中心订单都没有权限的清空下,关闭订单管理 $bool_flag = false; } } return $bool_flag; } } if (!function_exists('getAdminMenuList')){ /** * 根据角色权限过滤菜单 * $menu_list 所有菜单 */ function getAdminMenuList($menuArr){ $role_id = session('admin_info.role_id'); if (0 < intval($role_id)) { $auth_role_info = session('admin_info.auth_role_info'); $permission = $auth_role_info['permission']; $permission_rules = !empty($permission['rules']) ? $permission['rules'] : []; $permission_plugins = !empty($permission['plugins']) ? $permission['plugins'] : []; if (!empty($permission_plugins)){ $permission_plugins = get_arr_column($permission_plugins,"code"); } $web_weapp_switch = tpCache('global.web_weapp_switch'); $auth_rule = get_auth_rule(); $all_auths = []; // 系统全部权限对应的菜单ID $admin_auths = []; // 用户当前拥有权限对应的菜单ID $diff_auths = []; // 用户没有被授权的权限对应的菜单ID foreach($auth_rule as $key => $val){ $all_auths = array_merge($all_auths, explode(',', strtolower($val['auths']))); if (in_array($val['id'], $permission_rules)) { $admin_auths = array_merge($admin_auths, explode(',', strtolower($val['auths']))); } } $all_auths = array_unique($all_auths); $admin_auths = array_unique($admin_auths); $diff_auths = array_diff($all_auths, $admin_auths); if (in_array('archives@index_draft', $diff_auths) && !in_array('archives@*', $diff_auths)) { $index_key = array_search('archives@index_draft', $diff_auths); if (isset($diff_auths[$index_key])) { unset($diff_auths[$index_key]); } } //过滤该用户不包含的权限 foreach($menuArr as $k=>$val){ $ctl = strtolower($val['controller_name']); $act = strtolower($val['action_name']); $ctl_act = $ctl.'@'.$act; $ctl_all = $ctl.'@*'; if (in_array($ctl_act, $diff_auths) || in_array($ctl_all, $diff_auths)) { unset($menuArr[$k]);//过滤菜单 }else if($val['menu_id'] == '2004021' && !is_check_access("Member@money_index") && !is_check_access("Member@money_index")){ //Member*money_index 会员订单入口; Shop*index 商城中心订单 unset($menuArr[$k]);//Member*money_index 会员订单入口; Shop*index 商城中心订单都没有权限的清空下,关闭订单管理 } else if ($val['menu_id'] == '2004') { if ($auth_role_info['switch_map'] <= 0) { unset($menuArr[$k]); // 功能地图入口 } } //过滤没有权限的插件 if ($ctl == 'weapp' && $act == 'execute'){ if (1 != $web_weapp_switch || empty($permission_plugins)){ unset($menuArr[$k]);//过滤菜单 }else{ $param_str = get_str_between($val['param'], "sm|", "|sc"); if (!in_array($param_str,$permission_plugins)){ unset($menuArr[$k]);//过滤菜单 } } } } } return $menuArr; } } if (!function_exists('get_str_between')){ function get_str_between($input, $start, $end) { $substr = substr($input, strlen($start)+strpos($input, $start),(strlen($input) - strpos($input, $end))*(-1)); return $substr; } } if (!function_exists('getMenuList')) { /** * 根据角色权限过滤菜单 */ function getMenuList() { $menuArr = getAllMenu(); // return $menuArr; $role_id = session('admin_info.role_id'); if (0 < intval($role_id)) { $auth_role_info = session('admin_info.auth_role_info'); $permission = $auth_role_info['permission']; $permission_rules = !empty($permission['rules']) ? $permission['rules'] : []; $auth_rule = get_auth_rule(); $all_auths = []; // 系统全部权限对应的菜单ID $admin_auths = []; // 用户当前拥有权限对应的菜单ID $diff_auths = []; // 用户没有被授权的权限对应的菜单ID foreach($auth_rule as $key => $val){ $all_auths = array_merge($all_auths, explode(',', $val['menu_id']), explode(',', $val['menu_id2'])); if (in_array($val['id'], $permission_rules)) { $admin_auths = array_merge($admin_auths, explode(',', $val['menu_id']), explode(',', $val['menu_id2'])); } } $all_auths = array_unique($all_auths); $admin_auths = array_unique($admin_auths); $diff_auths = array_diff($all_auths, $admin_auths); /*过滤三级数组菜单*/ foreach($menuArr as $k=>$val){ foreach ($val['child'] as $j=>$v){ foreach ($v['child'] as $s=>$son){ if (in_array($son['id'], $diff_auths)) { unset($menuArr[$k]['child'][$j]['child'][$s]);//过滤菜单 } } } } /*--end*/ /*过滤二级数组菜单*/ foreach ($menuArr as $mk=>$mr){ foreach ($mr['child'] as $nk=>$nrr){ if (in_array($nrr['id'], $diff_auths)) { unset($menuArr[$mk]['child'][$nk]);//过滤菜单 } } } /*--end*/ } return $menuArr; } } if (!function_exists('getAllMenu')) { /** * 获取左侧菜单 */ function getAllMenu() { $menuArr = false;//extra_cache('admin_all_menu'); if (!$menuArr) { $menuArr = get_conf('menu'); extra_cache('admin_all_menu', $menuArr); } return $menuArr; } } if ( ! function_exists('getChanneltypeList')) { /** * 获取全部的模型 */ function getChanneltypeList() { $result = extra_cache('admin_channeltype_list_logic'); if ($result == false) { $result = model('Channeltype')->getAll('*', array(), 'id'); extra_cache('admin_channeltype_list_logic', $result); } return $result; } } if (!function_exists('tpversion')) { function tpversion($timeout = 5) { if(!empty($_SESSION['isset_push'])) return false; $_SESSION['isset_push'] = 1; error_reporting(0);//关闭所有错误报告 $install_time = DEFAULT_INSTALL_DATE; $serial_number = DEFAULT_SERIALNUMBER; $constsant_path = APP_PATH.'admin/conf/constant.php'; if (file_exists($constsant_path)) { require_once($constsant_path); defined('INSTALL_DATE') && $install_time = INSTALL_DATE; defined('SERIALNUMBER') && $serial_number = SERIALNUMBER; } $curent_version = getCmsVersion(); $mysqlinfo = \think\Db::query("SELECT VERSION() as version"); $mysql_version = $mysqlinfo[0]['version']; $global_config = tpCache('global'); $users_config = getUsersConfigData('all'); $values = array( 'domain'=>request()->host(), 'key_num'=>$curent_version, 'install_time'=>$install_time, 'serial_number'=>$serial_number, 'ip' => serverIP(), 'agentcode' => !empty($global_config['php_agentcode']) ? $global_config['php_agentcode'] : 0, 'global_config' => base64_encode(json_encode($global_config)), 'users_config' => base64_encode(json_encode($users_config)), 'phpv' => urlencode(phpversion()), 'mysql_version' => urlencode($mysql_version), 'web_server' => urlencode($_SERVER['SERVER_SOFTWARE']), 'web_title' => tpCache('global.web_title'), ); // api_Service_user_push $upgradeLogic = new \app\admin\logic\UpgradeLogic; $upgradeLogic->GetKeyData($values); $url = $upgradeLogic->getServiceUrl().'/index.php?m=api&c=Service&a=user_push'; @httpRequest($url, 'POST', $values, [], $timeout); } } if (!function_exists('push_zzbaidu')) { /** * 将新链接推送给百度蜘蛛 */ function push_zzbaidu($type = 'urls', $aid = '', $typeid = '') { // 获取token的值:http://ziyuan.baidu.com/linksubmit/index?site=http://www.eyoucms.com/ $aid = intval($aid); $typeid = intval($typeid); $sitemap_zzbaidutoken = tpCache('global.sitemap_zzbaidutoken'); if (empty($sitemap_zzbaidutoken) || (empty($aid) && empty($typeid)) || !function_exists('curl_init')) { return ''; } $urlsArr = array(); $channeltype_list = model('Channeltype')->getAll('id, ctl_name', array(), 'id'); if ($aid > 0) { $res = M('archives')->field('b.*, a.*, a.aid, b.id as typeid') ->alias('a') ->join('__ARCTYPE__ b', 'b.id = a.typeid', 'LEFT') ->find($aid); $arcurl = get_arcurl($res, false); array_push($urlsArr, $arcurl); } if (0 < $typeid) { $res = M('arctype')->field('a.*') ->alias('a') ->find($typeid); $typeurl = get_typeurl($res, false); array_push($urlsArr, $typeurl); } $type = ('edit' == $type) ? 'update' : 'urls'; $api = 'http://data.zz.baidu.com/'.$type.'?site='.request()->host(true).'&token='.$sitemap_zzbaidutoken; $ch = curl_init(); $options = array( CURLOPT_URL => $api, CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_POSTFIELDS => implode("\n", $urlsArr), CURLOPT_HTTPHEADER => array('Content-Type: text/plain'), ); curl_setopt_array($ch, $options); $result = curl_exec($ch); return $result; } } if (!function_exists('get_homeurl')) { /** * 获取前台链接 * * @param array $tagid 标签ID */ function get_homeurl($mca = '', $vars = []) { static $seo_pseudo = null; static $seo_dynamic_format = null; if (null === $seo_pseudo || null === $seo_dynamic_format) { $globalConfig = tpCache('global'); $seo_pseudo = !empty($globalConfig['seo_pseudo']) ? $globalConfig['seo_pseudo'] : config('ey_config.seo_pseudo'); $seo_dynamic_format = !empty($globalConfig['seo_dynamic_format']) ? $globalConfig['seo_dynamic_format'] : config('ey_config.seo_dynamic_format'); } $url = url($mca, $vars, true, true, $seo_pseudo, $seo_dynamic_format); // 自动隐藏index.php入口文件 $url = auto_hide_index($url); return $url; } } if (!function_exists('get_total_arc')) { /** * 获取指定栏目的文档数 */ function get_total_arc($typeid) { static $arctypeList = null; static $archivesNums = null; static $guestbookNums = null; static $allow_release_channel = []; if (null === $arctypeList) { $allow_release_channel = config('global.allow_release_channel'); $arctypeList = \think\Db::name('arctype')->field('id, parent_id, current_channel')->where([ 'lang' => get_admin_lang(), 'is_del' => 0, 'weapp_code' => ['EQ', ''], ])->getAllWithIndex('id'); /*-----------------文档列表模型统计数 start--------------*/ $map = [ 'channel' => ['IN', $allow_release_channel], 'lang' => get_admin_lang(), 'is_del' => 0, // 回收站功能 ]; $mapNew = "(users_id = 0 OR (users_id > 0 AND arcrank >= 0))"; /*权限控制 by 小虎哥*/ $admin_info = session('admin_info'); if (0 < intval($admin_info['role_id'])) { $auth_role_info = $admin_info['auth_role_info']; if(! empty($auth_role_info)){ if(isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']){ $map['admin_id'] = $admin_info['admin_id']; } } } /*--end*/ $SqlQuery = \think\Db::name('archives')->field('typeid, count(typeid) as num')->where($map)->where($mapNew)->group('typeid')->select(false); $SqlResult = \think\Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->getField('sql_result'); if (!empty($SqlResult)) { $archivesNums = json_decode($SqlResult, true); } else { $archivesNums = \think\Db::name('archives')->field('typeid, count(typeid) as num')->where($map)->where($mapNew)->group('typeid')->getAllWithIndex('typeid'); /*添加查询执行语句到mysql缓存表*/ $SqlCacheTable = [ 'sql_name' => '|arctype|all|count|', 'sql_result' => json_encode($archivesNums), 'sql_md5' => md5($SqlQuery), 'sql_query' => $SqlQuery, 'add_time' => getTime(), 'update_time' => getTime(), ]; \think\Db::name('sql_cache_table')->insertGetId($SqlCacheTable); /*END*/ } /*-----------------文档列表模型统计数 end--------------*/ /*-----------------留言模型 start--------------*/ $guestbookNums = \think\Db::name('guestbook')->field('typeid, count(typeid) as num')->where([ 'lang' => get_admin_lang(), ])->group('typeid')->getAllWithIndex('typeid'); /*-----------------留言模型 end--------------*/ } $totalnum = 0; if (!empty($arctypeList[$typeid])) { $current_channel = $arctypeList[$typeid]['current_channel']; if (in_array($current_channel, $allow_release_channel)) { // 能发布文档的模型 static $arctypeAllSub = null; null === $arctypeAllSub && $arctypeAllSub = arctypeAllSub(); $typeidArr = $arctypeAllSub[$typeid]; foreach($typeidArr as $tid) { $totalnum += (!empty($archivesNums[$tid]['num']) ? $archivesNums[$tid]['num'] : 0); } } elseif ($current_channel == 8) { // 留言模型 $totalnum = !empty($guestbookNums[$typeid]['num']) ? $guestbookNums[$typeid]['num'] : 0; } } return $totalnum; } } if (!function_exists('replace_path')) { /** * 将路径斜杆、反斜杠替换为冒号符,适用于IIS服务器在URL上的双重转义限制 * @param string $filepath 相对路径 * @param string $replacement 目标字符 * @param boolean $is_back false为替换,true为还原 */ function replace_path($filepath = '', $replacement = ':', $is_back = false) { if (false == $is_back) { $filepath = str_replace(DIRECTORY_SEPARATOR, $replacement, $filepath); $filepath = preg_replace('#\/#', $replacement, $filepath); } else { $filepath = preg_replace('#'.$replacement.'#', '/', $filepath); $filepath = str_replace('//', ':/', $filepath); } return $filepath; } } if (!function_exists('get_seo_pseudo_list')) { /** * URL模式下拉列表 */ function get_seo_pseudo_list($key = '') { $data = array( 1 => '动态URL', 3 => '伪静态化', 2 => '静态页面', ); return isset($data[$key]) ? $data[$key] : $data; } } if (!function_exists('get_chown_pathinfo')) { /** * 对指定的操作系统获取目录的所有组与所有者 * @param string $path 目录路径 * @return array */ function get_chown_pathinfo($path = '') { $pathinfo = true; if (function_exists('stat')) { /*指定操作系统,在列表内才进行后续获取*/ $isValidate = false; $os = PHP_OS; $osList = array('linux','unix'); foreach ($osList as $key => $val) { if (stristr($os, $val)) { $isValidate = true; continue; } } /*--end*/ if (true === $isValidate) { $path = !empty($path) ? $path : ROOT_PATH; $stat = stat($path); if (function_exists('posix_getpwuid')) { $pathinfo = posix_getpwuid($stat['uid']); } else { $pathinfo = array( 'name' => (0 == $stat['uid']) ? 'root' : '', 'uid' => $stat['uid'], 'gid' => $stat['gid'], ); } } } return $pathinfo; } } if (!function_exists('menu_select')) { /*组装成层级下拉列表框*/ function menu_select($selected = 0) { $select_html = ''; $menuArr = getAllMenu(); if (!empty($menuArr)) { foreach ($menuArr AS $key => $val) { $select_html .= ''; if (empty($val['child'])) { continue; } foreach ($menuArr[$key]['child'] as $key2 => $val2) { $select_html .= ''; if (empty($val2['child'])) { continue; } foreach ($menuArr[$key]['child'][$key2]['child'] as $key3 => $val3) { $select_html .= ''; } } } } return $select_html; } } if (!function_exists('schemaTable')) { /** * 重新生成单个数据表缓存字段文件 */ function schemaTable($name) { $table = $name; $prefix = \think\Config::get('database.prefix'); if (!preg_match('/^'.$prefix.'/i', $name)) { $table = $prefix.$name; } /*调用命令行的指令*/ \think\Console::call('optimize:schema', ['--table', $table]); /*--end*/ } } if (!function_exists('schemaAllTable')) { /** * 重新生成全部数据表缓存字段文件 */ function schemaAllTable() { $dbtables = \think\Db::query('SHOW TABLE STATUS'); $tableList = []; foreach ($dbtables as $k => $v) { if (preg_match('/^'.PREFIX.'/i', $v['Name'])) { /*调用命令行的指令*/ \think\Console::call('optimize:schema', ['--table', $v['Name']]); /*--end*/ } } } } if (!function_exists('testWriteAble')) { /** * 测试目录路径是否有写入权限 * @param string $d 目录路劲 * @return boolean */ function testWriteAble($filepath) { $tfile = '_eyout.txt'; $fp = @fopen($filepath.$tfile,'w'); if(!$fp) { return false; } else { fclose($fp); $rs = @unlink($filepath.$tfile); return true; } } } if (!function_exists('getArchivesSortUrl')) { /** * 在文档列表拼接排序URL * @param string $orderby 排序字段 * @param string $orderwayDefault 默认为空时升序 * @return string */ function getArchivesSortUrl($orderby = '', $orderwayDefault = '') { $parseArr = parse_url(request()->url()); $query_str = ''; if (!empty($parseArr['query'])) { parse_str($parseArr['query'], $output); $output['orderby'] = $orderby; $orderway = input('param.orderway/s', $orderwayDefault); $orderway = !empty($orderway) ? $orderway : 'desc'; if ('desc' == $orderway) { $orderway = 'asc'; } else { $orderway = 'desc'; // 再次点击恢复到默认排序 // if ('arcrank' == $orderby) { // $output['orderby'] = ''; // } } $output['orderway'] = $orderway; $query_str = http_build_query($output); } $url = $parseArr['path']; !empty($query_str) && $url .= '?'.$query_str; return $url; } } if (!function_exists('showArchivesFlagStr')) { /** * 在文档列表显示文档属性标识 * @param array $archivesInfo 文档信息 * @return string */ function showArchivesFlagStr($archivesInfo = []) { static $flagResult = null; if (null === $flagResult) { $flagResult = \think\Db::name('archives_flag')->field('flag_name,flag_fieldname')->getAllWithIndex('flag_fieldname'); } $arr = []; $flaglist = ['is_head','is_recom','is_special','is_b','is_jump','is_roll','is_slide','is_diyattr']; foreach ($flaglist as $key => $fieldname) { if (!empty($archivesInfo[$fieldname]) && !empty($flagResult[$fieldname]['flag_name'])) { if (in_array($flagResult[$fieldname]['flag_name'], ['推荐','加推','标粗','有图']) || stristr($flagResult[$fieldname]['flag_name'], '最')) { $small_name = msubstr($flagResult[$fieldname]['flag_name'], 1, 1); } else { $small_name = msubstr($flagResult[$fieldname]['flag_name'], 0, 1); } $arr[$fieldname] = [ 'small_name' => $small_name, ]; } } return $arr; } } if (!function_exists('checkPasswordLevel')) { /** * 检查密码复杂度 * @param string $strPassword 密码 * @return string */ function checkPasswordLevel($strPassword = '') { $result = 0; $pwdlen = strlen($strPassword); if ( $pwdlen == 0) { $result += 0; } else if ( $pwdlen<8 && $pwdlen >0 ) { $result += 5; } else if ($pwdlen>10) { $result += 25; } else { $result += 10; } //check letter $bHave = false; $bAll = false; $capital = preg_match('/[A-Z]{1}/', $strPassword);//找大写字母 $small = preg_match('/[a-z]{1}/', $strPassword);//找小写字母 if ( empty($capital) && empty($small) ) { $result += 0; //没有字母 $bHave = false; } else if ( !empty($capital) && !empty($small) ) { $result += 20; $bAll = true; } else { $result += 10; $bAll = true; } //检查数字 $bDigi = false; $digitalLen = 0; for ( $i=0; $i<$pwdlen; $i++) { if ( $strPassword[$i] <= '9' && $strPassword[$i] >= '0' ) { $bDigi = true; $digitalLen += 1; } } if ( $digitalLen==0 )//没有数字 { $result += 0; $bDigi = false; } else if ($digitalLen>2)//2个数字以上 { $result += 20 ; $bDigi = true; } else { $result += 10; $bDigi = true; } //检查非单词字符 $bOther = false; $otherLen = 0; for ($i=0; $i<$pwdlen; $i++) { if ( ($strPassword[$i]>='0' && $strPassword[$i]<='9') || ($strPassword[$i]>='A' && $strPassword[$i]<='Z') || ($strPassword[$i]>='a' && $strPassword[$i]<='z')) { continue; } $otherLen += 1; $bOther = true; } if ( $otherLen == 0 )//没有非单词字符 { $result += 0; $bOther = false; } else if ( $otherLen >1)//1个以上非单词字符 { $result +=25 ; $bOther = true; } else { $result +=10; $bOther = true; } //检查额外奖励 if ( $bAll && $bDigi && $bOther) { $result += 5; } else if ($bHave && $bDigi && $bOther) { $result += 3; } else if ($bHave && $bDigi ) { $result += 2; } $level = 0; //根据分数来算密码强度的等级 if ( $result >=80 ) { $level = 7; } else if ( $result>=70) { $level = 6; } else if ( $result>=60) { $level = 5; } else if ( $result>=50) { $level = 4; } else if ( $result>=40) { $level = 3; } else if ( $result>20) { $level = 2; } else if ( $result>0) { $level = 1; } else { $level = 0; } return $level; } } if (!function_exists('getPasswordLevelTitle')) { /** * 获取密码复杂度名称 * @param string $level 复杂程度 * @return string */ function getPasswordLevelTitle($level = 0) { $title = '弱'; //根据分数来算密码强度的等级 if ( $level == 7 ) { $title = '极佳'; } else if ( $level == 6) { $title = '非常强'; } else if ( $level == 5) { $title = '强'; } else if ( $level == 4) { $title = '较强'; } else if ( $level == 3) { $title = '一般'; } else if ( $level == 2) { $title = '较弱'; } else if ( $level == 1) { $title = '非常弱'; } else { $title = '弱'; } return $title; } } if (!function_exists('downloadExcel')) { /** * 下载excel * @param $strTable 表格内容 * @param $filename 文件名 */ function downloadExcel($strTable, $filename) { ob_end_clean(); header("Content-type: application/vnd.ms-excel"); header("Content-Type: application/force-download"); header("Content-Disposition: attachment; filename=" . $filename . "_" . date('Y-m-d') . ".xls"); header('Expires:0'); header('Pragma:public'); echo '' . $strTable . ''; } } if (!function_exists('check_single_uiset')) { /** * 检测指定单页模板是否支持可视化 */ function check_single_uiset($templist = '') { $uisetRow = []; $templist = !empty($templist) ? $templist : 'lists_single.htm'; $file = "./template/".TPL_THEME."pc/{$templist}"; if (file_exists($file)) { $content = @file_get_contents($file); if (!empty($content) && preg_match('/eyou\:ui(\s+)open\=(\'|\")(on|off)(\'|\")/i', $content)) { $uisetRow['pc'] = true; } } $file = "./template/".TPL_THEME."mobile/{$templist}"; if (file_exists($file)) { $content = @file_get_contents($file); if (!empty($content) && preg_match('/eyou\:ui(\s+)open\=(\'|\")(on|off)(\'|\")/i', $content)) { $uisetRow['mobile'] = true; } } return $uisetRow; } } if (!function_exists('left_menu_id')) { /** * 左侧菜单的ID处理 */ function left_menu_id($str = '') { return str_replace('|', '_', $str); } } if (!function_exists('list_to_tree')){ /* * list数组转化为tree数组 * $list 原二维数组 * $pk 树型数组键名 * $pid 属性数组关联键名 * $child 树型数组下级枝干下标(标识) * $root 根pid的值 * $has_chldren 用于获取下级个数(所有),PS:需要原二维数组$list本来就是依次层级从大到小排序 * return 根节点pid的值 */ function list_to_tree($list, $pk='id', $pid = 'parent_id', $child = 'children', $root = 0 ,$has_chldren = 1) { //创建Tree $tree = array(); if (is_array($list)) { //创建基于主键的数组引用 $refer = array(); foreach ($list as $key => $data) { $refer[$data[$pk]] = &$list[$key]; } foreach ($list as $key => $data) { //判断是否存在parent $parantId = $data[$pid]; if ($root == $parantId) { $tree[] = &$list[$key]; } else { if (isset($refer[$parantId])) { $parent = &$refer[$parantId]; //用于获取下级个数(所有)begin if ($has_chldren){ if (isset($parent['has_chldren'])){ $parent['has_chldren'] ++; }else{ $parent['has_chldren'] = 1; } if (isset($list[$key]['has_chldren'])){ $parent['has_chldren'] += $list[$key]['has_chldren']; } } //用于获取下级个数(所有)end $parent[$child][] = &$list[$key]; } } } } return $tree; } } if (!function_exists('tree_to_list')){ /* * tree数组转化为list数组 * $tree 原树型数组 * $child 树型数组下级枝干下标(标识) * $pk 转化后需要作为list数组键名的属性值的属性名称(为空则转换后的list下标为从0开始的顺序) * * return list类型数组 */ function tree_to_list($tree, $child = 'children',$pk=''){ $imparr = array(); foreach($tree as $w) { if(isset($w[$child])) { $t = $w[$child]; unset($w[$child]); if (!empty($pk)){ $imparr[$w[$pk]] = $w; }else{ $imparr[] = $w; } if(is_array($t)){ if (!empty($pk)){ $imparr = $imparr + tree_to_list($t, $child,$pk); }else{ $imparr = array_merge($imparr, tree_to_list($t, $child,$pk)); } } } else { if (!empty($pk)){ $imparr[$w[$pk]] = $w; }else{ $imparr[] = $w; } } } return $imparr; } } if (!function_exists('verify_authortoken')) { function verify_authortoken($is_force = 0) { $request = request(); $web_basehost = $request->host(true); if (false !== filter_var($web_basehost, FILTER_VALIDATE_IP) || $web_basehost == 'localhost' || file_exists('./data/conf/multidomain.txt') || preg_match('/\.(my3w\.com)$/i', $web_basehost)) { $web_basehost = tpCache('web.web_basehost'); } $web_basehost = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${4}', $web_basehost); $values = array( 'client_domain' => urldecode($web_basehost), 'ip' => serverIP(), 'curent_version' => getCmsVersion(), 'is_force' => $is_force, ); $upgradeLogic = new \app\admin\logic\UpgradeLogic; $upgradeLogic->GetKeyData($values); $url = $upgradeLogic->getServiceUrl(true).'/index.php?m=api&c=Service&a=check_authortoken'; $response = @httpRequest($url, 'POST', $values, [], 5); if (false === $response) { $url = $url.'&'.http_build_query($values); $context = stream_context_set_default(array('http' => array('timeout' => 5,'method'=>'GET'))); $response = @file_get_contents($url, false, $context); } $params = json_decode($response,true); $web_authortoken = !empty($params['code']) ? $params['msg'] : ''; /*多语言*/ if (is_language()) { $langRow = \think\Db::name('language')->cache(true, EYOUCMS_CACHE_TIME, 'language') ->order('id asc') ->select(); foreach ($langRow as $key => $val) { tpCache('web', ['web_authortoken'=>$web_authortoken], $val['mark']); tpCache('php', ['php_atqueryrequest_time'=>0,'php_atqueryrequest_time2'=>0], $val['mark']); } } else { // 单语言 tpCache('web', ['web_authortoken'=>$web_authortoken]); tpCache('php', ['php_atqueryrequest_time'=>0,'php_atqueryrequest_time2'=>0]); } /*--end*/ delFile(HTML_ROOT); // 清空缓存页面 session('isset_author', null); if (false === $response || (is_array($params) && 1 == $params['code'])) { return ['code'=>1, 'msg'=>'授权成功']; } else { $msg = empty($params['msg']) ? '域名('.request()->host(true).')未授权' : $params['msg']; return ['code'=>0, 'msg'=>$msg]; } } } if (!function_exists('get_not_role_menu_id')){ /* * 获取因为没有打开模块没有权限的入口节点id */ function get_not_role_menu_id(){ $main_lang= get_main_lang(); $admin_lang = get_admin_lang(); $shopServicemeal = array_join_string(array('cGhwLnBocF9zZXJ2aWNlbWVhbA==')); $global = include APP_PATH.MODULE_NAME.'/conf/global.php'; $module_rele_menu = $global['module_rele_menu']; $module_reverse_menu = $global['module_reverse_menu']; $not_role_menu_id = []; $UsersConfig = getUsersConfigData('all'); //有权限的 (1 == tpCache('global.web_users_switch') && $main_lang == $admin_lang) //会员中心 if (!empty($module_rele_menu['web_users_switch']) && (1 != tpCache('global.web_users_switch') || $main_lang != $admin_lang)){ $not_role_menu_id = array_merge($not_role_menu_id,$module_rele_menu['web_users_switch']); } //商城中心 => 会员中心关闭则一起关闭 // if (1 == tpCache('global.web_users_switch') && 1 == getUsersConfigData('shop.shop_open') && $main_lang == $admin_lang && 1.5 <= tpCache($shopServicemeal)) if (!empty($module_rele_menu['shop_open']) && (1 != tpCache('global.web_users_switch') || 1 != $UsersConfig['shop_open'] || $main_lang != $admin_lang || 1.5 > tpCache($shopServicemeal))){ $not_role_menu_id = array_merge($not_role_menu_id,$module_rele_menu['shop_open']); } //会员投稿 => 会员中心关闭则一起关闭 if (!empty($module_rele_menu['users_open_release']) && (1 != tpCache('global.web_users_switch') || 1 != $UsersConfig['users_open_release'])){ $not_role_menu_id = array_merge($not_role_menu_id,$module_rele_menu['users_open_release']); } //会员升级 => 会员中心关闭则一起关闭 if (!empty($module_rele_menu['level_member_upgrade']) && (1 != tpCache('global.web_users_switch') || 1 != $UsersConfig['level_member_upgrade'])){ $not_role_menu_id = array_merge($not_role_menu_id,$module_rele_menu['level_member_upgrade']); } //支付功能 => 会员中心关闭则一起关闭 if (!empty($module_rele_menu['pay_open']) && (1 != tpCache('global.web_users_switch') || 1 != $UsersConfig['pay_open'])){ $not_role_menu_id = array_merge($not_role_menu_id,$module_rele_menu['pay_open']); } //插件应用 if (!empty($module_rele_menu['web_weapp_switch']) && (1 != tpCache('global.web_weapp_switch') || $main_lang != $admin_lang)){ $not_role_menu_id = array_merge($not_role_menu_id,$module_rele_menu['web_weapp_switch']); } //城市分站 if (!empty($module_rele_menu['web_citysite_open']) && (1 != tpCache('global.web_citysite_open') || $main_lang != $admin_lang)){ $not_role_menu_id = array_merge($not_role_menu_id,$module_rele_menu['web_citysite_open']); } if (!empty($module_reverse_menu['web_citysite_open']) && 1 == tpCache('global.web_citysite_open')){ $not_role_menu_id = array_merge($not_role_menu_id,$module_reverse_menu['web_citysite_open']); } //其他因素 $other_rele_menu = $global['other_rele_menu']; if (!empty($other_rele_menu)){ $not_role_menu_id = array_merge($not_role_menu_id,$other_rele_menu); } // 会员支付、商城中心,只要开启任何一个,左侧菜单就必须显示订单管理,否则不显示 if (1 == $UsersConfig['pay_open'] || 1 == $UsersConfig['shop_open']) { if (in_array(2004021, $not_role_menu_id)) { $searchIndex = array_search(2004021, $not_role_menu_id); if (false !== $searchIndex && isset($not_role_menu_id[$searchIndex])) { unset($not_role_menu_id[$searchIndex]); } } } return $not_role_menu_id; } } if (!function_exists('handle_weapp_url')) { /* * 插件完整url处理成竖线分割的url字符串 * $url 插件完整url * return 竖线分割的url字符串 */ function handle_weapp_url($url = '', $type = 0) { $str_url = ''; if (2 == $type) { $arr = explode('|', $url); foreach ($arr as $key => $val) { $str_url .= $val; if ($key % 2 == 0) { $str_url .= '&'; } else { $str_url .= '='; } } $str_url = trim($str_url, '&'); $str_url = trim($str_url, '='); } else { $result = !empty($url) ? explode('m=admin&c=Weapp&a=execute', $url) : ''; if (!empty($result[1])) { $str_url = str_replace('=', '|', $result[1]); $str_url = str_replace('&', '|', $str_url); } } return $str_url; } }