mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-06 10:11:38 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4331 201d5d3c-b55e-5fd7-737f-ddc643e51545
1072 lines
39 KiB
PHP
1072 lines
39 KiB
PHP
<?php
|
|
/**
|
|
* @class Context
|
|
* @author zero (zero@nzeo.com)
|
|
* @brief Request Argument/환경변수등의 모든 Context를 관리
|
|
*
|
|
* Context 클래스는 Context::methodname() 처럼 쉽게 사용하기 위해 만들어진 객체를 받아서
|
|
* 호출하는 구조를 위해 이중 method 구조를 가지고 있다.
|
|
* php5에서 static variables를 사용하게 된다면 불필요한 구조를 제거할 수 있다.
|
|
* php5 쓰고 싶당.. ㅡ.ㅜ
|
|
**/
|
|
|
|
define('FOLLOW_REQUEST_SSL',0);
|
|
define('ENFORCE_SSL',1);
|
|
define('RELEASE_SSL',2);
|
|
|
|
class Context {
|
|
|
|
var $request_method = 'GET'; ///< @brief GET/POST/XMLRPC 중 어떤 방식으로 요청이 왔는지에 대한 값이 세팅. GET/POST/XML 3가지가 있음
|
|
var $response_method = ''; ///< @brief HTML/XMLRPC 중 어떤 방식으로 결과를 출력할지 결정. (강제 지정전까지는 request_method를 따름)
|
|
|
|
var $context = NULL; ///< @brief request parameter 및 각종 환경 변수등을 정리하여 담을 변수
|
|
|
|
var $db_info = NULL; ///< @brief DB 정보
|
|
|
|
var $ssl_actions = array(); ///< @brief ssl로 전송해야 할 action등록 (common/js/xml_handler.js에서 ajax통신시 활용)
|
|
var $js_files = array(); ///< @brief display시에 사용하게 되는 js files의 목록
|
|
var $css_files = array(); ///< @brief display시에 사용하게 되는 css files의 목록
|
|
|
|
var $html_header = NULL; ///< @brief display시에 사용하게 되는 <head>..</head>내의 스크립트코드
|
|
var $html_footer = NULL; ///< @brief display시에 사용하게 되는 </body> 바로 앞에 추가될 코드
|
|
|
|
var $path = ''; ///< zbxe의 경로
|
|
|
|
/**
|
|
* @brief 언어 정보
|
|
*
|
|
* 기본으로 ko. HTTP_USER_AGENT나 사용자의 직접 세팅(쿠키이용)등을 통해 변경됨
|
|
**/
|
|
var $lang_type = ''; ///< 언어 종류
|
|
var $lang = NULL; ///< 언어 데이터를 담고 있는 변수
|
|
var $loaded_lang_files = array(); ///< 로딩된 언어파일의 목록 (재로딩을 피하기 위함)
|
|
|
|
var $site_title = ''; ///< @brief 현 사이트의 browser title. Context::setBrowserTitle() 로 변경 가능
|
|
|
|
var $get_vars = NULL; ///< @brief form이나 get으로 요청이 들어온 변수만 별도로 관리
|
|
|
|
var $is_uploaded = false; ///< @brief 첨부파일이 업로드 된 요청이였는지에 대한 체크 플래그
|
|
|
|
/**
|
|
* @brief 유일한 Context 객체를 반환 (Singleton)
|
|
*
|
|
* Context는 어디서든 객체 선언없이 사용하기 위해서 static 하게 사용
|
|
**/
|
|
function &getInstance() {
|
|
static $theInstance;
|
|
if(!isset($theInstance)) $theInstance = new Context();
|
|
return $theInstance;
|
|
}
|
|
|
|
/**
|
|
* @brief DB정보, Request Argument등을 세팅
|
|
*
|
|
* Context::init()은 단 한번만 호출되어야 하며 init()시에
|
|
* Request Argument, DB/언어/세션정보등의 모든 정보를 세팅한다
|
|
**/
|
|
function init() {
|
|
// context 변수를 $GLOBALS의 변수로 지정
|
|
$this->context = &$GLOBALS['__Context__'];
|
|
$this->context->lang = &$GLOBALS['lang'];
|
|
$this->context->_COOKIE = $_COOKIE;
|
|
|
|
// 기본적인 DB정보 세팅
|
|
$this->_loadDBInfo();
|
|
|
|
// 세션 핸들러 지정
|
|
$oSessionModel = &getModel('session');
|
|
$oSessionController = &getController('session');
|
|
session_set_save_handler(
|
|
array(&$oSessionController,"open"),
|
|
array(&$oSessionController,"close"),
|
|
array(&$oSessionModel,"read"),
|
|
array(&$oSessionController,"write"),
|
|
array(&$oSessionController,"destroy"),
|
|
array(&$oSessionController,"gc")
|
|
);
|
|
session_start();
|
|
|
|
// 쿠키로 설정된 언어타입 가져오기
|
|
if($_COOKIE['lang_type']) $this->lang_type = $_COOKIE['lang_type'];
|
|
else $this->lang_type = $this->db_info->lang_type;
|
|
|
|
// 등록된 기본 언어파일 찾기
|
|
$langs = file(_XE_PATH_.'common/lang/lang.info');
|
|
$accept_lang = strtolower($_SERVER['HTTP_ACCEPT_LANGUAGE']);
|
|
foreach($langs as $val) {
|
|
list($lang_prefix, $lang_text) = explode(',',$val);
|
|
$lang_text = trim($lang_text);
|
|
$lang_supported[$lang_prefix] = $lang_text;
|
|
if(!$this->lang_type && preg_match('/'.$lang_prefix.'/i',$_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
|
|
$this->lang_type = $lang_prefix;
|
|
setcookie('lang_type', $this->lang_type, time()+60*60*24*365, '/');
|
|
}
|
|
}
|
|
|
|
if(!in_array($this->lang_type, array_keys($lang_supported))) $this->lang_type = $this->db_info->lang_type;
|
|
if(!$this->lang_type) $this->lang_type = "en";
|
|
|
|
Context::set('lang_supported', $lang_supported);
|
|
|
|
$this->setLangType($this->lang_type);
|
|
|
|
// 기본 언어파일 로드
|
|
$this->lang = &$GLOBALS['lang'];
|
|
$this->_loadLang(_XE_PATH_."common/lang/");
|
|
|
|
// Request Method 설정
|
|
$this->_setRequestMethod();
|
|
|
|
// Request Argument 설정
|
|
$this->_setXmlRpcArgument();
|
|
$this->_setRequestArgument();
|
|
$this->_setUploadedArgument();
|
|
|
|
// 인증 관련 정보를 Context와 세션에 설정
|
|
if(Context::isInstalled()) {
|
|
// 인증관련 데이터를 Context에 설정
|
|
$oMemberModel = &getModel('member');
|
|
$oMemberController = &getController('member');
|
|
|
|
// 인증이 되어 있을 경우 유효성 체크
|
|
if($oMemberModel->isLogged()) {
|
|
$oMemberController->setSessionInfo();
|
|
|
|
// 인증이 되어 있지 않을 경우 자동 로그인 확인
|
|
} elseif($_COOKIE['xeak']) {
|
|
$oMemberController->doAutologin();
|
|
}
|
|
|
|
$this->_set('is_logged', $oMemberModel->isLogged() );
|
|
$this->_set('logged_info', $oMemberModel->getLoggedInfo() );
|
|
}
|
|
|
|
// rewrite 모듈사용 상태 체크
|
|
if(file_exists(_XE_PATH_.'.htaccess')&&$this->db_info->use_rewrite == 'Y') $this->allow_rewrite = true;
|
|
else $this->allow_rewrite = false;
|
|
|
|
// 기본 JS/CSS 등록
|
|
$this->addJsFile("./common/js/x.js");
|
|
$this->addJsFile("./common/js/common.js");
|
|
$this->addJsFile("./common/js/xml_handler.js");
|
|
$this->addJsFile("./common/js/xml_js_filter.js");
|
|
$this->addCSSFile("./common/css/default.css");
|
|
$this->addCSSFile("./common/css/button.css");
|
|
|
|
// 관리자 페이지일 경우 관리자 공용 CSS 추가
|
|
if(Context::get('module')=='admin' || strpos(Context::get('act'),'Admin')>0) $this->addCssFile("./modules/admin/tpl/css/admin.css", false);
|
|
|
|
// rewrite module때문에 javascript에서 location.href 문제 해결을 위해 직접 실제 경로 설정
|
|
if($_SERVER['REQUEST_METHOD'] == 'GET') {
|
|
if($this->get_vars) {
|
|
foreach($this->get_vars as $key => $val) {
|
|
if(!$val) continue;
|
|
$url .= ($url?'&':'').$key.'='.$val;
|
|
}
|
|
Context::set('current_url',sprintf('%s?%s', $this->getRequestUri(), $url));
|
|
} else {
|
|
Context::set('current_url',$this->getUrl());
|
|
}
|
|
} else {
|
|
Context::set('current_url',$this->getRequestUri());
|
|
}
|
|
Context::set('request_uri',Context::getRequestUri());
|
|
}
|
|
|
|
/**
|
|
* @brief DB및 기타 자원들의 close
|
|
**/
|
|
function close() {
|
|
// Session Close
|
|
if(function_exists('session_write_close')) session_write_close();
|
|
|
|
// DB close
|
|
$oDB = &DB::getInstance();
|
|
if(is_object($oDB)&&method_exists($oDB, 'close')) $oDB->close();
|
|
}
|
|
|
|
/**
|
|
* @brief DB의 및 기타 정보 load
|
|
**/
|
|
function loadDBInfo() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_loadDBInfo();
|
|
}
|
|
|
|
/**
|
|
* @brief DB 정보를 설정하고 DB Type과 DB 정보를 return
|
|
**/
|
|
function _loadDBInfo() {
|
|
if(!$this->isInstalled()) return;
|
|
|
|
// db 정보 설정
|
|
$db_config_file = $this->getConfigFile();
|
|
if(file_exists($db_config_file)) @include($db_config_file);
|
|
|
|
if(!$db_info->time_zone) $db_info->time_zone = date("O");
|
|
if(!$db_info->use_optimizer || $db_info->use_optimizer != 'N') $db_info->use_optimizer = 'Y';
|
|
else $db_info->use_optimizer = 'N';
|
|
if(!$db_info->qmail_compatibility || $db_info->qmail_compatibility != 'Y') $db_info->qmail_compatibility = 'N';
|
|
else $db_info->qmail_compatibility = 'Y';
|
|
|
|
$this->_setDBInfo($db_info);
|
|
|
|
$GLOBALS['_time_zone'] = $db_info->time_zone;
|
|
$GLOBALS['_qmail_compatibility'] = $db_info->qmail_compatibility;
|
|
}
|
|
|
|
/**
|
|
* @brief DB의 db_type을 return
|
|
**/
|
|
function getDBType() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getDBType();
|
|
}
|
|
|
|
/**
|
|
* @brief DB의 db_type을 return
|
|
**/
|
|
function _getDBType() {
|
|
return $this->db_info->db_type;
|
|
}
|
|
|
|
/**
|
|
* @brief DB 정보가 담긴 object를 return
|
|
**/
|
|
function setDBInfo($db_info) {
|
|
$oContext = &Context::getInstance();
|
|
$oContext->_setDBInfo($db_info);
|
|
}
|
|
|
|
/**
|
|
* @brief DB 정보가 담긴 object를 return
|
|
**/
|
|
function _setDBInfo($db_info) {
|
|
$this->db_info = $db_info;
|
|
}
|
|
|
|
/**
|
|
* @brief DB 정보가 담긴 object를 return
|
|
**/
|
|
function getDBInfo() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getDBInfo();
|
|
}
|
|
|
|
/**
|
|
* @brief DB 정보가 담긴 object를 return
|
|
**/
|
|
function _getDBInfo() {
|
|
return $this->db_info;
|
|
}
|
|
|
|
/**
|
|
* @brief 사이트 title adding
|
|
**/
|
|
function addBrowserTitle($site_title) {
|
|
if(!$site_title) return;
|
|
$oContext = &Context::getInstance();
|
|
$oContext->_addBrowserTitle($site_title);
|
|
}
|
|
|
|
/**
|
|
* @brief 사이트 title adding
|
|
**/
|
|
function _addBrowserTitle($site_title) {
|
|
if($this->site_title) $this->site_title .= ' - '.htmlspecialchars($site_title);
|
|
else $this->site_title .= htmlspecialchars($site_title);
|
|
}
|
|
|
|
/**
|
|
* @brief 사이트 title setting
|
|
**/
|
|
function setBrowserTitle($site_title) {
|
|
if(!$site_title) return;
|
|
$oContext = &Context::getInstance();
|
|
$oContext->_setBrowserTitle($site_title);
|
|
}
|
|
|
|
/**
|
|
* @brief 사이트 title setting
|
|
**/
|
|
function _setBrowserTitle($site_title) {
|
|
$this->site_title = htmlspecialchars($site_title);
|
|
}
|
|
|
|
/**
|
|
* @brief 사이트 title return
|
|
**/
|
|
function getBrowserTitle() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getBrowserTitle();
|
|
}
|
|
|
|
/**
|
|
* @brief 사이트 title return
|
|
**/
|
|
function _getBrowserTitle() {
|
|
return $this->site_title;
|
|
}
|
|
|
|
/**
|
|
* @brief 지정된 언어파일 로드
|
|
**/
|
|
function loadLang($path) {
|
|
$oContext = &Context::getInstance();
|
|
$oContext->_loadLang($path);
|
|
}
|
|
|
|
/**
|
|
* @brief 지정된 언어파일 로드
|
|
*
|
|
* loaded_lang_files 변수를 이용하여 한번 로드된 파일을 다시 로드하지 않음
|
|
**/
|
|
function _loadLang($path) {
|
|
global $lang;
|
|
if(substr($path,-1)!='/') $path .= '/';
|
|
$filename = sprintf('%s%s.lang.php', $path, $this->lang_type);
|
|
if(!file_exists($filename)) $filename = sprintf('%s%s.lang.php', $path, 'ko');
|
|
if(!file_exists($filename)) return;
|
|
if(!is_array($this->loaded_lang_files)) $this->loaded_lang_files = array();
|
|
if(in_array($filename, $this->loaded_lang_files)) return;
|
|
$this->loaded_lang_files[] = $filename;
|
|
include($filename);
|
|
}
|
|
|
|
/**
|
|
* @brief lang_type을 세팅 (기본 ko)
|
|
**/
|
|
function setLangType($lang_type = 'ko') {
|
|
$oContext = &Context::getInstance();
|
|
$oContext->_setLangType($lang_type);
|
|
$_SESSION['lang_type'] = $lang_type;
|
|
}
|
|
|
|
/**
|
|
* @brief lang_type을 세팅 (기본 ko)
|
|
**/
|
|
function _setLangType($lang_type = 'ko') {
|
|
$this->lang_type = $lang_type;
|
|
$this->_set('lang_type',$lang_type);
|
|
}
|
|
|
|
/**
|
|
* @brief lang_type을 return
|
|
**/
|
|
function getLangType() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getLangType();
|
|
}
|
|
|
|
/**
|
|
* @brief lang_type을 return
|
|
**/
|
|
function _getLangType() {
|
|
return $this->lang_type;
|
|
}
|
|
|
|
/**
|
|
* @brief code에 해당하는 문자열을 return
|
|
*
|
|
* 만약 code에 해당하는 문자열이 없다면 code를 그대로 리턴
|
|
**/
|
|
function getLang($code) {
|
|
if(!$code) return;
|
|
if($GLOBALS['lang']->{$code}) return $GLOBALS['lang']->{$code};
|
|
return $code;
|
|
}
|
|
|
|
/**
|
|
* @brief 직접 lang 변수에 데이터를 추가
|
|
**/
|
|
function setLang($code, $val) {
|
|
$GLOBALS['lang']->{$code} = $val;
|
|
}
|
|
|
|
/**
|
|
* @brief object내의 variables의 문자열을 utf8로 변경
|
|
**/
|
|
function convertEncoding($source_obj) {
|
|
$charset_list = array(
|
|
'UTF-8', 'EUC-KR', 'CP949', 'ISO-8859-1', 'EUC-JP', 'SHIFT_JIS', 'CP932',
|
|
'EUC-CN', 'HZ', 'GBK', 'GB18030', 'EUC-TW', 'BIG5', 'CP950', 'BIG5-HKSCS',
|
|
'ISO-2022-CN', 'ISO-2022-CN-EXT', 'ISO-2022-JP', 'ISO-2022-JP-2', 'ISO-2022-JP-1',
|
|
'ISO-8859-6', 'ISO-8859-8', 'JOHAB', 'ISO-2022-KR', 'CP1255', 'CP1256', 'CP862',
|
|
'ASCII', 'ISO-8859-1', 'ISO-8850-2', 'ISO-8850-3', 'ISO-8850-4', 'ISO-8850-5',
|
|
'ISO-8850-7', 'ISO-8850-9', 'ISO-8850-10', 'ISO-8850-13', 'ISO-8850-14',
|
|
'ISO-8850-15', 'ISO-8850-16', 'CP1250', 'CP1251', 'CP1252', 'CP1253', 'CP1254',
|
|
'CP1257', 'CP850', 'CP866',
|
|
);
|
|
|
|
$obj = clone($source_obj);
|
|
|
|
for($i=0;$i<count($charset_list);$i++) {
|
|
$charset = $charset_list[$i];
|
|
$flag = true;
|
|
foreach($obj as $key=>$val) {
|
|
if(!$val) continue;
|
|
if($val && iconv($charset,$charset,$val)!=$val) $flag = false;
|
|
}
|
|
if($flag == true) {
|
|
if($charset == 'UTF-8') return $obj;
|
|
foreach($obj as $key => $val) $obj->{$key} = iconv($charset,'UTF-8',$val);
|
|
return $obj;
|
|
}
|
|
}
|
|
return $obj;
|
|
}
|
|
|
|
/**
|
|
* @brief 특정 문자열만 utf-8로 변경
|
|
**/
|
|
function convertEncodingStr($str) {
|
|
$obj->str = $str;
|
|
$obj = Context::convertEncoding($obj);
|
|
return $obj->str;
|
|
}
|
|
|
|
/**
|
|
* @brief response method를 강제로 지정 (기본으로는 request method를 이용함)
|
|
*
|
|
* method의 종류에는 HTML/ TEXT/ XMLRPC가 있음
|
|
**/
|
|
function setResponseMethod($method = "HTML") {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_setResponseMethod($method);
|
|
}
|
|
|
|
function _setResponseMethod($method = "HTML") {
|
|
$this->response_method = $method;
|
|
}
|
|
|
|
/**
|
|
* @brief response method 값을 return
|
|
*
|
|
* method의 종류에는 HTML/ TEXT/ XMLRPC가 있음
|
|
* 별도로 response method를 지정하지 않았다면 request method로 판단하여 결과 return
|
|
**/
|
|
function getResponseMethod() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getResponseMethod();
|
|
}
|
|
|
|
function _getResponseMethod() {
|
|
if($this->response_method) return $this->response_method;
|
|
|
|
if($this->_getRequestMethod()=="XMLRPC") return "XMLRPC";
|
|
return "HTML";
|
|
}
|
|
|
|
/**
|
|
* @brief request method가 어떤것인지 판단하여 저장 (GET/POST/XMLRPC)
|
|
**/
|
|
function setRequestMethod($type) {
|
|
$oContext = &Context::getInstance();
|
|
$oContext->_setRequestMethod($type);
|
|
}
|
|
|
|
|
|
/**
|
|
* @brief request method가 어떤것인지 판단하여 저장 (GET/POST/XMLRPC)
|
|
**/
|
|
function _setRequestMethod($type = '') {
|
|
if($type) return $this->request_method = $type;
|
|
|
|
if($GLOBALS['HTTP_RAW_POST_DATA']) return $this->request_method = "XMLRPC";
|
|
|
|
$this->request_method = $_SERVER['REQUEST_METHOD'];
|
|
}
|
|
|
|
/**
|
|
* @brief GET/POST방식일 경우 처리
|
|
**/
|
|
function _setRequestArgument() {
|
|
if($this->_getRequestMethod() == 'XMLRPC') return;
|
|
if(!count($_REQUEST)) return;
|
|
|
|
foreach($_REQUEST as $key => $val) {
|
|
if($key == "page" || $key == "cpage" || substr($key,-3)=="srl") $val = (int)$val;
|
|
else if(is_array($val) && count($val) ) {
|
|
foreach($val as $k => $v) {
|
|
if(get_magic_quotes_gpc()) $v = stripslashes($v);
|
|
$v = trim($v);
|
|
$val[$k] = $v;
|
|
}
|
|
} else {
|
|
if(get_magic_quotes_gpc()) $val = stripslashes($val);
|
|
$val = trim($val);
|
|
}
|
|
if(!$val) continue;
|
|
|
|
if($this->_getRequestMethod()=='GET'&&$_GET[$key]) $set_to_vars = true;
|
|
elseif($this->_getRequestMethod()=='POST'&&$_POST[$key]) $set_to_vars = true;
|
|
else $set_to_vars = false;
|
|
$this->_set($key, $val, $set_to_vars);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief XML RPC일때
|
|
**/
|
|
function _setXmlRpcArgument() {
|
|
if($this->_getRequestMethod() != 'XMLRPC') return;
|
|
$oXml = new XmlParser();
|
|
$xml_obj = $oXml->parse();
|
|
|
|
$params = $xml_obj->methodcall->params;
|
|
unset($params->node_name);
|
|
|
|
unset($params->attrs);
|
|
if(!count($params)) return;
|
|
|
|
foreach($params as $key => $obj) {
|
|
$val = trim($obj->body);
|
|
$this->_set($key, $val, true);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief 업로드 되었을 경우 return true
|
|
**/
|
|
function isUploaded() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_isUploaded();
|
|
}
|
|
|
|
/**
|
|
* @brief 업로드 되었을 경우 return true
|
|
**/
|
|
function _isUploaded() {
|
|
return $this->is_uploaded;
|
|
}
|
|
|
|
/**
|
|
* @brief 업로드된 파일이 있을 경우도 역시 context에 통합 처리 (단 정상적인 업로드인지 체크)
|
|
**/
|
|
function _setUploadedArgument() {
|
|
if($this->_getRequestMethod() != 'POST') return;
|
|
if(!preg_match("/multipart\/form-data/i",$_SERVER['CONTENT_TYPE'])) return;
|
|
if(!$_FILES) return;
|
|
|
|
foreach($_FILES as $key => $val) {
|
|
$tmp_name = $val['tmp_name'];
|
|
if(!$tmp_name || !is_uploaded_file($tmp_name)) continue;
|
|
$this->_set($key, $val, true);
|
|
$this->is_uploaded = true;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @brief Request Method값을 return (GET/POST/XMLRPC);
|
|
**/
|
|
function getRequestMethod() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getRequestMethod();
|
|
}
|
|
|
|
/**
|
|
* @brief Request Method값을 return (GET/POST/XMLRPC);
|
|
**/
|
|
function _getRequestMethod() {
|
|
return $this->request_method;
|
|
}
|
|
|
|
/**
|
|
* @brief 요청받은 url에 args_list를 적용하여 return
|
|
**/
|
|
function getUrl($num_args=0, $args_list=array()) {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getUrl($num_args, $args_list);
|
|
}
|
|
|
|
/**
|
|
* @brief 요청받은 url에 args_list를 적용하여 return
|
|
**/
|
|
function _getUrl($num_args=0, $args_list=array()) {
|
|
if(!$this->get_vars || $args_list[0]=='') {
|
|
$get_vars = null;
|
|
if($args_list[0]=='') {
|
|
array_shift($args_list);
|
|
$num_args = count($args_list);
|
|
}
|
|
} else {
|
|
$get_vars = get_object_vars($this->get_vars);
|
|
}
|
|
|
|
for($i=0;$i<$num_args;$i=$i+2) {
|
|
$key = $args_list[$i];
|
|
$val = trim($args_list[$i+1]);
|
|
if(!$val) {
|
|
unset($get_vars[$key]);
|
|
continue;
|
|
}
|
|
$get_vars[$key] = $val;
|
|
}
|
|
|
|
/* member module중의 쪽지함/친구 관리 기능이 communication 모듈로 이전하여 하위 호환성을 위한 act값 변경 */
|
|
if($get_vars['act'] == 'dispMemberFriend') $get_vars['act'] = 'dispCommunicationFriend';
|
|
elseif($get_vars['act'] == 'dispMemberMessages') $get_vars['act'] = 'dispCommunicationMessages';
|
|
|
|
$var_count = count($get_vars);
|
|
if(!$var_count) return '';
|
|
|
|
if($get_vars['act'] && $this->isExistsSSLAction($get_vars['act'])) $path = $this->getRequestUri(ENFORCE_SSL);
|
|
else $path = $this->getRequestUri(RELEASE_SSL);
|
|
|
|
// rewrite모듈을 사용할때 getUrl()을 이용한 url 생성
|
|
if($this->allow_rewrite) {
|
|
if(count($get_vars)) foreach($get_vars as $key => $value) if($value !== 0 && !$value) unset($get_vars[$key]);
|
|
|
|
$var_keys = array_keys($get_vars);
|
|
asort($var_keys);
|
|
$target = implode('.',$var_keys);
|
|
|
|
switch($target) {
|
|
case 'mid' :
|
|
return $path.$get_vars['mid'];
|
|
case 'document_srl' :
|
|
return $path.$get_vars['document_srl'];
|
|
case 'act.mid' :
|
|
return sprintf('%s%s/%s',$path,$get_vars['mid'],$get_vars['act']);
|
|
case 'document_srl.mid' :
|
|
return sprintf('%s%s/%s',$path,$get_vars['mid'],$get_vars['document_srl']);
|
|
case 'act.document_srl' :
|
|
return sprintf('%s%s/%s',$path,$get_vars['document_srl'],$get_vars['act']);
|
|
case 'mid.page' :
|
|
return sprintf('%s%s/page/%s',$path,$get_vars['mid'],$get_vars['page']);
|
|
case 'category.mid' :
|
|
return sprintf('%s%s/category/%s',$path,$get_vars['mid'],$get_vars['category']);
|
|
case 'act.document_srl.key' :
|
|
return sprintf('%s%s/%s/%s',$path,$get_vars['document_srl'],$get_vars['key'],$get_vars['act']);
|
|
case 'document_srl.mid.page' :
|
|
return sprintf('%s%s/%s/page/%s',$path,$get_vars['mid'],$get_vars['document_srl'],$get_vars['page']);
|
|
case 'category.mid.page' :
|
|
return sprintf('%s%s/category/%s/page/%s',$path,$get_vars['mid'],$get_vars['category'],$get_vars['page']);
|
|
case 'mid.search_keyword.search_target' :
|
|
switch($get_vars['search_target']) {
|
|
case 'tag' :
|
|
return sprintf('%s%s/tag/%s',$path,$get_vars['mid'],str_replace(' ','-',$get_vars['search_keyword']));
|
|
case 'nick_name' :
|
|
return sprintf('%s%s/writer/%s',$path,$get_vars['mid'],str_replace(' ','-',$get_vars['search_keyword']));
|
|
case 'regdate' :
|
|
if(strlen($get_vars['search_keyword'])==8) return sprintf('%s%s/%04d/%02d/%02d',$path,$get_vars['mid'],substr($get_vars['search_keyword'],0,4),substr($get_vars['search_keyword'],4,2),substr($get_vars['search_keyword'],6,2));
|
|
elseif(strlen($get_vars['search_keyword'])==6) return sprintf('%s%s/%04d/%02d',$path,$get_vars['mid'],substr($get_vars['search_keyword'],0,4),substr($get_vars['search_keyword'],4,2));
|
|
}
|
|
break;
|
|
case 'act.document_srl.mid' :
|
|
return sprintf('%s%s/%s/%s',$path,$get_vars['mid'], $get_vars['act'],$get_vars['document_srl']);
|
|
case 'act.document_srl.mid.page' :
|
|
return sprintf('%s%s/%s/%s/page/%s',$path,$get_vars['mid'], $get_vars['act'], $get_vars['document_srl'],$get_vars['page']);
|
|
}
|
|
}
|
|
|
|
// rewrite 모듈을 사용하지 않고 인자의 값이 2개 이상이거나 rewrite모듈을 위한 인자로 적당하지 않을 경우
|
|
foreach($get_vars as $key => $val) {
|
|
if(!$val) continue;
|
|
$url .= ($url?'&':'').$key.'='.urlencode($val);
|
|
}
|
|
|
|
return $path.'?'.htmlspecialchars($url);
|
|
}
|
|
|
|
/**
|
|
* @brief 요청이 들어온 URL에서 argument를 제거하여 return
|
|
**/
|
|
function getRequestUri($ssl_mode = FOLLOW_REQUEST_SSL) {
|
|
switch($ssl_mode) {
|
|
case FOLLOW_REQUEST_SSL :
|
|
if($_SERVER['HTTPS']=='on') $use_ssl = true;
|
|
else $use_ssl = false;
|
|
break;
|
|
case ENFORCE_SSL :
|
|
$use_ssl = true;
|
|
break;
|
|
case RELEASE_SSL :
|
|
$use_ssl = false;
|
|
break;
|
|
}
|
|
|
|
return sprintf("%s://%s%s",$use_ssl?'https':'http',$_SERVER['HTTP_HOST'], getScriptPath());
|
|
}
|
|
|
|
/**
|
|
* @brief key/val로 context vars 세팅
|
|
**/
|
|
function set($key, $val, $set_to_get_vars = false) {
|
|
$oContext = &Context::getInstance();
|
|
$oContext->_set($key, $val, $set_to_get_vars);
|
|
}
|
|
|
|
/**
|
|
* @brief key/val로 context vars 세팅
|
|
**/
|
|
function _set($key, $val, $set_to_get_vars = false) {
|
|
$this->context->{$key} = $val;
|
|
if($set_to_get_vars || $this->get_vars->{$key}) $this->get_vars->{$key} = $val;
|
|
}
|
|
|
|
/**
|
|
* @brief key값에 해당하는 값을 return
|
|
**/
|
|
function get($key) {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_get($key);
|
|
}
|
|
|
|
/**
|
|
* @brief key값에 해당하는 값을 return
|
|
**/
|
|
function _get($key) {
|
|
return $this->context->{$key};
|
|
}
|
|
|
|
/**
|
|
* @brief 받고자 하는 변수만 object에 입력하여 받음
|
|
*
|
|
* key1, key2, key3 .. 등의 인자를 주어 여러개의 변수를 object vars로 세팅하여 받을 수 있음
|
|
**/
|
|
function gets() {
|
|
$num_args = func_num_args();
|
|
if($num_args<1) return;
|
|
$args_list = func_get_args();
|
|
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_gets($num_args, $args_list);
|
|
}
|
|
|
|
/**
|
|
* @brief 받고자 하는 변수만 object에 입력하여 받음
|
|
*
|
|
* key1, key2, key3 .. 등의 인자를 주어 여러개의 변수를 object vars로 세팅하여 받을 수 있음
|
|
**/
|
|
function _gets($num_args, $args_list) {
|
|
for($i=0;$i<$num_args;$i++) {
|
|
$args = $args_list[$i];
|
|
$output->{$args} = $this->_get($args);
|
|
}
|
|
return $output;
|
|
}
|
|
|
|
/**
|
|
* @brief 모든 데이터를 return
|
|
**/
|
|
function getAll() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getAll();
|
|
}
|
|
|
|
/**
|
|
* @brief 모든 데이터를 return
|
|
**/
|
|
function _getAll() {
|
|
return $this->context;
|
|
}
|
|
|
|
/**
|
|
* @brief GET/POST/XMLRPC에서 넘어온 변수값을 return
|
|
**/
|
|
function getRequestVars() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getRequestVars();
|
|
}
|
|
|
|
/**
|
|
* @brief GET/POST/XMLRPC에서 넘어온 변수값을 return
|
|
**/
|
|
function _getRequestVars() {
|
|
return clone($this->get_vars);
|
|
}
|
|
|
|
/**
|
|
* @brief SSL로 인증되어야 할 action이 있을 경우 등록
|
|
* common/js/xml_handler.js에서 이 action들에 대해서 https로 전송되도록 함
|
|
**/
|
|
function addSSLAction($action) {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_addSSLAction($action);
|
|
}
|
|
|
|
function _addSSLAction($action) {
|
|
if(in_array($action, $this->ssl_actions)) return;
|
|
$this->ssl_actions[] = $action;
|
|
}
|
|
|
|
function getSSLActions() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getSSLActions();
|
|
}
|
|
|
|
function _getSSLActions() {
|
|
return $this->ssl_actions;
|
|
}
|
|
|
|
function isExistsSSLAction($action) {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_isExistsSSLAction($action);
|
|
}
|
|
|
|
function _isExistsSSLAction($action) {
|
|
return in_array($action, $this->ssl_actions);
|
|
}
|
|
|
|
/**
|
|
* @brief js file을 추가
|
|
**/
|
|
function addJsFile($file, $optimized = true, $targetie = '') {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_addJsFile($file, $optimized, $targetie);
|
|
}
|
|
|
|
/**
|
|
* @brief js file을 추가
|
|
**/
|
|
function _addJsFile($file, $optimized, $targetie) {
|
|
if(in_array($file, $this->js_files)) return;
|
|
//if(!preg_match('/^http:\/\//i',$file)) $file = str_replace(realpath("."), ".", realpath($file));
|
|
$this->js_files[] = array('file' => $file, 'optimized' => $optimized, 'targetie' => $targetie);
|
|
}
|
|
|
|
/**
|
|
* @brief array_unique와 동작은 동일하나 file 첨자에 대해서만 동작함
|
|
**/
|
|
function _getUniqueFileList($files) {
|
|
$filenames = array();
|
|
$size = count($files);
|
|
for($i = 0; $i < $size; ++ $i)
|
|
{
|
|
if(in_array($files[$i]['file'], $filenames))
|
|
unset($files[$i]);
|
|
$filenames[] = $files[$i]['file'];
|
|
}
|
|
return $files;
|
|
}
|
|
|
|
/**
|
|
* @brief js file 목록을 return
|
|
**/
|
|
function getJsFile() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getJsFile();
|
|
}
|
|
|
|
/**
|
|
* @brief js file 목록을 return
|
|
**/
|
|
function _getJsFile() {
|
|
require_once(_XE_PATH_."classes/optimizer/Optimizer.class.php");
|
|
$oOptimizer = new Optimizer();
|
|
return $oOptimizer->getOptimizedFiles($this->_getUniqueFileList($this->js_files), "js");
|
|
}
|
|
|
|
/**
|
|
* @brief CSS file 추가
|
|
**/
|
|
function addCSSFile($file, $optimized = true, $media = 'all', $targetie = '') {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_addCSSFile($file, $optimized, $media, $targetie);
|
|
}
|
|
|
|
/**
|
|
* @brief CSS file 추가
|
|
**/
|
|
function _addCSSFile($file, $optimized, $media, $targetie) {
|
|
if(in_array($file, $this->css_files)) return;
|
|
|
|
//if(preg_match('/^http:\/\//i',$file)) $file = str_replace(realpath("."), ".", realpath($file));
|
|
$this->css_files[] = array('file' => $file, 'optimized' => $optimized, 'media' => $media, 'targetie' => $targetie);
|
|
}
|
|
|
|
/**
|
|
* @brief CSS file 목록 return
|
|
**/
|
|
function getCSSFile() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getCSSFile();
|
|
}
|
|
|
|
/**
|
|
* @brief CSS file 목록 return
|
|
**/
|
|
function _getCSSFile() {
|
|
require_once(_XE_PATH_."classes/optimizer/Optimizer.class.php");
|
|
$oOptimizer = new Optimizer();
|
|
return $oOptimizer->getOptimizedFiles($this->_getUniqueFileList($this->css_files), "css");
|
|
}
|
|
|
|
/**
|
|
* @brief HtmlHeader 추가
|
|
**/
|
|
function addHtmlHeader($header) {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_addHtmlHeader($header);
|
|
}
|
|
|
|
/**
|
|
* @brief HtmlHeader 추가
|
|
**/
|
|
function _addHtmlHeader($header) {
|
|
$this->html_header .= "\n".$header;
|
|
}
|
|
|
|
/**
|
|
* @brief HtmlHeader return
|
|
**/
|
|
function getHtmlHeader() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getHtmlHeader();
|
|
}
|
|
|
|
/**
|
|
* @brief HtmlHeader return
|
|
**/
|
|
function _getHtmlHeader() {
|
|
return $this->html_header;
|
|
}
|
|
|
|
/**
|
|
* @brief HtmlFooter 추가
|
|
**/
|
|
function addHtmlFooter($footer) {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_addHtmlFooter($footer);
|
|
}
|
|
|
|
/**
|
|
* @brief HtmlFooter 추가
|
|
**/
|
|
function _addHtmlFooter ($footer) {
|
|
$this->html_footer .= ($this->Htmlfooter?"\n":"").$footer;
|
|
}
|
|
|
|
/**
|
|
* @brief HtmlFooter return
|
|
**/
|
|
function getHtmlFooter() {
|
|
$oContext = &Context::getInstance();
|
|
return $oContext->_getHtmlFooter();
|
|
}
|
|
|
|
/**
|
|
* @brief HtmlFooter return
|
|
**/
|
|
function _getHtmlFooter() {
|
|
return $this->html_footer;
|
|
}
|
|
|
|
/**
|
|
* @brief db설정내용이 저장되어 있는 config file의 path를 return
|
|
**/
|
|
function getConfigFile() {
|
|
return _XE_PATH_."files/config/db.config.php";
|
|
}
|
|
|
|
/**
|
|
* @brief 설치가 되어 있는지에 대한 체크
|
|
*
|
|
* 단순히 db config 파일의 존재 유무로 설치 여부를 체크한다
|
|
**/
|
|
function isInstalled() {
|
|
return file_exists(Context::getConfigFile());
|
|
}
|
|
|
|
/**
|
|
* @brief 내용의 위젯이나 기타 기능에 대한 code를 실제 code로 변경
|
|
**/
|
|
function transContent($content) {
|
|
// 위젯 코드 변경
|
|
$oWidgetController = &getController('widget');
|
|
$content = $oWidgetController->transWidgetCode($content, false);
|
|
|
|
// 메타 파일 변경
|
|
$content = preg_replace_callback('!<\!\-\-Meta:([^\-]*?)\-\->!is', array($this,'transMeta'), $content);
|
|
|
|
// 에디터 컴포넌트를 찾아서 결과 코드로 변환
|
|
$content = preg_replace_callback('!<div([^\>]*)editor_component=([^\>]*)>(.*?)\<\/div\>!is', array($this,'transEditorComponent'), $content);
|
|
$content = preg_replace_callback('!<img([^\>]*)editor_component=([^\>]*?)\>!is', array($this,'transEditorComponent'), $content);
|
|
|
|
// body 내의 <style ..></style>를 header로 이동
|
|
$content = preg_replace_callback('!<style(.*?)<\/style>!is', array($this,'moveStyleToHeader'), $content);
|
|
|
|
// <img|br> 코드 변환
|
|
$content = preg_replace('/<(img|br)([^>\/]*)(\/>|>)/i','<$1$2 />', $content);
|
|
|
|
// 주소/?mid등과 같은 index.php가 명시되지 않은 파일의 target 변경
|
|
//$content = str_replace(Context::getRequestUri().'?',Context::getRequestUri().'index.php?',$content);
|
|
|
|
return $content;
|
|
}
|
|
|
|
/**
|
|
* @brief IE위지윅에디터에서 태그가 대문자로 사용되기에 이를 소문자로 치환
|
|
**/
|
|
function transTagToLowerCase($matches) {
|
|
return sprintf('<%s%s%s>', $matches[1], strtolower($matches[2]), $matches[3]);
|
|
}
|
|
|
|
/**
|
|
* @brief <!--Meta:파일이름.(css|js)-->를 변경
|
|
**/
|
|
function transMeta($matches) {
|
|
if(substr($matches[1],'-4')=='.css') $this->addCSSFile($matches[1]);
|
|
elseif(substr($matches[1],'-3')=='.js') $this->addJSFile($matches[1]);
|
|
}
|
|
|
|
/**
|
|
* @brief <body>내의 <style태그를 header로 이동
|
|
**/
|
|
function moveStyleToHeader($matches) {
|
|
$this->addHtmlHeader($matches[0]);
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* @brief 내용의 에디터 컴포넌트 코드를 변환
|
|
**/
|
|
function _fixQuotation($matches) {
|
|
$key = $matches[1];
|
|
$val = $matches[2];
|
|
if(substr($val,0,1)!='"') $val = '"'.$val.'"';
|
|
return sprintf('%s=%s', $key, $val);
|
|
}
|
|
|
|
function transEditorComponent($matches) {
|
|
// IE에서는 태그의 특성중에서 " 를 빼어 버리는 경우가 있기에 정규표현식으로 추가해줌
|
|
$buff = $matches[0];
|
|
$buff = preg_replace_callback('/([^=^"^ ]*)=([^ ^>]*)/i', array($this, _fixQuotation), $buff);
|
|
$buff = str_replace("&","&",$buff);
|
|
|
|
// 에디터 컴포넌트에서 생성된 코드
|
|
$oXmlParser = new XmlParser();
|
|
$xml_doc = $oXmlParser->parse($buff);
|
|
if($xml_doc->div) $xml_doc = $xml_doc->div;
|
|
else if($xml_doc->img) $xml_doc = $xml_doc->img;
|
|
|
|
$xml_doc->body = $matches[3];
|
|
|
|
// attribute가 없으면 return
|
|
$editor_component = $xml_doc->attrs->editor_component;
|
|
if(!$editor_component) return $matches[0];
|
|
|
|
// component::transHTML() 을 이용하여 변환된 코드를 받음
|
|
$oEditorModel = &getModel('editor');
|
|
$oComponent = &$oEditorModel->getComponentObject($editor_component, 0);
|
|
if(!is_object($oComponent)||!method_exists($oComponent, 'transHTML')) return $matches[0];
|
|
|
|
return $oComponent->transHTML($xml_doc);
|
|
}
|
|
|
|
/**
|
|
* @brief gzip encoding 여부 체크
|
|
**/
|
|
function isGzEnabled() {
|
|
if(
|
|
(defined('__OB_GZHANDLER_ENABLE__') && __OB_GZHANDLER_ENABLE__ == 1) &&
|
|
strpos($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')!==false &&
|
|
function_exists('ob_gzhandler') &&
|
|
extension_loaded('zlib')
|
|
) return true;
|
|
return false;
|
|
}
|
|
|
|
}
|
|
?>
|