|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158 |
- <?php
- /**
- *
- * @version $id:config.php 14:31 2010年7月12日 tianya $
- * @package DedeBIZ.Administrator
- * @copyright Copyright (c) 2022 DedeBIZ.COM
- * @license GNU GPL v2 (https://www.dedebiz.com/license)
- * @link https://www.dedebiz.com
- */
- define('DEDEADMIN', str_replace("\\", '/', dirname(__FILE__)));
- require_once(DEDEADMIN.'/../system/common.inc.php');
- require_once(DEDEINC.'/userlogin.class.php');
- header('Cache-Control:private');
- $dsql->safeCheck = FALSE;
- $dsql->SetLongLink();
- //检查CSRF
- function CheckCSRF()
- {
- $cc_csrf_token_check = GetCookie("dede_csrf_token");
- DropCookie("dede_csrf_token");
- }
- //生成CSRF校验token,在比较重要的表单中应该要加上这个token校验
- $cc_csrf_token = GetCookie("dede_csrf_token");
- if (!isset($GLOBALS['csrf_token']) || $GLOBALS['csrf_token'] === null) {
- if (
- isset($cc_csrf_token) && is_string($cc_csrf_token)
- && preg_match('#^[0-9a-f]{32}$#iS', $cc_csrf_token) === 1
- ) {
- $GLOBALS['csrf_token'] = $cc_csrf_token;
- } else {
- $GLOBALS['csrf_token'] = md5(uniqid(mt_rand(), TRUE));
- }
- }
- if (strtoupper($_SERVER['REQUEST_METHOD']) !== 'POST') {
- PutCookie('dede_csrf_token', $GLOBALS['csrf_token'], 7200, '/');
- }
- //获得当前脚本名称,如果您的系统被禁用了$_SERVER变量,请自行修改这个选项
- $dedeNowurl = $s_scriptName = '';
- $isUrlOpen = @ini_get('allow_url_fopen');
- $dedeNowurl = GetCurUrl();
- $dedeNowurls = explode('?', $dedeNowurl);
- $s_scriptName = $dedeNowurls[0];
- //检验会员登录状态
- $cuserLogin = new userLogin();
- if ($cuserLogin->getUserID() == -1) {
- if (preg_match("#PHP (.*) Development Server#", $_SERVER['SERVER_SOFTWARE'])) {
- $dirname = dirname($_SERVER['SCRIPT_NAME']);
- header("location:{$dirname}/login.php?gotopage=".urlencode($dedeNowurl));
- } else {
- header("location:login.php?gotopage=".urlencode($dedeNowurl));
- }
- exit();
- }
- function XSSClean($val)
- {
- if (is_array($val)) {
- foreach ($val as $key => $v) {
- if (in_array($key, array('tags', 'body', 'dede_fields', 'dede_addonfields', 'dopost', 'introduce', 'geturl'))) continue;
- $val[$key] = XSSClean($val[$key]);
- }
- return $val;
- }
- return RemoveXss($val);
- }
- if ($cfg_dede_log == 'Y') {
- $s_nologfile = '_main|_list';
- $s_needlogfile = 'sys_|file_';
- $s_method = isset($_SERVER['REQUEST_METHOD']) ? $_SERVER['REQUEST_METHOD'] : '';
- $s_query = isset($dedeNowurls[1]) ? $dedeNowurls[1] : '';
- $s_scriptNames = explode('/', $s_scriptName);
- $s_scriptNames = $s_scriptNames[count($s_scriptNames) - 1];
- $s_userip = GetIP();
- if ($s_method == 'POST' || (!preg_match("#".$s_nologfile."#i", $s_scriptNames) && $s_query != '') || preg_match("#".$s_needlogfile."#i", $s_scriptNames)) {
- $inquery = "INSERT INTO `#@__log` (adminid,filename,method,query,cip,dtime) VALUES ('".$cuserLogin->getUserID()."','{$s_scriptNames}','{$s_method}','".addslashes($s_query)."','{$s_userip}','".time()."');";
- $dsql->ExecuteNoneQuery($inquery);
- }
- }
- if (file_exists(DEDEDATA."/downmix.data.php")) {
- rename(DEDEDATA."/downmix.data.php",DEDEDATA."/downmix.data.inc");
- }
- //管理缓存管理员栏目缓存
- $cache1 = DEDEDATA.'/cache/inc_catalog_base.inc';
- if (!file_exists($cache1)) UpDateCatCache();
- $cacheFile = DEDEDATA.'/cache/admincat_'.$cuserLogin->userID.'.inc';
- if (file_exists($cacheFile)) require_once($cacheFile);
- /**
- * 更新栏目缓存
- *
- * @access public
- * @return void
- */
- function UpDateCatCache()
- {
- global $dsql, $cache1, $cuserLogin;
- $cache2 = DEDEDATA.'/cache/channelsonlist.inc';
- $cache3 = DEDEDATA.'/cache/channeltoplist.inc';
- $dsql->SetQuery("SELECT id,reid,channeltype,issend,typename FROM `#@__arctype`");
- $dsql->Execute();
- $fp1 = fopen($cache1, 'w');
- $phph = '?';
- $fp1Header = "<{$phph}php\r\nglobal \$cfg_Cs;\r\n\$cfg_Cs=array();\r\n";
- fwrite($fp1, $fp1Header);
- while ($row = $dsql->GetObject()) {
- //typename缓存起来
- $row->typename = base64_encode($row->typename);
- fwrite($fp1, "\$cfg_Cs[{$row->id}]=array({$row->reid},{$row->channeltype},{$row->issend},'{$row->typename}');\r\n");
- }
- fwrite($fp1, "{$phph}>");
- fclose($fp1);
- $cuserLogin->ReWriteAdminChannel();
- @unlink($cache2);
- @unlink($cache3);
- }
- //清空选项缓存
- function ClearOptCache()
- {
- $tplCache = DEDEDATA.'/tplcache/';
- $fileArray = glob($tplCache."inc_option_*.inc");
- if (count($fileArray) > 1) {
- foreach ($fileArray as $key => $value) {
- if (file_exists($value)) unlink($value);
- else continue;
- }
- return TRUE;
- }
- return FALSE;
- }
- /**
- * 引入模板文件
- *
- * @access public
- * @param string $filename 文件名称
- * @param bool $isabs 是否为管理目录
- * @return string
- */
- function DedeInclude($filename, $isabs = FALSE)
- {
- return $isabs ? $filename : DEDEADMIN.'/'.$filename;
- }
- /**
- * 根据会员mid获取账号
- *
- * @access public
- * @param int $mid 会员id
- * @return string
- */
- if (!function_exists('GetMemberName')) {
- function GetMemberName($mid = 0)
- {
- global $dsql;
- if (empty($mid)) {
- return "管理员";
- }
- $rs = $dsql->GetOne("SELECT * FROM `#@__member` WHERE mid='{$mid}' ");
- return $rs['uname'];
- }
- }
- ?>
|