HiboxSystemOperateController.php 13.2 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434
<?php
Yii::import('application.components.HiboxUpdateCache');
//Yii::import('application.extensions.simplehtmldom.simple_html_dom');
include realpath(Yii::app()->basePath.'/../../util/simplehtmldom/simple_html_dom.php');
/**
 * 系统运营管理控制类
 */
class HiboxSystemOperateController extends HiboxUpdateCache
{
    /*
     * 常量定义
     */
    const HIBOX_SYS_INFO_SET = 0;
    const HIBOX_SYS_ARGS_SET = 1;
    const HIBOX_SYS_OPTS_SET = 2;
    const HIBOX_SYS_FILE_SET = 3;
    
    /**
     * @var string the default layout for the views. Defaults to '//layouts/column2', meaning
     * using two-column layout. See 'protected/views/layouts/column2.php'.
     */
    public $layout = '//layouts/column1';

    /**
     * 系统配置选项参数
     * @var int
     */
    private $_option = 0;
    
    /**
     * @return array action filters
     */
    public function filters()
    {
        return array(
            //'accessControl',
        );
    }
    
    /**
     * 硬件检测管理
     */
    public function actionAdminHardwareTest()
    {
        $this->render('adminHardWare');
    }
    
    /**
     * 系统运营参数管理
     */
    public function actionAdminSystemOperate()
    {
        $this->render('adminSystemOperate');
    }
    
    /**
     * 加载系统运营配置页面
     */
    public function actionDirSystemSettingPage()
    {
        static $function = array('getSysInfo', 'getSysArgs', 'getSysOpts', 'getSysFile');
        static $viewTemplate = array('_setSysInfo', '_setSysArgs', '_setSysOpts', '_setSysFile');
        
        $iniArray = $this->parseIniFileToArray();
        $includeFile = $this->getSystemSettingFile(&$iniArray);

        // 选择自定义的方法获取配置信息
        $systemSettingArray = call_user_func_array(array($this, $function[$this->_option]), array($includeFile));
        
        $this->renderPartial($viewTemplate[$this->_option], array('model' => $systemSettingArray));
    }
    
    /**
     * 设置系统运营参数
     */
    public function actionSetSystemOperateArgs()
    {
        // 对应的方法名称可自置修改
        static $function = array('handleSysInfo', 'handleSysArgs', 'handleSysOpts', 'handleSysFile');
        
        $iniArray = $this->parseIniFileToArray();
        $sourceFile = $this->getSystemSettingFile(&$iniArray);
        
        $fileName = pathinfo($sourceFile, PATHINFO_BASENAME);
        $destDirectory = $this->getBackCacheDirectory();
        $destFile = $destDirectory.DIRECTORY_SEPARATOR.$fileName;
        
        // 如果目录不存在新建一个可写目录
        if (!file_exists($destDirectory))
        {
            mkdir($destDirectory, 0777);
        }
        
        // 如果目标目录不可写, 改变文件模式
        if (!is_writable($destDirectory))
        {
            chmod($destFile, 0777);
        }
        
        // 如果源文件可读, 复制源文件到目标文件
        if (is_readable($sourceFile))
        {
            if ( ($sourceFile == $destFile) || copy($sourceFile, $destFile) )
            {
                call_user_func_array(array($this, $function[$this->_option]), array($destFile, $_POST));
            }
        }
        
        // 改变文件权限
        chmod($destFile, 0755);
        
        Yii::app()->user->setFlash('success', '保存成功!');
        
        $this->render('adminSystemOperate');
    }
    
    /**
     * 更新缓存文件
     * 
     * 同步HIBOX后台管理的修改后的缓存文件到HIBOX后台对应目录文件
     */
    public function actionUpdateCacheFile()
    {
        $this->updateCacheFile();
    }
    
    /**
     * 获取系统基本参数
     * 
     * [此方法仅对HIBOX页面有效]
     * 
     * @param string $includeFile
     */
    protected function getSysArgs($includeFile)
    {
        // 加载指定的系统配置文件
        include $includeFile;
        
        // 获取系统定义的所有常量
        $systemConstantsArray = get_defined_constants(true);
        $systemConstantsArray = $systemConstantsArray["user"];
        
        // 获取需要管理的所有常量
        $settingConstantsArray = ReplaceViewDataValue::getReplaced(99, null, false);
        
        // 获取系统运营参数定义的常量列表
        $systemConstantsArray = array_intersect_key($systemConstantsArray, $settingConstantsArray);
        
        unset($includeFile);
        unset($settingConstantsArray);
        
        return $systemConstantsArray;
    }
    
    /**
     * 获取系统信息配置
     * 
     * [此方法仅对HIBOX页面有效]
     * 
     * @param string $includeFile
     * @return array
     */
    protected function getSysInfo($includeFile)
    {
        $systemInfoArray = array(
                                    'title' => '',
                                    'keywords' => '',
                                    'description' => '',
                                    'copyright' => '',
                                    'footer' => '',
                                );
        
//        // 获取文件所有的 meta标签 content 属性,返回一个数组 
//        $meta = get_meta_tags($includeFile);
//        // 网站关键字
//        $systemInfoArray['keywords'] = $meta['keywords'];
//        // 网站描述信息
//        $systemInfoArray['description'] = $meta['description'];
        
        // 获取文件的 HTML DOM 结构
        $html = $this->_getFileHtmlDom($includeFile);
        
        // 缩短查找范围到头部区域
        $e = $html->find('head', 0);
        if (null != $e)
        {
            // 获取网站头部标题
            $find = $e->find('title', 0);
            if (null != $find)
            {
                $systemInfoArray['title'] = $find->innertext;
            }
            // 获取网站关键字
            $find = $e->find('meta[name=Keywords]', 0);
            if (null != $find)
            {
                $systemInfoArray['keywords'] = $find->getAttribute("content");
            }
            // 获取网站描述信息
            $find = $e->find('meta[name=Description]', 0);
            if (null != $find)
            {
                $systemInfoArray['description'] = $find->getAttribute("content");
            }
        }
        
        // 缩短查找范围到主体区域
        $e = $html->find('body', 0);
        if (null != $e)
        {
            // 获取网站底部信息
            $find = $e->find('p[class=text3]', 0);
            if (null != $find)
            {
                $systemInfoArray['footer'] = $find->innertext;
            }
            // 获取网站版权信息
            $find = $e->find('p[class=l_footer]', 0);
            if (null != $find)
            {
                $systemInfoArray['copyright'] = $find->innertext;
            }
        }
        
        unset($e);
        unset($html);
        
        return $systemInfoArray;
    }
    
    /**
     * 获取系统选项配置
     * @param string $includeFile
     */
    protected function getSysOpts($includeFile)
    {
        
    }
    
    /**
     * 获取系统文件配置
     * @param unknown_type $includeFile
     */
    protected function getSysFile($includeFile)
    {

    }
    
    
    /**
     * 根据常量的替换值修改文件内容
     * 
     * [此方法仅对HIBOX页面有效]
     * 
     * @param string $file
     * @param array $replace
     */
    protected function handleSysArgs($file, $replace = array())
    {
        $content = file_get_contents($file);
        
        // 查找的开始位置
        $start = 0;
        $isEqual = true;
        
        foreach ($replace as $key=>$value)
        {
            $offset = strpos($content, $key, $start);
            // 查找在此文件中是否存在定义的常量, 存在则替换其常量值
            if ($offset !== false)
            {
                $offset = strpos($content, ',', $offset);
                $length = strpos($content, ')', $offset);
                // 获取原来定义的常量的值
                $sourceValue = trim(substr($content, $offset+1, $length-$offset-1));
                // 比较替换的常量值是否与原来常量值相同
                if (strcmp($sourceValue, $value) !== 0)
                {
                    $content = substr_replace($content, $value, $offset+1, $length-$offset-1);
                    $isEqual = false;
                }
                $start = $offset;
            }
            continue;
        }
        
        if ($isEqual)
        {
            // 清除缓存文件
            unlink($file);
            
            throw new CHttpException(400, '您当前保存的配置尚未进行任何修改!');
        }
        
        file_put_contents($file, $content);
        unset($content);
    }
    
    /**
     * 借助HTML DOM方法 替换文件内容
     * 
     * [此方法仅对HIBOX页面有效]
     * 
     * @param string $file
     * @param array $replace
     */
    protected function handleSysInfo($file, $replace = array())
    {
        $html = $this->_getFileHtmlDom($file);
        
        // 缩短查找范围到头部区域
        $e = $html->find('head', 0);
        if (null != $e)
        {
            // 设置网站头部标题
            $find = $e->find('title', 0);
            if (null != $find)
            {
                $find->innertext = $replace['title'];
            }
            // 设置网站关键字
            $find = $e->find('meta[name=Keywords]', 0);
            if (null != $find)
            {
                $find->setAttribute("content", $replace['keywords']);
            }
            // 设置网站描述信息
            $find = $e->find('meta[name=Description]', 0);
            if (null != $find)
            {
                $find->setAttribute("content", $replace['description']);
            }
        }
        
        // 缩短查找范围到主体区域
        $e = $html->find('body', 0);
        if (null != $e)
        {
            // 设置网站底部信息
            $find = $e->find('p[class=text3]', 0);
            if (null != $find)
            {
                $find->innertext = $replace['footer'];
            }
            // 设置网站版权信息
            $find = $e->find('p[class=l_footer]', 0);
            if (null != $find)
            {
                $find->innertext = $replace['copyright'];
            }
        }
        
        $html->save($file);
        unset($html);
    }
    
    /**
     * 获取系统配置文件
     * 
     * @param array $iniArray
     * @return string
     */
    protected function getSystemSettingFile($iniArray)
    {
        $includeFile = null;
        
        if (empty($iniArray))
        {
            throw new CHttpException(400, $this->_loadFileError);
        }
        
        if (isset($_REQUEST['arg']))
        {
            $this->_option = (int) $_REQUEST['arg'];
        }
        
        // 前端文件所在的目录地址
        $frontDirectory = $this->getCurrentFrontDirectory();
        // 目标缓存文件存放的目录
        $destDirectory = $this->getBackCacheDirectory();
        
        switch ($this->_option)
        {
            case self::HIBOX_SYS_INFO_SET:   // 网站信息配置
                $includeFile = $destDirectory.DIRECTORY_SEPARATOR.$iniArray["HIBOX_SYS_INFO_SET"]["file"];
                if (!file_exists($includeFile))
                {
                    $includeFile = $frontDirectory.$iniArray["HIBOX_SYS_INFO_SET"]["path"].DIRECTORY_SEPARATOR.$iniArray["HIBOX_SYS_INFO_SET"]["file"];
                }
                break;
            case self::HIBOX_SYS_ARGS_SET:   // 网站参数配置
                $includeFile = $destDirectory.DIRECTORY_SEPARATOR.$iniArray["HIBOX_SYS_ARGS_SET"]["file"];
                if (!file_exists($includeFile))
                {
                    $includeFile = $frontDirectory.$iniArray["HIBOX_SYS_ARGS_SET"]["path"].DIRECTORY_SEPARATOR.$iniArray["HIBOX_SYS_ARGS_SET"]["file"];
                }
                break;
            case self::HIBOX_SYS_OPTS_SET:   // 网站选项配置
                $includeFile = $destDirectory.DIRECTORY_SEPARATOR.$iniArray["HIBOX_SYS_OPTS_SET"]["file"];
                if (!file_exists($destDirectory))
                {
                    $includeFile = $frontDirectory.$iniArray["HIBOX_SYS_OPTS_SET"]["path"].DIRECTORY_SEPARATOR.$iniArray["HIBOX_SYS_OPTS_SET"]["file"];
                }
                break;
            case self::HIBOX_SYS_FILE_SET:   // 网站文件配置
                $includeFile = $destDirectory.DIRECTORY_SEPARATOR.$iniArray["HIBOX_SYS_FILE_SET"]["file"];
                if (!file_exists($includeFile))
                {
                    $includeFile = $frontDirectory.$iniArray["HIBOX_SYS_FILE_SET"]["path"].DIRECTORY_SEPARATOR.$iniArray["HIBOX_SYS_FILE_SET"]["file"];
                }
                break;
        }
        
        return $includeFile;
    }
    
    /**
     * 获取文件的 HTML DOM 结构
     * 
     * @param string $fileName
     * @return object
     */
    private function _getFileHtmlDom() 
    {
        //TODO        修改 
        $dom = new simple_html_dom;
        $args = func_get_args();
        $str = call_user_func_array('file_get_contents', $args);
        $dom->load($str, true);
        
        return $dom;
    }
}
?>