@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | /** |
22 | 22 | * Document printing |
23 | 23 | * I make it out to find the geulman;; |
24 | - * @return void|Object |
|
24 | + * @return Object|null |
|
25 | 25 | */ |
26 | 26 | function dispDocumentPrint() |
27 | 27 | { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Selected by the administrator for the document management |
68 | - * @return void|Object |
|
68 | + * @return Object|null |
|
69 | 69 | */ |
70 | 70 | function dispDocumentManageDocument() |
71 | 71 | { |
@@ -146,7 +146,7 @@ discard block |
||
146 | 146 | |
147 | 147 | /** |
148 | 148 | * Document temp saved list |
149 | - * @return void |
|
149 | + * @return ModuleObject|null |
|
150 | 150 | */ |
151 | 151 | function dispTempSavedList() |
152 | 152 | { |
@@ -1,13 +1,13 @@ |
||
1 | 1 | <?php |
2 | 2 | /* Copyright (C) NAVER <http://www.navercorp.com> */ |
3 | 3 | /** |
4 | - * documentView class |
|
5 | - * View class of the module document |
|
6 | - * |
|
7 | - * @author NAVER ([email protected]) |
|
8 | - * @package /modules/document |
|
9 | - * @version 0.1 |
|
10 | - */ |
|
4 | + * documentView class |
|
5 | + * View class of the module document |
|
6 | + * |
|
7 | + * @author NAVER ([email protected]) |
|
8 | + * @package /modules/document |
|
9 | + * @version 0.1 |
|
10 | + */ |
|
11 | 11 | class documentView extends document |
12 | 12 | { |
13 | 13 | /** |
@@ -36,17 +36,17 @@ discard block |
||
36 | 36 | $oDocumentModel = getModel('document'); |
37 | 37 | // Creates an object for displaying the selected document |
38 | 38 | $oDocument = $oDocumentModel->getDocument($document_srl, $this->grant->manager); |
39 | - if(!$oDocument->isExists()) return new Object(-1,'msg_invalid_request'); |
|
39 | + if (!$oDocument->isExists()) return new Object(-1, 'msg_invalid_request'); |
|
40 | 40 | // Check permissions |
41 | - if(!$oDocument->isAccessible()) return new Object(-1,'msg_not_permitted'); |
|
41 | + if (!$oDocument->isAccessible()) return new Object(-1, 'msg_not_permitted'); |
|
42 | 42 | // Information setting module |
43 | 43 | //Context::set('module_info', $module_info); //module_info not use in UI |
44 | 44 | // Browser title settings |
45 | 45 | Context::setBrowserTitle($oDocument->getTitleText()); |
46 | 46 | Context::set('oDocument', $oDocument); |
47 | 47 | |
48 | - Context::set('layout','none'); |
|
49 | - $this->setTemplatePath($this->module_path.'tpl'); |
|
48 | + Context::set('layout', 'none'); |
|
49 | + $this->setTemplatePath($this->module_path . 'tpl'); |
|
50 | 50 | $this->setTemplateFile('print_page'); |
51 | 51 | } |
52 | 52 | |
@@ -56,10 +56,10 @@ discard block |
||
56 | 56 | */ |
57 | 57 | function dispDocumentPreview() |
58 | 58 | { |
59 | - Context::set('layout','none'); |
|
59 | + Context::set('layout', 'none'); |
|
60 | 60 | |
61 | 61 | $content = Context::get('content'); |
62 | - $this->setTemplatePath($this->module_path.'tpl'); |
|
62 | + $this->setTemplatePath($this->module_path . 'tpl'); |
|
63 | 63 | $this->setTemplateFile('preview_page'); |
64 | 64 | } |
65 | 65 | |
@@ -69,19 +69,19 @@ discard block |
||
69 | 69 | */ |
70 | 70 | function dispDocumentManageDocument() |
71 | 71 | { |
72 | - if(!Context::get('is_logged')) return new Object(-1,'msg_not_permitted'); |
|
72 | + if (!Context::get('is_logged')) return new Object(-1, 'msg_not_permitted'); |
|
73 | 73 | // Taken from a list of selected sessions |
74 | 74 | $flag_list = $_SESSION['document_management']; |
75 | - if(count($flag_list)) |
|
75 | + if (count($flag_list)) |
|
76 | 76 | { |
77 | - foreach($flag_list as $key => $val) |
|
77 | + foreach ($flag_list as $key => $val) |
|
78 | 78 | { |
79 | - if(!is_bool($val)) continue; |
|
79 | + if (!is_bool($val)) continue; |
|
80 | 80 | $document_srl_list[] = $key; |
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
84 | - if(count($document_srl_list)) |
|
84 | + if (count($document_srl_list)) |
|
85 | 85 | { |
86 | 86 | $oDocumentModel = getModel('document'); |
87 | 87 | $document_list = $oDocumentModel->getDocuments($document_srl_list, $this->grant->is_admin); |
@@ -90,19 +90,19 @@ discard block |
||
90 | 90 | |
91 | 91 | $oModuleModel = getModel('module'); |
92 | 92 | // The combination of module categories list and the list of modules |
93 | - if(count($module_list)>1) Context::set('module_list', $module_categories); |
|
93 | + if (count($module_list) > 1) Context::set('module_list', $module_categories); |
|
94 | 94 | |
95 | - $module_srl=Context::get('module_srl'); |
|
96 | - Context::set('module_srl',$module_srl); |
|
95 | + $module_srl = Context::get('module_srl'); |
|
96 | + Context::set('module_srl', $module_srl); |
|
97 | 97 | $module_info = $oModuleModel->getModuleInfoByModuleSrl($module_srl); |
98 | - Context::set('mid',$module_info->mid); |
|
99 | - Context::set('browser_title',$module_info->browser_title); |
|
98 | + Context::set('mid', $module_info->mid); |
|
99 | + Context::set('browser_title', $module_info->browser_title); |
|
100 | 100 | |
101 | 101 | // Select Pop-up layout |
102 | 102 | $this->setLayoutPath('./common/tpl'); |
103 | 103 | $this->setLayoutFile('popup_layout'); |
104 | 104 | |
105 | - $this->setTemplatePath($this->module_path.'tpl'); |
|
105 | + $this->setTemplatePath($this->module_path . 'tpl'); |
|
106 | 106 | $this->setTemplateFile('checked_list'); |
107 | 107 | } |
108 | 108 | |
@@ -117,28 +117,28 @@ discard block |
||
117 | 117 | $current_module_srl = Context::get('module_srl'); |
118 | 118 | $current_module_srls = Context::get('module_srls'); |
119 | 119 | |
120 | - if(!$current_module_srl && !$current_module_srls) |
|
120 | + if (!$current_module_srl && !$current_module_srls) |
|
121 | 121 | { |
122 | 122 | // Get information of the current module |
123 | 123 | $current_module_info = Context::get('current_module_info'); |
124 | 124 | $current_module_srl = $current_module_info->module_srl; |
125 | - if(!$current_module_srl) return new Object(); |
|
125 | + if (!$current_module_srl) return new Object(); |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | $oModuleModel = getModel('module'); |
129 | - if($current_module_srl) |
|
129 | + if ($current_module_srl) |
|
130 | 130 | { |
131 | 131 | $document_config = $oModuleModel->getModulePartConfig('document', $current_module_srl); |
132 | 132 | } |
133 | - if(!$document_config) |
|
133 | + if (!$document_config) |
|
134 | 134 | { |
135 | 135 | $document_config = new stdClass(); |
136 | 136 | } |
137 | - if(!isset($document_config->use_history)) $document_config->use_history = 'N'; |
|
137 | + if (!isset($document_config->use_history)) $document_config->use_history = 'N'; |
|
138 | 138 | Context::set('document_config', $document_config); |
139 | 139 | |
140 | 140 | $oTemplate = &TemplateHandler::getInstance(); |
141 | - $tpl = $oTemplate->compile($this->module_path.'tpl', 'document_module_config'); |
|
141 | + $tpl = $oTemplate->compile($this->module_path . 'tpl', 'document_module_config'); |
|
142 | 142 | $obj .= $tpl; |
143 | 143 | |
144 | 144 | return new Object(); |
@@ -154,13 +154,13 @@ discard block |
||
154 | 154 | |
155 | 155 | $oMemberModel = getModel('member'); |
156 | 156 | // A message appears if the user is not logged-in |
157 | - if(!$oMemberModel->isLogged()) return $this->stop('msg_not_logged'); |
|
157 | + if (!$oMemberModel->isLogged()) return $this->stop('msg_not_logged'); |
|
158 | 158 | // Get the saved document (module_srl is set to member_srl instead) |
159 | 159 | $logged_info = Context::get('logged_info'); |
160 | 160 | $args = new stdClass(); |
161 | 161 | $args->member_srl = $logged_info->member_srl; |
162 | 162 | $args->statusList = array($this->getConfigStatus('temp')); |
163 | - $args->page = (int)Context::get('page'); |
|
163 | + $args->page = (int) Context::get('page'); |
|
164 | 164 | $args->list_count = 10; |
165 | 165 | |
166 | 166 | $oDocumentModel = getModel('document'); |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | Context::set('document_list', $output->data); |
172 | 172 | Context::set('page_navigation', $output->page_navigation); |
173 | 173 | |
174 | - $this->setTemplatePath($this->module_path.'tpl'); |
|
174 | + $this->setTemplatePath($this->module_path . 'tpl'); |
|
175 | 175 | $this->setTemplateFile('saved_list_popup'); |
176 | 176 | } |
177 | 177 |
@@ -36,9 +36,13 @@ discard block |
||
36 | 36 | $oDocumentModel = getModel('document'); |
37 | 37 | // Creates an object for displaying the selected document |
38 | 38 | $oDocument = $oDocumentModel->getDocument($document_srl, $this->grant->manager); |
39 | - if(!$oDocument->isExists()) return new Object(-1,'msg_invalid_request'); |
|
39 | + if(!$oDocument->isExists()) { |
|
40 | + return new Object(-1,'msg_invalid_request'); |
|
41 | + } |
|
40 | 42 | // Check permissions |
41 | - if(!$oDocument->isAccessible()) return new Object(-1,'msg_not_permitted'); |
|
43 | + if(!$oDocument->isAccessible()) { |
|
44 | + return new Object(-1,'msg_not_permitted'); |
|
45 | + } |
|
42 | 46 | // Information setting module |
43 | 47 | //Context::set('module_info', $module_info); //module_info not use in UI |
44 | 48 | // Browser title settings |
@@ -69,14 +73,18 @@ discard block |
||
69 | 73 | */ |
70 | 74 | function dispDocumentManageDocument() |
71 | 75 | { |
72 | - if(!Context::get('is_logged')) return new Object(-1,'msg_not_permitted'); |
|
76 | + if(!Context::get('is_logged')) { |
|
77 | + return new Object(-1,'msg_not_permitted'); |
|
78 | + } |
|
73 | 79 | // Taken from a list of selected sessions |
74 | 80 | $flag_list = $_SESSION['document_management']; |
75 | 81 | if(count($flag_list)) |
76 | 82 | { |
77 | 83 | foreach($flag_list as $key => $val) |
78 | 84 | { |
79 | - if(!is_bool($val)) continue; |
|
85 | + if(!is_bool($val)) { |
|
86 | + continue; |
|
87 | + } |
|
80 | 88 | $document_srl_list[] = $key; |
81 | 89 | } |
82 | 90 | } |
@@ -90,7 +98,9 @@ discard block |
||
90 | 98 | |
91 | 99 | $oModuleModel = getModel('module'); |
92 | 100 | // The combination of module categories list and the list of modules |
93 | - if(count($module_list)>1) Context::set('module_list', $module_categories); |
|
101 | + if(count($module_list)>1) { |
|
102 | + Context::set('module_list', $module_categories); |
|
103 | + } |
|
94 | 104 | |
95 | 105 | $module_srl=Context::get('module_srl'); |
96 | 106 | Context::set('module_srl',$module_srl); |
@@ -122,7 +132,9 @@ discard block |
||
122 | 132 | // Get information of the current module |
123 | 133 | $current_module_info = Context::get('current_module_info'); |
124 | 134 | $current_module_srl = $current_module_info->module_srl; |
125 | - if(!$current_module_srl) return new Object(); |
|
135 | + if(!$current_module_srl) { |
|
136 | + return new Object(); |
|
137 | + } |
|
126 | 138 | } |
127 | 139 | |
128 | 140 | $oModuleModel = getModel('module'); |
@@ -134,7 +146,9 @@ discard block |
||
134 | 146 | { |
135 | 147 | $document_config = new stdClass(); |
136 | 148 | } |
137 | - if(!isset($document_config->use_history)) $document_config->use_history = 'N'; |
|
149 | + if(!isset($document_config->use_history)) { |
|
150 | + $document_config->use_history = 'N'; |
|
151 | + } |
|
138 | 152 | Context::set('document_config', $document_config); |
139 | 153 | |
140 | 154 | $oTemplate = &TemplateHandler::getInstance(); |
@@ -154,7 +168,9 @@ discard block |
||
154 | 168 | |
155 | 169 | $oMemberModel = getModel('member'); |
156 | 170 | // A message appears if the user is not logged-in |
157 | - if(!$oMemberModel->isLogged()) return $this->stop('msg_not_logged'); |
|
171 | + if(!$oMemberModel->isLogged()) { |
|
172 | + return $this->stop('msg_not_logged'); |
|
173 | + } |
|
158 | 174 | // Get the saved document (module_srl is set to member_srl instead) |
159 | 175 | $logged_info = Context::get('logged_info'); |
160 | 176 | $args = new stdClass(); |
@@ -238,6 +238,7 @@ |
||
238 | 238 | |
239 | 239 | /** |
240 | 240 | * @brief AutoSave |
241 | + * @param stdClass $args |
|
241 | 242 | */ |
242 | 243 | function doSaveDoc($args) |
243 | 244 | { |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /* Copyright (C) NAVER <http://www.navercorp.com> */ |
3 | 3 | /** |
4 | - * @class editor |
|
5 | - * @author NAVER ([email protected]) |
|
6 | - * @brief editor module's controller class |
|
7 | - */ |
|
4 | + * @class editor |
|
5 | + * @author NAVER ([email protected]) |
|
6 | + * @brief editor module's controller class |
|
7 | + */ |
|
8 | 8 | class editorController extends editor |
9 | 9 | { |
10 | 10 | /** |
@@ -47,28 +47,28 @@ discard block |
||
47 | 47 | { |
48 | 48 | $component = Context::get('component'); |
49 | 49 | $method = Context::get('method'); |
50 | - if(!$component) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
50 | + if (!$component) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
51 | 51 | |
52 | 52 | $oEditorModel = getModel('editor'); |
53 | 53 | $oComponent = &$oEditorModel->getComponentObject($component); |
54 | - if(!$oComponent->toBool()) return $oComponent; |
|
54 | + if (!$oComponent->toBool()) return $oComponent; |
|
55 | 55 | |
56 | - if(!method_exists($oComponent, $method)) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
56 | + if (!method_exists($oComponent, $method)) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
57 | 57 | |
58 | 58 | //$output = call_user_method($method, $oComponent); |
59 | 59 | //$output = call_user_func(array($oComponent, $method)); |
60 | - if(method_exists($oComponent, $method)) $output = $oComponent->{$method}(); |
|
61 | - else return new Object(-1,sprintf('%s method is not exists', $method)); |
|
60 | + if (method_exists($oComponent, $method)) $output = $oComponent->{$method}(); |
|
61 | + else return new Object(-1, sprintf('%s method is not exists', $method)); |
|
62 | 62 | |
63 | - if((is_a($output, 'Object') || is_subclass_of($output, 'Object')) && !$output->toBool()) return $output; |
|
63 | + if ((is_a($output, 'Object') || is_subclass_of($output, 'Object')) && !$output->toBool()) return $output; |
|
64 | 64 | |
65 | 65 | $this->setError($oComponent->getError()); |
66 | 66 | $this->setMessage($oComponent->getMessage()); |
67 | 67 | |
68 | 68 | $vars = $oComponent->getVariables(); |
69 | - if(count($vars)) |
|
69 | + if (count($vars)) |
|
70 | 70 | { |
71 | - foreach($vars as $key => $val) |
|
71 | + foreach ($vars as $key => $val) |
|
72 | 72 | { |
73 | 73 | $this->add($key, $val); |
74 | 74 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | { |
83 | 83 | $module_srl = Context::get('target_module_srl'); |
84 | 84 | // To configure many of modules at once |
85 | - if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl); |
|
85 | + if (preg_match('/^([0-9,]+)$/', $module_srl)) $module_srl = explode(',', $module_srl); |
|
86 | 86 | else $module_srl = array($module_srl); |
87 | 87 | |
88 | 88 | $editor_config = new stdClass; |
@@ -91,32 +91,32 @@ discard block |
||
91 | 91 | $editor_config->content_style = Context::get('content_style'); |
92 | 92 | $editor_config->comment_content_style = Context::get('comment_content_style'); |
93 | 93 | $editor_config->content_font = Context::get('content_font'); |
94 | - if($editor_config->content_font) |
|
94 | + if ($editor_config->content_font) |
|
95 | 95 | { |
96 | 96 | $font_list = array(); |
97 | - $fonts = explode(',',$editor_config->content_font); |
|
98 | - for($i=0,$c=count($fonts);$i<$c;$i++) |
|
97 | + $fonts = explode(',', $editor_config->content_font); |
|
98 | + for ($i = 0, $c = count($fonts); $i < $c; $i++) |
|
99 | 99 | { |
100 | - $font = trim(str_replace(array('"','\''),'',$fonts[$i])); |
|
101 | - if(!$font) continue; |
|
100 | + $font = trim(str_replace(array('"', '\''), '', $fonts[$i])); |
|
101 | + if (!$font) continue; |
|
102 | 102 | $font_list[] = $font; |
103 | 103 | } |
104 | - if(count($font_list)) $editor_config->content_font = '"'.implode('","',$font_list).'"'; |
|
104 | + if (count($font_list)) $editor_config->content_font = '"' . implode('","', $font_list) . '"'; |
|
105 | 105 | } |
106 | 106 | $editor_config->content_font_size = Context::get('content_font_size'); |
107 | 107 | $editor_config->sel_editor_colorset = Context::get('sel_editor_colorset'); |
108 | 108 | $editor_config->sel_comment_editor_colorset = Context::get('sel_comment_editor_colorset'); |
109 | 109 | |
110 | - $grants = array('enable_html_grant','enable_comment_html_grant','upload_file_grant','comment_upload_file_grant','enable_default_component_grant','enable_comment_default_component_grant','enable_component_grant','enable_comment_component_grant'); |
|
110 | + $grants = array('enable_html_grant', 'enable_comment_html_grant', 'upload_file_grant', 'comment_upload_file_grant', 'enable_default_component_grant', 'enable_comment_default_component_grant', 'enable_component_grant', 'enable_comment_component_grant'); |
|
111 | 111 | |
112 | - foreach($grants as $key) |
|
112 | + foreach ($grants as $key) |
|
113 | 113 | { |
114 | 114 | $grant = Context::get($key); |
115 | - if(!$grant) |
|
115 | + if (!$grant) |
|
116 | 116 | { |
117 | 117 | $editor_config->{$key} = array(); |
118 | 118 | } |
119 | - else if(is_array($grant)) |
|
119 | + else if (is_array($grant)) |
|
120 | 120 | { |
121 | 121 | $editor_config->{$key} = $grant; |
122 | 122 | } |
@@ -126,17 +126,17 @@ discard block |
||
126 | 126 | } |
127 | 127 | } |
128 | 128 | |
129 | - $editor_config->editor_height = (int)Context::get('editor_height'); |
|
130 | - $editor_config->comment_editor_height = (int)Context::get('comment_editor_height'); |
|
129 | + $editor_config->editor_height = (int) Context::get('editor_height'); |
|
130 | + $editor_config->comment_editor_height = (int) Context::get('comment_editor_height'); |
|
131 | 131 | $editor_config->enable_autosave = Context::get('enable_autosave'); |
132 | - if($editor_config->enable_autosave != 'Y') $editor_config->enable_autosave = 'N'; |
|
132 | + if ($editor_config->enable_autosave != 'Y') $editor_config->enable_autosave = 'N'; |
|
133 | 133 | |
134 | 134 | $oModuleController = getController('module'); |
135 | - for($i=0;$i<count($module_srl);$i++) |
|
135 | + for ($i = 0; $i < count($module_srl); $i++) |
|
136 | 136 | { |
137 | 137 | $srl = trim($module_srl[$i]); |
138 | - if(!$srl) continue; |
|
139 | - $oModuleController->insertModulePartConfig('editor',$srl,$editor_config); |
|
138 | + if (!$srl) continue; |
|
139 | + $oModuleController->insertModulePartConfig('editor', $srl, $editor_config); |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | $this->setError(-1); |
@@ -151,45 +151,45 @@ discard block |
||
151 | 151 | */ |
152 | 152 | function triggerEditorComponentCompile(&$content) |
153 | 153 | { |
154 | - if(Context::getResponseMethod()!='HTML') return new Object(); |
|
154 | + if (Context::getResponseMethod() != 'HTML') return new Object(); |
|
155 | 155 | |
156 | 156 | $module_info = Context::get('module_info'); |
157 | 157 | $module_srl = $module_info->module_srl; |
158 | - if($module_srl) |
|
158 | + if ($module_srl) |
|
159 | 159 | { |
160 | 160 | $oEditorModel = getModel('editor'); |
161 | 161 | $editor_config = $oEditorModel->getEditorConfig($module_srl); |
162 | 162 | $content_style = $editor_config->content_style; |
163 | - if($content_style) |
|
163 | + if ($content_style) |
|
164 | 164 | { |
165 | - $path = _XE_PATH_ . 'modules/editor/styles/'.$content_style.'/'; |
|
166 | - if(is_dir($path) && file_exists($path . 'style.ini')) |
|
165 | + $path = _XE_PATH_ . 'modules/editor/styles/' . $content_style . '/'; |
|
166 | + if (is_dir($path) && file_exists($path . 'style.ini')) |
|
167 | 167 | { |
168 | - $ini = file($path.'style.ini'); |
|
169 | - for($i = 0, $c = count($ini); $i < $c; $i++) |
|
168 | + $ini = file($path . 'style.ini'); |
|
169 | + for ($i = 0, $c = count($ini); $i < $c; $i++) |
|
170 | 170 | { |
171 | 171 | $file = trim($ini[$i]); |
172 | - if(!$file) continue; |
|
172 | + if (!$file) continue; |
|
173 | 173 | |
174 | - if(substr_compare($file, '.css', -4) === 0) |
|
174 | + if (substr_compare($file, '.css', -4) === 0) |
|
175 | 175 | { |
176 | - Context::addCSSFile('./modules/editor/styles/'.$content_style.'/'.$file, false); |
|
176 | + Context::addCSSFile('./modules/editor/styles/' . $content_style . '/' . $file, false); |
|
177 | 177 | } |
178 | - elseif(substr_compare($file, '.js', -3) === 0) |
|
178 | + elseif (substr_compare($file, '.js', -3) === 0) |
|
179 | 179 | { |
180 | - Context::addJsFile('./modules/editor/styles/'.$content_style.'/'.$file, false); |
|
180 | + Context::addJsFile('./modules/editor/styles/' . $content_style . '/' . $file, false); |
|
181 | 181 | } |
182 | 182 | } |
183 | 183 | } |
184 | 184 | } |
185 | 185 | $content_font = $editor_config->content_font; |
186 | 186 | $content_font_size = $editor_config->content_font_size; |
187 | - if($content_font || $content_font_size) |
|
187 | + if ($content_font || $content_font_size) |
|
188 | 188 | { |
189 | 189 | $buff = array(); |
190 | 190 | $buff[] = '<style> .xe_content { '; |
191 | - if($content_font) $buff[] = 'font-family:'.$content_font.';'; |
|
192 | - if($content_font_size) $buff[] = 'font-size:'.$content_font_size.';'; |
|
191 | + if ($content_font) $buff[] = 'font-family:' . $content_font . ';'; |
|
192 | + if ($content_font_size) $buff[] = 'font-size:' . $content_font_size . ';'; |
|
193 | 193 | $buff[] = ' }</style>'; |
194 | 194 | Context::addHtmlHeader(implode('', $buff)); |
195 | 195 | } |
@@ -204,7 +204,7 @@ discard block |
||
204 | 204 | */ |
205 | 205 | function transComponent($content) |
206 | 206 | { |
207 | - $content = preg_replace_callback('!<(?:(div)|img)([^>]*)editor_component=([^>]*)>(?(1)(.*?)</div>)!is', array($this,'transEditorComponent'), $content); |
|
207 | + $content = preg_replace_callback('!<(?:(div)|img)([^>]*)editor_component=([^>]*)>(?(1)(.*?)</div>)!is', array($this, 'transEditorComponent'), $content); |
|
208 | 208 | return $content; |
209 | 209 | } |
210 | 210 | |
@@ -219,19 +219,19 @@ discard block |
||
219 | 219 | |
220 | 220 | $xml_obj = new stdClass; |
221 | 221 | $xml_obj->attrs = new stdClass; |
222 | - for($i=0,$c=count($m[0]);$i<$c;$i++) |
|
222 | + for ($i = 0, $c = count($m[0]); $i < $c; $i++) |
|
223 | 223 | { |
224 | - if(!isset($xml_obj->attrs)) $xml_obj->attrs = new stdClass; |
|
224 | + if (!isset($xml_obj->attrs)) $xml_obj->attrs = new stdClass; |
|
225 | 225 | $xml_obj->attrs->{$m[1][$i]} = $m[2][$i]; |
226 | 226 | } |
227 | 227 | $xml_obj->body = $match[4]; |
228 | 228 | |
229 | - if(!$xml_obj->attrs->editor_component) return $match[0]; |
|
229 | + if (!$xml_obj->attrs->editor_component) return $match[0]; |
|
230 | 230 | |
231 | 231 | // Get converted codes by using component::transHTML() |
232 | 232 | $oEditorModel = getModel('editor'); |
233 | 233 | $oComponent = &$oEditorModel->getComponentObject($xml_obj->attrs->editor_component, 0); |
234 | - if(!is_object($oComponent)||!method_exists($oComponent, 'transHTML')) return $match[0]; |
|
234 | + if (!is_object($oComponent) || !method_exists($oComponent, 'transHTML')) return $match[0]; |
|
235 | 235 | |
236 | 236 | return $oComponent->transHTML($xml_obj); |
237 | 237 | } |
@@ -241,8 +241,8 @@ discard block |
||
241 | 241 | */ |
242 | 242 | function doSaveDoc($args) |
243 | 243 | { |
244 | - if(!$args->document_srl) $args->document_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
245 | - if(Context::get('is_logged')) |
|
244 | + if (!$args->document_srl) $args->document_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
245 | + if (Context::get('is_logged')) |
|
246 | 246 | { |
247 | 247 | $logged_info = Context::get('logged_info'); |
248 | 248 | $args->member_srl = $logged_info->member_srl; |
@@ -253,11 +253,11 @@ discard block |
||
253 | 253 | } |
254 | 254 | |
255 | 255 | // Get the current module if module_srl doesn't exist |
256 | - if(!$args->module_srl) |
|
256 | + if (!$args->module_srl) |
|
257 | 257 | { |
258 | 258 | $args->module_srl = Context::get('module_srl'); |
259 | 259 | } |
260 | - if(!$args->module_srl) |
|
260 | + if (!$args->module_srl) |
|
261 | 261 | { |
262 | 262 | $current_module_info = Context::get('current_module_info'); |
263 | 263 | $args->module_srl = $current_module_info->module_srl; |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | function deleteSavedDoc($mode = false) |
304 | 304 | { |
305 | 305 | $args = new stdClass(); |
306 | - if(Context::get('is_logged')) |
|
306 | + if (Context::get('is_logged')) |
|
307 | 307 | { |
308 | 308 | $logged_info = Context::get('logged_info'); |
309 | 309 | $args->member_srl = $logged_info->member_srl; |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | } |
315 | 315 | $args->module_srl = Context::get('module_srl'); |
316 | 316 | // Get the current module if module_srl doesn't exist |
317 | - if(!$args->module_srl) |
|
317 | + if (!$args->module_srl) |
|
318 | 318 | { |
319 | 319 | $current_module_info = Context::get('current_module_info'); |
320 | 320 | $args->module_srl = $current_module_info->module_srl; |
@@ -322,13 +322,13 @@ discard block |
||
322 | 322 | // Check if the auto-saved document already exists |
323 | 323 | $output = executeQuery('editor.getSavedDocument', $args); |
324 | 324 | $saved_doc = $output->data; |
325 | - if(!$saved_doc) return; |
|
325 | + if (!$saved_doc) return; |
|
326 | 326 | |
327 | 327 | $oDocumentModel = getModel('document'); |
328 | 328 | $oSaved = $oDocumentModel->getDocument($saved_doc->document_srl); |
329 | - if(!$oSaved->isExists()) |
|
329 | + if (!$oSaved->isExists()) |
|
330 | 330 | { |
331 | - if($mode) |
|
331 | + if ($mode) |
|
332 | 332 | { |
333 | 333 | $output = executeQuery('editor.getSavedDocument', $args); |
334 | 334 | $output = ModuleHandler::triggerCall('editor.deleteSavedDoc', 'after', $saved_doc); |
@@ -356,9 +356,9 @@ discard block |
||
356 | 356 | $oEditorModel = getModel('editor'); |
357 | 357 | $args = new stdClass; |
358 | 358 | |
359 | - if($filter_enabled) $args->enabled = "Y"; |
|
359 | + if ($filter_enabled) $args->enabled = "Y"; |
|
360 | 360 | |
361 | - if($site_srl) |
|
361 | + if ($site_srl) |
|
362 | 362 | { |
363 | 363 | $args->site_srl = $site_srl; |
364 | 364 | $output = executeQuery('editor.getSiteComponentList', $args); |
@@ -367,14 +367,14 @@ discard block |
||
367 | 367 | $db_list = $output->data; |
368 | 368 | |
369 | 369 | // Get a list of files |
370 | - $downloaded_list = FileHandler::readDir(_XE_PATH_.'modules/editor/components'); |
|
370 | + $downloaded_list = FileHandler::readDir(_XE_PATH_ . 'modules/editor/components'); |
|
371 | 371 | |
372 | 372 | // Get information about log-in status and its group |
373 | 373 | $is_logged = Context::get('is_logged'); |
374 | - if($is_logged) |
|
374 | + if ($is_logged) |
|
375 | 375 | { |
376 | 376 | $logged_info = Context::get('logged_info'); |
377 | - if($logged_info->group_list && is_array($logged_info->group_list)) |
|
377 | + if ($logged_info->group_list && is_array($logged_info->group_list)) |
|
378 | 378 | { |
379 | 379 | $group_list = array_keys($logged_info->group_list); |
380 | 380 | } |
@@ -382,30 +382,30 @@ discard block |
||
382 | 382 | } |
383 | 383 | |
384 | 384 | // Get xml information for looping DB list |
385 | - if(!is_array($db_list)) $db_list = array($db_list); |
|
385 | + if (!is_array($db_list)) $db_list = array($db_list); |
|
386 | 386 | $component_list = new stdClass(); |
387 | - foreach($db_list as $component) |
|
387 | + foreach ($db_list as $component) |
|
388 | 388 | { |
389 | - if(in_array($component->component_name, array('colorpicker_text','colorpicker_bg'))) continue; |
|
389 | + if (in_array($component->component_name, array('colorpicker_text', 'colorpicker_bg'))) continue; |
|
390 | 390 | |
391 | 391 | $component_name = $component->component_name; |
392 | - if(!$component_name) continue; |
|
392 | + if (!$component_name) continue; |
|
393 | 393 | |
394 | - if(!in_array($component_name, $downloaded_list)) continue; |
|
394 | + if (!in_array($component_name, $downloaded_list)) continue; |
|
395 | 395 | |
396 | 396 | unset($xml_info); |
397 | 397 | $xml_info = $oEditorModel->getComponentXmlInfo($component_name); |
398 | 398 | $xml_info->enabled = $component->enabled; |
399 | 399 | |
400 | - if($component->extra_vars) |
|
400 | + if ($component->extra_vars) |
|
401 | 401 | { |
402 | 402 | $extra_vars = unserialize($component->extra_vars); |
403 | - if($extra_vars->target_group) |
|
403 | + if ($extra_vars->target_group) |
|
404 | 404 | { |
405 | 405 | $xml_info->target_group = $extra_vars->target_group; |
406 | 406 | } |
407 | 407 | |
408 | - if($extra_vars->mid_list && count($extra_vars->mid_list)) |
|
408 | + if ($extra_vars->mid_list && count($extra_vars->mid_list)) |
|
409 | 409 | { |
410 | 410 | $xml_info->mid_list = $extra_vars->mid_list; |
411 | 411 | } |
@@ -432,9 +432,9 @@ discard block |
||
432 | 432 | if(!in_array(Context::get('mid'), $extra_vars->mid_list)) continue; |
433 | 433 | }*/ |
434 | 434 | // Check the configuration of the editor component |
435 | - if($xml_info->extra_vars) |
|
435 | + if ($xml_info->extra_vars) |
|
436 | 436 | { |
437 | - foreach($xml_info->extra_vars as $key => $val) |
|
437 | + foreach ($xml_info->extra_vars as $key => $val) |
|
438 | 438 | { |
439 | 439 | $xml_info->extra_vars->{$key}->value = $extra_vars->{$key}; |
440 | 440 | } |
@@ -443,27 +443,27 @@ discard block |
||
443 | 443 | |
444 | 444 | $component_list->{$component_name} = $xml_info; |
445 | 445 | // Get buttons, icons, images |
446 | - $icon_file = _XE_PATH_.'modules/editor/components/'.$component_name.'/icon.gif'; |
|
447 | - $component_icon_file = _XE_PATH_.'modules/editor/components/'.$component_name.'/component_icon.gif'; |
|
448 | - if(file_exists($icon_file)) $component_list->{$component_name}->icon = true; |
|
449 | - if(file_exists($component_icon_file)) $component_list->{$component_name}->component_icon = true; |
|
446 | + $icon_file = _XE_PATH_ . 'modules/editor/components/' . $component_name . '/icon.gif'; |
|
447 | + $component_icon_file = _XE_PATH_ . 'modules/editor/components/' . $component_name . '/component_icon.gif'; |
|
448 | + if (file_exists($icon_file)) $component_list->{$component_name}->icon = true; |
|
449 | + if (file_exists($component_icon_file)) $component_list->{$component_name}->component_icon = true; |
|
450 | 450 | } |
451 | 451 | |
452 | 452 | // Return if it checks enabled only |
453 | - if($filter_enabled) |
|
453 | + if ($filter_enabled) |
|
454 | 454 | { |
455 | 455 | $cache_file = $oEditorModel->getCacheFile($filter_enabled, $site_srl); |
456 | - $buff = sprintf('<?php if(!defined("__XE__")) exit(); $component_list = unserialize("%s"); ?>', str_replace('"','\\"',serialize($component_list))); |
|
456 | + $buff = sprintf('<?php if(!defined("__XE__")) exit(); $component_list = unserialize("%s"); ?>', str_replace('"', '\\"', serialize($component_list))); |
|
457 | 457 | FileHandler::writeFile($cache_file, $buff); |
458 | 458 | return $component_list; |
459 | 459 | } |
460 | 460 | |
461 | 461 | // Get xml_info of downloaded list |
462 | - foreach($downloaded_list as $component_name) |
|
462 | + foreach ($downloaded_list as $component_name) |
|
463 | 463 | { |
464 | - if(in_array($component_name, array('colorpicker_text','colorpicker_bg'))) continue; |
|
464 | + if (in_array($component_name, array('colorpicker_text', 'colorpicker_bg'))) continue; |
|
465 | 465 | // Pass if configured |
466 | - if($component_list->{$component_name}) continue; |
|
466 | + if ($component_list->{$component_name}) continue; |
|
467 | 467 | // Insert data into the DB |
468 | 468 | $oEditorController = getAdminController('editor'); |
469 | 469 | $oEditorController->insertComponent($component_name, false, $site_srl); |
@@ -476,7 +476,7 @@ discard block |
||
476 | 476 | } |
477 | 477 | |
478 | 478 | $cache_file = $oEditorModel->getCacheFile($filter_enabled, $site_srl); |
479 | - $buff = sprintf('<?php if(!defined("__XE__")) exit(); $component_list = unserialize("%s"); ?>', str_replace('"','\\"',serialize($component_list))); |
|
479 | + $buff = sprintf('<?php if(!defined("__XE__")) exit(); $component_list = unserialize("%s"); ?>', str_replace('"', '\\"', serialize($component_list))); |
|
480 | 480 | FileHandler::writeFile($cache_file, $buff); |
481 | 481 | |
482 | 482 | return $component_list; |
@@ -498,9 +498,9 @@ discard block |
||
498 | 498 | $editorConfig = $oModuleModel->getModulePartConfig('editor', $obj->originModuleSrl); |
499 | 499 | |
500 | 500 | $oModuleController = getController('module'); |
501 | - if(is_array($obj->moduleSrlList)) |
|
501 | + if (is_array($obj->moduleSrlList)) |
|
502 | 502 | { |
503 | - foreach($obj->moduleSrlList AS $key=>$moduleSrl) |
|
503 | + foreach ($obj->moduleSrlList AS $key=>$moduleSrl) |
|
504 | 504 | { |
505 | 505 | $oModuleController->insertModulePartConfig('editor', $moduleSrl, $editorConfig); |
506 | 506 | } |
@@ -47,20 +47,31 @@ discard block |
||
47 | 47 | { |
48 | 48 | $component = Context::get('component'); |
49 | 49 | $method = Context::get('method'); |
50 | - if(!$component) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
50 | + if(!$component) { |
|
51 | + return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
52 | + } |
|
51 | 53 | |
52 | 54 | $oEditorModel = getModel('editor'); |
53 | 55 | $oComponent = &$oEditorModel->getComponentObject($component); |
54 | - if(!$oComponent->toBool()) return $oComponent; |
|
56 | + if(!$oComponent->toBool()) { |
|
57 | + return $oComponent; |
|
58 | + } |
|
55 | 59 | |
56 | - if(!method_exists($oComponent, $method)) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
60 | + if(!method_exists($oComponent, $method)) { |
|
61 | + return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
62 | + } |
|
57 | 63 | |
58 | 64 | //$output = call_user_method($method, $oComponent); |
59 | 65 | //$output = call_user_func(array($oComponent, $method)); |
60 | - if(method_exists($oComponent, $method)) $output = $oComponent->{$method}(); |
|
61 | - else return new Object(-1,sprintf('%s method is not exists', $method)); |
|
66 | + if(method_exists($oComponent, $method)) { |
|
67 | + $output = $oComponent->{$method}(); |
|
68 | + } else { |
|
69 | + return new Object(-1,sprintf('%s method is not exists', $method)); |
|
70 | + } |
|
62 | 71 | |
63 | - if((is_a($output, 'Object') || is_subclass_of($output, 'Object')) && !$output->toBool()) return $output; |
|
72 | + if((is_a($output, 'Object') || is_subclass_of($output, 'Object')) && !$output->toBool()) { |
|
73 | + return $output; |
|
74 | + } |
|
64 | 75 | |
65 | 76 | $this->setError($oComponent->getError()); |
66 | 77 | $this->setMessage($oComponent->getMessage()); |
@@ -82,8 +93,11 @@ discard block |
||
82 | 93 | { |
83 | 94 | $module_srl = Context::get('target_module_srl'); |
84 | 95 | // To configure many of modules at once |
85 | - if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl); |
|
86 | - else $module_srl = array($module_srl); |
|
96 | + if(preg_match('/^([0-9,]+)$/',$module_srl)) { |
|
97 | + $module_srl = explode(',',$module_srl); |
|
98 | + } else { |
|
99 | + $module_srl = array($module_srl); |
|
100 | + } |
|
87 | 101 | |
88 | 102 | $editor_config = new stdClass; |
89 | 103 | $editor_config->editor_skin = Context::get('editor_skin'); |
@@ -98,10 +112,14 @@ discard block |
||
98 | 112 | for($i=0,$c=count($fonts);$i<$c;$i++) |
99 | 113 | { |
100 | 114 | $font = trim(str_replace(array('"','\''),'',$fonts[$i])); |
101 | - if(!$font) continue; |
|
115 | + if(!$font) { |
|
116 | + continue; |
|
117 | + } |
|
102 | 118 | $font_list[] = $font; |
103 | 119 | } |
104 | - if(count($font_list)) $editor_config->content_font = '"'.implode('","',$font_list).'"'; |
|
120 | + if(count($font_list)) { |
|
121 | + $editor_config->content_font = '"'.implode('","',$font_list).'"'; |
|
122 | + } |
|
105 | 123 | } |
106 | 124 | $editor_config->content_font_size = Context::get('content_font_size'); |
107 | 125 | $editor_config->sel_editor_colorset = Context::get('sel_editor_colorset'); |
@@ -115,12 +133,10 @@ discard block |
||
115 | 133 | if(!$grant) |
116 | 134 | { |
117 | 135 | $editor_config->{$key} = array(); |
118 | - } |
|
119 | - else if(is_array($grant)) |
|
136 | + } else if(is_array($grant)) |
|
120 | 137 | { |
121 | 138 | $editor_config->{$key} = $grant; |
122 | - } |
|
123 | - else |
|
139 | + } else |
|
124 | 140 | { |
125 | 141 | $editor_config->{$key} = explode('|@|', $grant); |
126 | 142 | } |
@@ -129,13 +145,17 @@ discard block |
||
129 | 145 | $editor_config->editor_height = (int)Context::get('editor_height'); |
130 | 146 | $editor_config->comment_editor_height = (int)Context::get('comment_editor_height'); |
131 | 147 | $editor_config->enable_autosave = Context::get('enable_autosave'); |
132 | - if($editor_config->enable_autosave != 'Y') $editor_config->enable_autosave = 'N'; |
|
148 | + if($editor_config->enable_autosave != 'Y') { |
|
149 | + $editor_config->enable_autosave = 'N'; |
|
150 | + } |
|
133 | 151 | |
134 | 152 | $oModuleController = getController('module'); |
135 | 153 | for($i=0;$i<count($module_srl);$i++) |
136 | 154 | { |
137 | 155 | $srl = trim($module_srl[$i]); |
138 | - if(!$srl) continue; |
|
156 | + if(!$srl) { |
|
157 | + continue; |
|
158 | + } |
|
139 | 159 | $oModuleController->insertModulePartConfig('editor',$srl,$editor_config); |
140 | 160 | } |
141 | 161 | |
@@ -151,7 +171,9 @@ discard block |
||
151 | 171 | */ |
152 | 172 | function triggerEditorComponentCompile(&$content) |
153 | 173 | { |
154 | - if(Context::getResponseMethod()!='HTML') return new Object(); |
|
174 | + if(Context::getResponseMethod()!='HTML') { |
|
175 | + return new Object(); |
|
176 | + } |
|
155 | 177 | |
156 | 178 | $module_info = Context::get('module_info'); |
157 | 179 | $module_srl = $module_info->module_srl; |
@@ -169,13 +191,14 @@ discard block |
||
169 | 191 | for($i = 0, $c = count($ini); $i < $c; $i++) |
170 | 192 | { |
171 | 193 | $file = trim($ini[$i]); |
172 | - if(!$file) continue; |
|
194 | + if(!$file) { |
|
195 | + continue; |
|
196 | + } |
|
173 | 197 | |
174 | 198 | if(substr_compare($file, '.css', -4) === 0) |
175 | 199 | { |
176 | 200 | Context::addCSSFile('./modules/editor/styles/'.$content_style.'/'.$file, false); |
177 | - } |
|
178 | - elseif(substr_compare($file, '.js', -3) === 0) |
|
201 | + } elseif(substr_compare($file, '.js', -3) === 0) |
|
179 | 202 | { |
180 | 203 | Context::addJsFile('./modules/editor/styles/'.$content_style.'/'.$file, false); |
181 | 204 | } |
@@ -188,8 +211,12 @@ discard block |
||
188 | 211 | { |
189 | 212 | $buff = array(); |
190 | 213 | $buff[] = '<style> .xe_content { '; |
191 | - if($content_font) $buff[] = 'font-family:'.$content_font.';'; |
|
192 | - if($content_font_size) $buff[] = 'font-size:'.$content_font_size.';'; |
|
214 | + if($content_font) { |
|
215 | + $buff[] = 'font-family:'.$content_font.';'; |
|
216 | + } |
|
217 | + if($content_font_size) { |
|
218 | + $buff[] = 'font-size:'.$content_font_size.';'; |
|
219 | + } |
|
193 | 220 | $buff[] = ' }</style>'; |
194 | 221 | Context::addHtmlHeader(implode('', $buff)); |
195 | 222 | } |
@@ -221,17 +248,23 @@ discard block |
||
221 | 248 | $xml_obj->attrs = new stdClass; |
222 | 249 | for($i=0,$c=count($m[0]);$i<$c;$i++) |
223 | 250 | { |
224 | - if(!isset($xml_obj->attrs)) $xml_obj->attrs = new stdClass; |
|
251 | + if(!isset($xml_obj->attrs)) { |
|
252 | + $xml_obj->attrs = new stdClass; |
|
253 | + } |
|
225 | 254 | $xml_obj->attrs->{$m[1][$i]} = $m[2][$i]; |
226 | 255 | } |
227 | 256 | $xml_obj->body = $match[4]; |
228 | 257 | |
229 | - if(!$xml_obj->attrs->editor_component) return $match[0]; |
|
258 | + if(!$xml_obj->attrs->editor_component) { |
|
259 | + return $match[0]; |
|
260 | + } |
|
230 | 261 | |
231 | 262 | // Get converted codes by using component::transHTML() |
232 | 263 | $oEditorModel = getModel('editor'); |
233 | 264 | $oComponent = &$oEditorModel->getComponentObject($xml_obj->attrs->editor_component, 0); |
234 | - if(!is_object($oComponent)||!method_exists($oComponent, 'transHTML')) return $match[0]; |
|
265 | + if(!is_object($oComponent)||!method_exists($oComponent, 'transHTML')) { |
|
266 | + return $match[0]; |
|
267 | + } |
|
235 | 268 | |
236 | 269 | return $oComponent->transHTML($xml_obj); |
237 | 270 | } |
@@ -241,13 +274,14 @@ discard block |
||
241 | 274 | */ |
242 | 275 | function doSaveDoc($args) |
243 | 276 | { |
244 | - if(!$args->document_srl) $args->document_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
277 | + if(!$args->document_srl) { |
|
278 | + $args->document_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
279 | + } |
|
245 | 280 | if(Context::get('is_logged')) |
246 | 281 | { |
247 | 282 | $logged_info = Context::get('logged_info'); |
248 | 283 | $args->member_srl = $logged_info->member_srl; |
249 | - } |
|
250 | - else |
|
284 | + } else |
|
251 | 285 | { |
252 | 286 | $args->ipaddress = $_SERVER['REMOTE_ADDR']; |
253 | 287 | } |
@@ -307,8 +341,7 @@ discard block |
||
307 | 341 | { |
308 | 342 | $logged_info = Context::get('logged_info'); |
309 | 343 | $args->member_srl = $logged_info->member_srl; |
310 | - } |
|
311 | - else |
|
344 | + } else |
|
312 | 345 | { |
313 | 346 | $args->ipaddress = $_SERVER['REMOTE_ADDR']; |
314 | 347 | } |
@@ -322,7 +355,9 @@ discard block |
||
322 | 355 | // Check if the auto-saved document already exists |
323 | 356 | $output = executeQuery('editor.getSavedDocument', $args); |
324 | 357 | $saved_doc = $output->data; |
325 | - if(!$saved_doc) return; |
|
358 | + if(!$saved_doc) { |
|
359 | + return; |
|
360 | + } |
|
326 | 361 | |
327 | 362 | $oDocumentModel = getModel('document'); |
328 | 363 | $oSaved = $oDocumentModel->getDocument($saved_doc->document_srl); |
@@ -356,14 +391,17 @@ discard block |
||
356 | 391 | $oEditorModel = getModel('editor'); |
357 | 392 | $args = new stdClass; |
358 | 393 | |
359 | - if($filter_enabled) $args->enabled = "Y"; |
|
394 | + if($filter_enabled) { |
|
395 | + $args->enabled = "Y"; |
|
396 | + } |
|
360 | 397 | |
361 | 398 | if($site_srl) |
362 | 399 | { |
363 | 400 | $args->site_srl = $site_srl; |
364 | 401 | $output = executeQuery('editor.getSiteComponentList', $args); |
402 | + } else { |
|
403 | + $output = executeQuery('editor.getComponentList', $args); |
|
365 | 404 | } |
366 | - else $output = executeQuery('editor.getComponentList', $args); |
|
367 | 405 | $db_list = $output->data; |
368 | 406 | |
369 | 407 | // Get a list of files |
@@ -377,21 +415,30 @@ discard block |
||
377 | 415 | if($logged_info->group_list && is_array($logged_info->group_list)) |
378 | 416 | { |
379 | 417 | $group_list = array_keys($logged_info->group_list); |
418 | + } else { |
|
419 | + $group_list = array(); |
|
380 | 420 | } |
381 | - else $group_list = array(); |
|
382 | 421 | } |
383 | 422 | |
384 | 423 | // Get xml information for looping DB list |
385 | - if(!is_array($db_list)) $db_list = array($db_list); |
|
424 | + if(!is_array($db_list)) { |
|
425 | + $db_list = array($db_list); |
|
426 | + } |
|
386 | 427 | $component_list = new stdClass(); |
387 | 428 | foreach($db_list as $component) |
388 | 429 | { |
389 | - if(in_array($component->component_name, array('colorpicker_text','colorpicker_bg'))) continue; |
|
430 | + if(in_array($component->component_name, array('colorpicker_text','colorpicker_bg'))) { |
|
431 | + continue; |
|
432 | + } |
|
390 | 433 | |
391 | 434 | $component_name = $component->component_name; |
392 | - if(!$component_name) continue; |
|
435 | + if(!$component_name) { |
|
436 | + continue; |
|
437 | + } |
|
393 | 438 | |
394 | - if(!in_array($component_name, $downloaded_list)) continue; |
|
439 | + if(!in_array($component_name, $downloaded_list)) { |
|
440 | + continue; |
|
441 | + } |
|
395 | 442 | |
396 | 443 | unset($xml_info); |
397 | 444 | $xml_info = $oEditorModel->getComponentXmlInfo($component_name); |
@@ -445,8 +492,12 @@ discard block |
||
445 | 492 | // Get buttons, icons, images |
446 | 493 | $icon_file = _XE_PATH_.'modules/editor/components/'.$component_name.'/icon.gif'; |
447 | 494 | $component_icon_file = _XE_PATH_.'modules/editor/components/'.$component_name.'/component_icon.gif'; |
448 | - if(file_exists($icon_file)) $component_list->{$component_name}->icon = true; |
|
449 | - if(file_exists($component_icon_file)) $component_list->{$component_name}->component_icon = true; |
|
495 | + if(file_exists($icon_file)) { |
|
496 | + $component_list->{$component_name}->icon = true; |
|
497 | + } |
|
498 | + if(file_exists($component_icon_file)) { |
|
499 | + $component_list->{$component_name}->component_icon = true; |
|
500 | + } |
|
450 | 501 | } |
451 | 502 | |
452 | 503 | // Return if it checks enabled only |
@@ -461,9 +512,13 @@ discard block |
||
461 | 512 | // Get xml_info of downloaded list |
462 | 513 | foreach($downloaded_list as $component_name) |
463 | 514 | { |
464 | - if(in_array($component_name, array('colorpicker_text','colorpicker_bg'))) continue; |
|
515 | + if(in_array($component_name, array('colorpicker_text','colorpicker_bg'))) { |
|
516 | + continue; |
|
517 | + } |
|
465 | 518 | // Pass if configured |
466 | - if($component_list->{$component_name}) continue; |
|
519 | + if($component_list->{$component_name}) { |
|
520 | + continue; |
|
521 | + } |
|
467 | 522 | // Insert data into the DB |
468 | 523 | $oEditorController = getAdminController('editor'); |
469 | 524 | $oEditorController->insertComponent($component_name, false, $site_srl); |
@@ -113,6 +113,11 @@ discard block |
||
113 | 113 | Context::set('drComponentList',$drComponentInfo); |
114 | 114 | } |
115 | 115 | |
116 | + /** |
|
117 | + * @param string $drComponentName |
|
118 | + * |
|
119 | + * @return string |
|
120 | + */ |
|
116 | 121 | function getDrComponentXmlInfo($drComponentName) |
117 | 122 | { |
118 | 123 | $lang_type = Context::getLangType(); |
@@ -191,6 +196,7 @@ discard block |
||
191 | 196 | * @brief Return the editor template |
192 | 197 | * You can call upload_target_srl when modifying content |
193 | 198 | * The upload_target_srl is used for a routine to check if an attachment exists |
199 | + * @param stdClass $option |
|
194 | 200 | */ |
195 | 201 | function getEditor($upload_target_srl = 0, $option = null) |
196 | 202 | { |
@@ -486,6 +492,8 @@ discard block |
||
486 | 492 | |
487 | 493 | /** |
488 | 494 | * @brief Get information which has been auto-saved |
495 | + * @param integer $upload_target_srl |
|
496 | + * @return string |
|
489 | 497 | */ |
490 | 498 | function getSavedDoc($upload_target_srl) |
491 | 499 | { |
@@ -586,6 +594,7 @@ discard block |
||
586 | 594 | |
587 | 595 | /** |
588 | 596 | * @brief Return a component list (DB Information included) |
597 | + * @return string |
|
589 | 598 | */ |
590 | 599 | function getComponentList($filter_enabled = true, $site_srl=0, $from_db=false) |
591 | 600 | { |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /* Copyright (C) NAVER <http://www.navercorp.com> */ |
3 | 3 | /** |
4 | - * @class editorModel |
|
5 | - * @author NAVER ([email protected]) |
|
6 | - * @brief model class of the editor odule |
|
7 | - */ |
|
4 | + * @class editorModel |
|
5 | + * @author NAVER ([email protected]) |
|
6 | + * @brief model class of the editor odule |
|
7 | + */ |
|
8 | 8 | class editorModel extends editor |
9 | 9 | { |
10 | 10 | var $loaded_component_list = array(); |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | */ |
24 | 24 | function getEditorConfig($module_srl = null) |
25 | 25 | { |
26 | - if(!$GLOBALS['__editor_module_config__'][$module_srl] && $module_srl) |
|
26 | + if (!$GLOBALS['__editor_module_config__'][$module_srl] && $module_srl) |
|
27 | 27 | { |
28 | 28 | // Get trackback settings of the selected module |
29 | 29 | $oModuleModel = getModel('module'); |
@@ -34,55 +34,55 @@ discard block |
||
34 | 34 | $oModuleModel = getModel('module'); |
35 | 35 | $editor_default_config = $oModuleModel->getModuleConfig('editor'); |
36 | 36 | |
37 | - if(!is_object($editor_config)) $editor_config = new stdClass(); |
|
37 | + if (!is_object($editor_config)) $editor_config = new stdClass(); |
|
38 | 38 | |
39 | - if($editor_config->enable_autosave != 'N') $editor_config->enable_autosave = 'Y'; |
|
40 | - if(!is_array($editor_config->enable_html_grant)) $editor_config->enable_html_grant = array(); |
|
41 | - if(!is_array($editor_config->enable_comment_html_grant)) $editor_config->enable_comment_html_grant = array(); |
|
42 | - if(!is_array($editor_config->upload_file_grant)) $editor_config->upload_file_grant = array(); |
|
43 | - if(!is_array($editor_config->comment_upload_file_grant)) $editor_config->comment_upload_file_grant = array(); |
|
44 | - if(!is_array($editor_config->enable_default_component_grant)) $editor_config->enable_default_component_grant = array(); |
|
45 | - if(!is_array($editor_config->enable_comment_default_component_grant)) $editor_config->enable_comment_default_component_grant = array(); |
|
46 | - if(!is_array($editor_config->enable_component_grant)) $editor_config->enable_component_grant = array(); |
|
47 | - if(!is_array($editor_config->enable_comment_component_grant)) $editor_config->enable_comment_component_grant= array(); |
|
39 | + if ($editor_config->enable_autosave != 'N') $editor_config->enable_autosave = 'Y'; |
|
40 | + if (!is_array($editor_config->enable_html_grant)) $editor_config->enable_html_grant = array(); |
|
41 | + if (!is_array($editor_config->enable_comment_html_grant)) $editor_config->enable_comment_html_grant = array(); |
|
42 | + if (!is_array($editor_config->upload_file_grant)) $editor_config->upload_file_grant = array(); |
|
43 | + if (!is_array($editor_config->comment_upload_file_grant)) $editor_config->comment_upload_file_grant = array(); |
|
44 | + if (!is_array($editor_config->enable_default_component_grant)) $editor_config->enable_default_component_grant = array(); |
|
45 | + if (!is_array($editor_config->enable_comment_default_component_grant)) $editor_config->enable_comment_default_component_grant = array(); |
|
46 | + if (!is_array($editor_config->enable_component_grant)) $editor_config->enable_component_grant = array(); |
|
47 | + if (!is_array($editor_config->enable_comment_component_grant)) $editor_config->enable_comment_component_grant = array(); |
|
48 | 48 | |
49 | - if(!$editor_config->editor_height) |
|
49 | + if (!$editor_config->editor_height) |
|
50 | 50 | { |
51 | 51 | $editor_config->editor_height = ($editor_default_config->editor_height) ? $editor_default_config->editor_height : 500; |
52 | 52 | } |
53 | - if(!$editor_config->comment_editor_height) |
|
53 | + if (!$editor_config->comment_editor_height) |
|
54 | 54 | { |
55 | 55 | $editor_config->comment_editor_height = ($editor_default_config->comment_editor_height) ? $editor_default_config->comment_editor_height : 120; |
56 | 56 | } |
57 | - if(!$editor_config->editor_skin) |
|
57 | + if (!$editor_config->editor_skin) |
|
58 | 58 | { |
59 | 59 | $editor_config->editor_skin = ($editor_default_config->editor_skin) ? $editor_default_config->editor_skin : 'ckeditor'; |
60 | 60 | } |
61 | - if(!$editor_config->comment_editor_skin) |
|
61 | + if (!$editor_config->comment_editor_skin) |
|
62 | 62 | { |
63 | 63 | $editor_config->comment_editor_skin = ($editor_default_config->comment_editor_skin) ? $editor_default_config->comment_editor_skin : 'ckeditor'; |
64 | 64 | } |
65 | - if(!$editor_config->content_style) |
|
65 | + if (!$editor_config->content_style) |
|
66 | 66 | { |
67 | 67 | $editor_config->content_style = ($editor_default_config->content_style) ? $editor_default_config->content_style : 'ckeditor_light'; |
68 | 68 | } |
69 | - if(!$editor_config->content_font && $editor_default_config->content_font) |
|
69 | + if (!$editor_config->content_font && $editor_default_config->content_font) |
|
70 | 70 | { |
71 | 71 | $editor_config->content_font = $editor_default_config->content_font; |
72 | 72 | } |
73 | - if(!$editor_config->content_font_size && $editor_default_config->content_font_size) |
|
73 | + if (!$editor_config->content_font_size && $editor_default_config->content_font_size) |
|
74 | 74 | { |
75 | 75 | $editor_config->content_font_size = $editor_default_config->content_font_size; |
76 | 76 | } |
77 | - if(!$editor_config->sel_editor_colorset && $editor_default_config->sel_editor_colorset) |
|
77 | + if (!$editor_config->sel_editor_colorset && $editor_default_config->sel_editor_colorset) |
|
78 | 78 | { |
79 | 79 | $editor_config->sel_editor_colorset = $editor_default_config->sel_editor_colorset; |
80 | 80 | } |
81 | - if(!$editor_config->sel_comment_editor_colorset && $editor_default_config->sel_comment_editor_colorset) |
|
81 | + if (!$editor_config->sel_comment_editor_colorset && $editor_default_config->sel_comment_editor_colorset) |
|
82 | 82 | { |
83 | 83 | $editor_config->sel_comment_editor_colorset = $editor_default_config->sel_comment_editor_colorset; |
84 | 84 | } |
85 | - if(!$editor_config->comment_content_style && $editor_default_config->comment_content_style) |
|
85 | + if (!$editor_config->comment_content_style && $editor_default_config->comment_content_style) |
|
86 | 86 | { |
87 | 87 | $editor_config->comment_content_style = $editor_default_config->comment_content_style; |
88 | 88 | } |
@@ -98,19 +98,19 @@ discard block |
||
98 | 98 | $oTemplate = &TemplateHandler::getInstance(); |
99 | 99 | |
100 | 100 | $drComponentInfo = array(); |
101 | - if($drComponentList) |
|
101 | + if ($drComponentList) |
|
102 | 102 | { |
103 | - foreach($drComponentList as $i => $drComponent) |
|
103 | + foreach ($drComponentList as $i => $drComponent) |
|
104 | 104 | { |
105 | 105 | unset($obj); |
106 | 106 | $obj = $this->getDrComponentXmlInfo($drComponent); |
107 | - Context::loadLang(sprintf('%s%s/lang/',$drComponentPath,$drComponent)); |
|
108 | - $path = sprintf('%s%s/tpl/',$drComponentPath,$drComponent); |
|
109 | - $obj->html = $oTemplate->compile($path,$drComponent); |
|
107 | + Context::loadLang(sprintf('%s%s/lang/', $drComponentPath, $drComponent)); |
|
108 | + $path = sprintf('%s%s/tpl/', $drComponentPath, $drComponent); |
|
109 | + $obj->html = $oTemplate->compile($path, $drComponent); |
|
110 | 110 | $drComponentInfo[$drComponent] = $obj; |
111 | 111 | } |
112 | 112 | } |
113 | - Context::set('drComponentList',$drComponentInfo); |
|
113 | + Context::set('drComponentList', $drComponentInfo); |
|
114 | 114 | } |
115 | 115 | |
116 | 116 | function getDrComponentXmlInfo($drComponentName) |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | $xml_file = sprintf('%sinfo.xml', $component_path); |
123 | 123 | $cache_file = sprintf('./files/cache/editor/dr_%s.%s.php', $drComponentName, $lang_type); |
124 | 124 | // Return information after including it after cached xml file exists |
125 | - if(file_exists($cache_file) && file_exists($xml_file) && filemtime($cache_file) > filemtime($xml_file)) |
|
125 | + if (file_exists($cache_file) && file_exists($xml_file) && filemtime($cache_file) > filemtime($xml_file)) |
|
126 | 126 | { |
127 | 127 | include($cache_file); |
128 | 128 | return $xml_info; |
@@ -151,22 +151,22 @@ discard block |
||
151 | 151 | $buff .= sprintf('$xml_info->license_link = "%s";', $component_info->license_link); |
152 | 152 | |
153 | 153 | // Author information |
154 | - if(!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author; |
|
154 | + if (!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author; |
|
155 | 155 | else $author_list = $xml_doc->component->author; |
156 | 156 | |
157 | - for($i=0; $i < count($author_list); $i++) |
|
157 | + for ($i = 0; $i < count($author_list); $i++) |
|
158 | 158 | { |
159 | - $buff .= sprintf('$xml_info->author['.$i.']->name = "%s";', $author_list[$i]->name->body); |
|
160 | - $buff .= sprintf('$xml_info->author['.$i.']->email_address = "%s";', $author_list[$i]->attrs->email_address); |
|
161 | - $buff .= sprintf('$xml_info->author['.$i.']->homepage = "%s";', $author_list[$i]->attrs->link); |
|
159 | + $buff .= sprintf('$xml_info->author[' . $i . ']->name = "%s";', $author_list[$i]->name->body); |
|
160 | + $buff .= sprintf('$xml_info->author[' . $i . ']->email_address = "%s";', $author_list[$i]->attrs->email_address); |
|
161 | + $buff .= sprintf('$xml_info->author[' . $i . ']->homepage = "%s";', $author_list[$i]->attrs->link); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | // List extra variables (text type only in the editor component) |
165 | 165 | $extra_vars = $xml_doc->component->extra_vars->var; |
166 | - if($extra_vars) |
|
166 | + if ($extra_vars) |
|
167 | 167 | { |
168 | - if(!is_array($extra_vars)) $extra_vars = array($extra_vars); |
|
169 | - foreach($extra_vars as $key => $val) |
|
168 | + if (!is_array($extra_vars)) $extra_vars = array($extra_vars); |
|
169 | + foreach ($extra_vars as $key => $val) |
|
170 | 170 | { |
171 | 171 | unset($obj); |
172 | 172 | $key = $val->attrs->name; |
@@ -198,14 +198,14 @@ discard block |
||
198 | 198 | * Editor's default options |
199 | 199 | */ |
200 | 200 | // Option setting to allow file upload |
201 | - if($upload_target_srl) |
|
201 | + if ($upload_target_srl) |
|
202 | 202 | { |
203 | 203 | $option->editor_sequence = $upload_target_srl; |
204 | 204 | } |
205 | - if(!$option->allow_fileupload) $allow_fileupload = false; |
|
205 | + if (!$option->allow_fileupload) $allow_fileupload = false; |
|
206 | 206 | else $allow_fileupload = true; |
207 | 207 | // content_style setting |
208 | - if(!$option->content_style) $option->content_style = 'ckeditor_light'; |
|
208 | + if (!$option->content_style) $option->content_style = 'ckeditor_light'; |
|
209 | 209 | Context::set('content_style', $option->content_style); |
210 | 210 | Context::set('content_style_path', $this->module_path . 'styles/' . $option->content_style); |
211 | 211 | // Default font setting |
@@ -213,32 +213,32 @@ discard block |
||
213 | 213 | Context::set('content_font_size', $option->content_font_size); |
214 | 214 | |
215 | 215 | // Option setting to allow auto-save |
216 | - if(!$option->enable_autosave) $enable_autosave = false; |
|
217 | - elseif(Context::get($option->primary_key_name)) $enable_autosave = false; |
|
216 | + if (!$option->enable_autosave) $enable_autosave = false; |
|
217 | + elseif (Context::get($option->primary_key_name)) $enable_autosave = false; |
|
218 | 218 | else $enable_autosave = true; |
219 | 219 | // Option setting to allow the default editor component |
220 | - if(!$option->enable_default_component) $enable_default_component = false; |
|
220 | + if (!$option->enable_default_component) $enable_default_component = false; |
|
221 | 221 | else $enable_default_component = true; |
222 | 222 | // Option setting to allow other extended components |
223 | - if(!$option->enable_component) $enable_component = false; |
|
223 | + if (!$option->enable_component) $enable_component = false; |
|
224 | 224 | else $enable_component = true; |
225 | 225 | // Setting for html-mode |
226 | - if($option->disable_html) $html_mode = false; |
|
226 | + if ($option->disable_html) $html_mode = false; |
|
227 | 227 | else $html_mode = true; |
228 | 228 | // Set Height |
229 | - if(!$option->height) $editor_height = 300; |
|
229 | + if (!$option->height) $editor_height = 300; |
|
230 | 230 | else $editor_height = $option->height; |
231 | 231 | // Skin Setting |
232 | 232 | $skin = $option->skin; |
233 | - if(!$skin) $skin = 'ckeditor'; |
|
233 | + if (!$skin) $skin = 'ckeditor'; |
|
234 | 234 | |
235 | 235 | $colorset = $option->colorset; |
236 | - if(!$colorset) $colorset = 'moono'; |
|
236 | + if (!$colorset) $colorset = 'moono'; |
|
237 | 237 | Context::set('colorset', $colorset); |
238 | 238 | Context::set('skin', $skin); |
239 | 239 | Context::set('module_type', $option->module_type); |
240 | 240 | |
241 | - if($skin=='dreditor') |
|
241 | + if ($skin == 'dreditor') |
|
242 | 242 | { |
243 | 243 | $this->loadDrComponents(); |
244 | 244 | } |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | /** |
247 | 247 | * Check the automatic backup feature (do not use if the post is edited) |
248 | 248 | */ |
249 | - if($enable_autosave) |
|
249 | + if ($enable_autosave) |
|
250 | 250 | { |
251 | 251 | // Extract auto-saved data |
252 | 252 | $saved_doc = $this->getSavedDoc($upload_target_srl); |
@@ -258,26 +258,26 @@ discard block |
||
258 | 258 | /** |
259 | 259 | * Extract editor's unique number (in order to display multiple editors on a single page) |
260 | 260 | */ |
261 | - if($option->editor_sequence) $editor_sequence = $option->editor_sequence; |
|
261 | + if ($option->editor_sequence) $editor_sequence = $option->editor_sequence; |
|
262 | 262 | else |
263 | 263 | { |
264 | - if(!$_SESSION['_editor_sequence_']) $_SESSION['_editor_sequence_'] = 1; |
|
265 | - $editor_sequence = $_SESSION['_editor_sequence_'] ++; |
|
264 | + if (!$_SESSION['_editor_sequence_']) $_SESSION['_editor_sequence_'] = 1; |
|
265 | + $editor_sequence = $_SESSION['_editor_sequence_']++; |
|
266 | 266 | } |
267 | 267 | |
268 | 268 | /** |
269 | 269 | * Upload setting by using configuration of the file module internally |
270 | 270 | */ |
271 | 271 | $files_count = 0; |
272 | - if($allow_fileupload) |
|
272 | + if ($allow_fileupload) |
|
273 | 273 | { |
274 | 274 | $oFileModel = getModel('file'); |
275 | 275 | // Get upload configuration to set on SWFUploader |
276 | 276 | $file_config = $oFileModel->getUploadConfig(); |
277 | - $file_config->allowed_attach_size = $file_config->allowed_attach_size*1024*1024; |
|
278 | - $file_config->allowed_filesize = $file_config->allowed_filesize*1024*1024; |
|
277 | + $file_config->allowed_attach_size = $file_config->allowed_attach_size * 1024 * 1024; |
|
278 | + $file_config->allowed_filesize = $file_config->allowed_filesize * 1024 * 1024; |
|
279 | 279 | |
280 | - Context::set('file_config',$file_config); |
|
280 | + Context::set('file_config', $file_config); |
|
281 | 281 | // Configure upload status such as file size |
282 | 282 | $upload_status = $oFileModel->getUploadStatus(); |
283 | 283 | Context::set('upload_status', $upload_status); |
@@ -285,9 +285,9 @@ discard block |
||
285 | 285 | $oFileController = getController('file'); |
286 | 286 | $oFileController->setUploadInfo($editor_sequence, $upload_target_srl); |
287 | 287 | // Check if the file already exists |
288 | - if($upload_target_srl) $files_count = $oFileModel->getFilesCount($upload_target_srl); |
|
288 | + if ($upload_target_srl) $files_count = $oFileModel->getFilesCount($upload_target_srl); |
|
289 | 289 | } |
290 | - Context::set('files_count', (int)$files_count); |
|
290 | + Context::set('files_count', (int) $files_count); |
|
291 | 291 | |
292 | 292 | Context::set('allow_fileupload', $allow_fileupload); |
293 | 293 | // Set editor_sequence value |
@@ -304,10 +304,10 @@ discard block |
||
304 | 304 | * Check editor component |
305 | 305 | */ |
306 | 306 | $site_module_info = Context::get('site_module_info'); |
307 | - $site_srl = (int)$site_module_info->site_srl; |
|
308 | - if($enable_component) |
|
307 | + $site_srl = (int) $site_module_info->site_srl; |
|
308 | + if ($enable_component) |
|
309 | 309 | { |
310 | - if(!Context::get('component_list')) |
|
310 | + if (!Context::get('component_list')) |
|
311 | 311 | { |
312 | 312 | $component_list = $this->getComponentList(true, $site_srl); |
313 | 313 | Context::set('component_list', $component_list); |
@@ -334,7 +334,7 @@ discard block |
||
334 | 334 | $tpl_path = sprintf('%sskins/%s/', $this->module_path, $skin); |
335 | 335 | $tpl_file = 'editor.html'; |
336 | 336 | |
337 | - if(!file_exists($tpl_path.$tpl_file)) |
|
337 | + if (!file_exists($tpl_path . $tpl_file)) |
|
338 | 338 | { |
339 | 339 | $skin = 'ckeditor'; |
340 | 340 | $tpl_path = sprintf('%sskins/%s/', $this->module_path, $skin); |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | Context::set('editor_path', $tpl_path); |
343 | 343 | |
344 | 344 | // load editor skin lang |
345 | - Context::loadLang($tpl_path.'lang'); |
|
345 | + Context::loadLang($tpl_path . 'lang'); |
|
346 | 346 | // Return the compiled result from tpl file |
347 | 347 | $oTemplate = TemplateHandler::getInstance(); |
348 | 348 | return $oTemplate->compile($tpl_path, $tpl_file); |
@@ -364,7 +364,7 @@ discard block |
||
364 | 364 | $config->module_type = $type; |
365 | 365 | |
366 | 366 | // Configurations listed according to a type |
367 | - if($type == 'document') |
|
367 | + if ($type == 'document') |
|
368 | 368 | { |
369 | 369 | $config->editor_skin = $editor_config->editor_skin; |
370 | 370 | $config->content_style = $editor_config->content_style; |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | $config->enable_autosave = 'N'; |
394 | 394 | } |
395 | 395 | // Check a group_list of the currently logged-in user for permission check |
396 | - if(Context::get('is_logged')) |
|
396 | + if (Context::get('is_logged')) |
|
397 | 397 | { |
398 | 398 | $logged_info = Context::get('logged_info'); |
399 | 399 | $group_list = $logged_info->group_list; |
@@ -412,12 +412,12 @@ discard block |
||
412 | 412 | $option->colorset = $config->sel_editor_colorset; |
413 | 413 | // Permission check for file upload |
414 | 414 | $option->allow_fileupload = false; |
415 | - if($logged_info->is_admin=='Y') $option->allow_fileupload = true; |
|
416 | - elseif(count($config->upload_file_grant)) |
|
415 | + if ($logged_info->is_admin == 'Y') $option->allow_fileupload = true; |
|
416 | + elseif (count($config->upload_file_grant)) |
|
417 | 417 | { |
418 | - foreach($group_list as $group_srl => $group_info) |
|
418 | + foreach ($group_list as $group_srl => $group_info) |
|
419 | 419 | { |
420 | - if(in_array($group_srl, $config->upload_file_grant)) |
|
420 | + if (in_array($group_srl, $config->upload_file_grant)) |
|
421 | 421 | { |
422 | 422 | $option->allow_fileupload = true; |
423 | 423 | break; |
@@ -427,12 +427,12 @@ discard block |
||
427 | 427 | else $option->allow_fileupload = true; |
428 | 428 | // Permission check for using default components |
429 | 429 | $option->enable_default_component = false; |
430 | - if($logged_info->is_admin=='Y') $option->enable_default_component = true; |
|
431 | - elseif(count($config->enable_default_component_grant)) |
|
430 | + if ($logged_info->is_admin == 'Y') $option->enable_default_component = true; |
|
431 | + elseif (count($config->enable_default_component_grant)) |
|
432 | 432 | { |
433 | - foreach($group_list as $group_srl => $group_info) |
|
433 | + foreach ($group_list as $group_srl => $group_info) |
|
434 | 434 | { |
435 | - if(in_array($group_srl, $config->enable_default_component_grant)) |
|
435 | + if (in_array($group_srl, $config->enable_default_component_grant)) |
|
436 | 436 | { |
437 | 437 | $option->enable_default_component = true; |
438 | 438 | break; |
@@ -442,12 +442,12 @@ discard block |
||
442 | 442 | else $option->enable_default_component = true; |
443 | 443 | // Permisshion check for using extended components |
444 | 444 | $option->enable_component = false; |
445 | - if($logged_info->is_admin=='Y') $option->enable_component = true; |
|
446 | - elseif(count($config->enable_component_grant)) |
|
445 | + if ($logged_info->is_admin == 'Y') $option->enable_component = true; |
|
446 | + elseif (count($config->enable_component_grant)) |
|
447 | 447 | { |
448 | - foreach($group_list as $group_srl => $group_info) |
|
448 | + foreach ($group_list as $group_srl => $group_info) |
|
449 | 449 | { |
450 | - if(in_array($group_srl, $config->enable_component_grant)) |
|
450 | + if (in_array($group_srl, $config->enable_component_grant)) |
|
451 | 451 | { |
452 | 452 | $option->enable_component = true; |
453 | 453 | break; |
@@ -457,12 +457,12 @@ discard block |
||
457 | 457 | else $option->enable_component = true; |
458 | 458 | // HTML editing privileges |
459 | 459 | $enable_html = false; |
460 | - if($logged_info->is_admin=='Y') $enable_html = true; |
|
461 | - elseif(count($config->enable_html_grant)) |
|
460 | + if ($logged_info->is_admin == 'Y') $enable_html = true; |
|
461 | + elseif (count($config->enable_html_grant)) |
|
462 | 462 | { |
463 | - foreach($group_list as $group_srl => $group_info) |
|
463 | + foreach ($group_list as $group_srl => $group_info) |
|
464 | 464 | { |
465 | - if(in_array($group_srl, $config->enable_html_grant)) |
|
465 | + if (in_array($group_srl, $config->enable_html_grant)) |
|
466 | 466 | { |
467 | 467 | $enable_html = true; |
468 | 468 | break; |
@@ -471,12 +471,12 @@ discard block |
||
471 | 471 | } |
472 | 472 | else $enable_html = true; |
473 | 473 | |
474 | - if($enable_html) $option->disable_html = false; |
|
474 | + if ($enable_html) $option->disable_html = false; |
|
475 | 475 | else $option->disable_html = true; |
476 | 476 | // Set Height |
477 | 477 | $option->height = $config->editor_height; |
478 | 478 | // Set an option for Auto-save |
479 | - $option->enable_autosave = $config->enable_autosave=='Y'?true:false; |
|
479 | + $option->enable_autosave = $config->enable_autosave == 'Y' ? true : false; |
|
480 | 480 | // Other settings |
481 | 481 | $option->primary_key_name = $primary_key_name; |
482 | 482 | $option->content_key_name = $content_key_name; |
@@ -491,7 +491,7 @@ discard block |
||
491 | 491 | { |
492 | 492 | $auto_save_args = new stdClass(); |
493 | 493 | // Find a document by using member_srl for logged-in user and ipaddress for non-logged user |
494 | - if(Context::get('is_logged')) |
|
494 | + if (Context::get('is_logged')) |
|
495 | 495 | { |
496 | 496 | $logged_info = Context::get('logged_info'); |
497 | 497 | $auto_save_args->member_srl = $logged_info->member_srl; |
@@ -502,7 +502,7 @@ discard block |
||
502 | 502 | } |
503 | 503 | $auto_save_args->module_srl = Context::get('module_srl'); |
504 | 504 | // Get the current module if module_srl doesn't exist |
505 | - if(!$auto_save_args->module_srl) |
|
505 | + if (!$auto_save_args->module_srl) |
|
506 | 506 | { |
507 | 507 | $current_module_info = Context::get('current_module_info'); |
508 | 508 | $auto_save_args->module_srl = $current_module_info->module_srl; |
@@ -511,20 +511,20 @@ discard block |
||
511 | 511 | $output = executeQuery('editor.getSavedDocument', $auto_save_args); |
512 | 512 | $saved_doc = $output->data; |
513 | 513 | // Return null if no result is auto-saved |
514 | - if(!$saved_doc) return; |
|
514 | + if (!$saved_doc) return; |
|
515 | 515 | // Check if the auto-saved document already exists |
516 | 516 | $oDocumentModel = getModel('document'); |
517 | 517 | $oSaved = $oDocumentModel->getDocument($saved_doc->document_srl); |
518 | - if($oSaved->isExists()) return; |
|
518 | + if ($oSaved->isExists()) return; |
|
519 | 519 | // Move all the files if the auto-saved data contains document_srl and file |
520 | 520 | // Then set document_srl to editor_sequence |
521 | - if($saved_doc->document_srl && $upload_target_srl && !Context::get('document_srl')) |
|
521 | + if ($saved_doc->document_srl && $upload_target_srl && !Context::get('document_srl')) |
|
522 | 522 | { |
523 | 523 | $saved_doc->module_srl = $auto_save_args->module_srl; |
524 | 524 | $oFileController = getController('file'); |
525 | 525 | $oFileController->moveFile($saved_doc->document_srl, $saved_doc->module_srl, $upload_target_srl); |
526 | 526 | } |
527 | - else if($upload_target_srl) $saved_doc->document_srl = $upload_target_srl; |
|
527 | + else if ($upload_target_srl) $saved_doc->document_srl = $upload_target_srl; |
|
528 | 528 | // Change auto-saved data |
529 | 529 | $oEditorController = getController('editor'); |
530 | 530 | $oEditorController->deleteSavedDoc(false); |
@@ -540,18 +540,18 @@ discard block |
||
540 | 540 | */ |
541 | 541 | function getComponentObject($component, $editor_sequence = 0, $site_srl = 0) |
542 | 542 | { |
543 | - if(!preg_match('/^[a-zA-Z0-9_-]+$/',$component) || !preg_match('/^[0-9]+$/', $editor_sequence . $site_srl)) return; |
|
543 | + if (!preg_match('/^[a-zA-Z0-9_-]+$/', $component) || !preg_match('/^[0-9]+$/', $editor_sequence . $site_srl)) return; |
|
544 | 544 | |
545 | - if(!$this->loaded_component_list[$component][$editor_sequence]) |
|
545 | + if (!$this->loaded_component_list[$component][$editor_sequence]) |
|
546 | 546 | { |
547 | 547 | // Create an object of the component and execute |
548 | 548 | $class_path = sprintf('%scomponents/%s/', $this->module_path, $component); |
549 | 549 | $class_file = sprintf('%s%s.class.php', $class_path, $component); |
550 | - if(!file_exists($class_file)) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
550 | + if (!file_exists($class_file)) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
551 | 551 | // Create an object after loading the class file |
552 | 552 | require_once($class_file); |
553 | 553 | $oComponent = new $component($editor_sequence, $class_path); |
554 | - if(!$oComponent) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
554 | + if (!$oComponent) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
555 | 555 | // Add configuration information |
556 | 556 | $component_info = $this->getComponent($component, $site_srl); |
557 | 557 | $oComponent->setInfo($component_info); |
@@ -572,14 +572,14 @@ discard block |
||
572 | 572 | /** |
573 | 573 | * @brief Return the cache file name of editor component list |
574 | 574 | */ |
575 | - function getCacheFile($filter_enabled= true, $site_srl = 0) |
|
575 | + function getCacheFile($filter_enabled = true, $site_srl = 0) |
|
576 | 576 | { |
577 | 577 | $lang = Context::getLangType(); |
578 | - $cache_path = _XE_PATH_.'files/cache/editor/cache/'; |
|
578 | + $cache_path = _XE_PATH_ . 'files/cache/editor/cache/'; |
|
579 | 579 | FileHandler::makeDir($cache_path); |
580 | - $cache_file = $cache_path.'component_list.' . $lang .'.'; |
|
581 | - if($filter_enabled) $cache_file .= 'filter.'; |
|
582 | - if($site_srl) $cache_file .= $site_srl.'.'; |
|
580 | + $cache_file = $cache_path . 'component_list.' . $lang . '.'; |
|
581 | + if ($filter_enabled) $cache_file .= 'filter.'; |
|
582 | + if ($site_srl) $cache_file .= $site_srl . '.'; |
|
583 | 583 | $cache_file .= 'php'; |
584 | 584 | return $cache_file; |
585 | 585 | } |
@@ -587,19 +587,19 @@ discard block |
||
587 | 587 | /** |
588 | 588 | * @brief Return a component list (DB Information included) |
589 | 589 | */ |
590 | - function getComponentList($filter_enabled = true, $site_srl=0, $from_db=false) |
|
590 | + function getComponentList($filter_enabled = true, $site_srl = 0, $from_db = false) |
|
591 | 591 | { |
592 | 592 | $cache_file = $this->getCacheFile(false, $site_srl); |
593 | - if($from_db || !file_exists($cache_file)) |
|
593 | + if ($from_db || !file_exists($cache_file)) |
|
594 | 594 | { |
595 | 595 | $oEditorController = getController('editor'); |
596 | 596 | $oEditorController->makeCache(false, $site_srl); |
597 | 597 | } |
598 | 598 | |
599 | - if(!file_exists($cache_file)) return; |
|
599 | + if (!file_exists($cache_file)) return; |
|
600 | 600 | include($cache_file); |
601 | 601 | $logged_info = Context::get('logged_info'); |
602 | - if($logged_info && is_array($logged_info->group_list)) |
|
602 | + if ($logged_info && is_array($logged_info->group_list)) |
|
603 | 603 | { |
604 | 604 | $group_list = array_keys($logged_info->group_list); |
605 | 605 | } |
@@ -608,45 +608,45 @@ discard block |
||
608 | 608 | $group_list = array(); |
609 | 609 | } |
610 | 610 | |
611 | - if(count($component_list)) |
|
611 | + if (count($component_list)) |
|
612 | 612 | { |
613 | - foreach($component_list as $key => $val) |
|
613 | + foreach ($component_list as $key => $val) |
|
614 | 614 | { |
615 | - if(!trim($key)) continue; |
|
616 | - if(!is_dir(_XE_PATH_.'modules/editor/components/'.$key)) |
|
615 | + if (!trim($key)) continue; |
|
616 | + if (!is_dir(_XE_PATH_ . 'modules/editor/components/' . $key)) |
|
617 | 617 | { |
618 | 618 | FileHandler::removeFile($cache_file); |
619 | 619 | return $this->getComponentList($filter_enabled, $site_srl); |
620 | 620 | } |
621 | - if(!$filter_enabled) continue; |
|
622 | - if($val->enabled == "N") |
|
621 | + if (!$filter_enabled) continue; |
|
622 | + if ($val->enabled == "N") |
|
623 | 623 | { |
624 | 624 | unset($component_list->{$key}); |
625 | 625 | continue; |
626 | 626 | } |
627 | - if($logged_info->is_admin == "Y" || $logged_info->is_site_admin == "Y") continue; |
|
628 | - if($val->target_group) |
|
627 | + if ($logged_info->is_admin == "Y" || $logged_info->is_site_admin == "Y") continue; |
|
628 | + if ($val->target_group) |
|
629 | 629 | { |
630 | - if(!$logged_info) |
|
630 | + if (!$logged_info) |
|
631 | 631 | { |
632 | 632 | $val->enabled = "N"; |
633 | 633 | } |
634 | 634 | else |
635 | 635 | { |
636 | 636 | $is_granted = false; |
637 | - foreach($group_list as $group_srl) |
|
637 | + foreach ($group_list as $group_srl) |
|
638 | 638 | { |
639 | - if(in_array($group_srl, $val->target_group)) $is_granted = true; |
|
639 | + if (in_array($group_srl, $val->target_group)) $is_granted = true; |
|
640 | 640 | } |
641 | - if(!$is_granted) $val->enabled = "N"; |
|
641 | + if (!$is_granted) $val->enabled = "N"; |
|
642 | 642 | } |
643 | 643 | } |
644 | - if($val->enabled != "N" && $val->mid_list) |
|
644 | + if ($val->enabled != "N" && $val->mid_list) |
|
645 | 645 | { |
646 | 646 | $mid = Context::get('mid'); |
647 | - if(!in_array($mid, $val->mid_list)) $val->enabled = "N"; |
|
647 | + if (!in_array($mid, $val->mid_list)) $val->enabled = "N"; |
|
648 | 648 | } |
649 | - if($val->enabled == "N") |
|
649 | + if ($val->enabled == "N") |
|
650 | 650 | { |
651 | 651 | unset($component_list->{$key}); |
652 | 652 | continue; |
@@ -664,7 +664,7 @@ discard block |
||
664 | 664 | $args = new stdClass(); |
665 | 665 | $args->component_name = $component_name; |
666 | 666 | |
667 | - if($site_srl) |
|
667 | + if ($site_srl) |
|
668 | 668 | { |
669 | 669 | $args->site_srl = $site_srl; |
670 | 670 | $output = executeQuery('editor.getSiteComponent', $args); |
@@ -685,25 +685,25 @@ discard block |
||
685 | 685 | |
686 | 686 | $xml_info->mid_list = array(); |
687 | 687 | |
688 | - if($component->extra_vars) |
|
688 | + if ($component->extra_vars) |
|
689 | 689 | { |
690 | 690 | $extra_vars = unserialize($component->extra_vars); |
691 | 691 | |
692 | - if($extra_vars->target_group) |
|
692 | + if ($extra_vars->target_group) |
|
693 | 693 | { |
694 | 694 | $xml_info->target_group = $extra_vars->target_group; |
695 | 695 | unset($extra_vars->target_group); |
696 | 696 | } |
697 | 697 | |
698 | - if($extra_vars->mid_list) |
|
698 | + if ($extra_vars->mid_list) |
|
699 | 699 | { |
700 | 700 | $xml_info->mid_list = $extra_vars->mid_list; |
701 | 701 | unset($extra_vars->mid_list); |
702 | 702 | } |
703 | 703 | |
704 | - if($xml_info->extra_vars) |
|
704 | + if ($xml_info->extra_vars) |
|
705 | 705 | { |
706 | - foreach($xml_info->extra_vars as $key => $val) |
|
706 | + foreach ($xml_info->extra_vars as $key => $val) |
|
707 | 707 | { |
708 | 708 | $xml_info->extra_vars->{$key}->value = $extra_vars->{$key}; |
709 | 709 | } |
@@ -727,7 +727,7 @@ discard block |
||
727 | 727 | $cache_file = sprintf('./files/cache/editor/%s.%s.php', $component, $lang_type); |
728 | 728 | |
729 | 729 | // Include and return xml file information if cached file exists |
730 | - if(file_exists($cache_file) && file_exists($xml_file) && filemtime($cache_file) > filemtime($xml_file)) |
|
730 | + if (file_exists($cache_file) && file_exists($xml_file) && filemtime($cache_file) > filemtime($xml_file)) |
|
731 | 731 | { |
732 | 732 | include($cache_file); |
733 | 733 | |
@@ -744,7 +744,7 @@ discard block |
||
744 | 744 | $component_info->component_name = $component; |
745 | 745 | $component_info->title = $xml_doc->component->title->body; |
746 | 746 | |
747 | - if($xml_doc->component->version) |
|
747 | + if ($xml_doc->component->version) |
|
748 | 748 | { |
749 | 749 | $component_info->description = str_replace('\n', "\n", $xml_doc->component->description->body); |
750 | 750 | $component_info->version = $xml_doc->component->version->body; |
@@ -770,10 +770,10 @@ discard block |
||
770 | 770 | |
771 | 771 | // Author information |
772 | 772 | $author_list = array(); |
773 | - if(!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author; |
|
773 | + if (!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author; |
|
774 | 774 | else $author_list = $xml_doc->component->author; |
775 | 775 | |
776 | - for($i = 0; $i < count($author_list); $i++) |
|
776 | + for ($i = 0; $i < count($author_list); $i++) |
|
777 | 777 | { |
778 | 778 | $author = new stdClass; |
779 | 779 | $author->name = $author_list[$i]->name->body; |
@@ -784,39 +784,39 @@ discard block |
||
784 | 784 | |
785 | 785 | // List extra variables (text type only for editor component) |
786 | 786 | $extra_vars = $xml_doc->component->extra_vars; |
787 | - if($extra_vars) |
|
787 | + if ($extra_vars) |
|
788 | 788 | { |
789 | 789 | $extra_var_groups = $extra_vars->group; |
790 | - if(!$extra_var_groups) |
|
790 | + if (!$extra_var_groups) |
|
791 | 791 | { |
792 | 792 | $extra_var_groups = $extra_vars; |
793 | 793 | } |
794 | - if(!is_array($extra_var_groups)) |
|
794 | + if (!is_array($extra_var_groups)) |
|
795 | 795 | { |
796 | 796 | $extra_var_groups = array($extra_var_groups); |
797 | 797 | } |
798 | 798 | |
799 | - foreach($extra_var_groups as $group) |
|
799 | + foreach ($extra_var_groups as $group) |
|
800 | 800 | { |
801 | 801 | $extra_vars = $group->var; |
802 | - if(!is_array($group->var)) |
|
802 | + if (!is_array($group->var)) |
|
803 | 803 | { |
804 | 804 | $extra_vars = array($group->var); |
805 | 805 | } |
806 | 806 | |
807 | - foreach($extra_vars as $key => $val) |
|
807 | + foreach ($extra_vars as $key => $val) |
|
808 | 808 | { |
809 | - if(!$val) |
|
809 | + if (!$val) |
|
810 | 810 | { |
811 | 811 | continue; |
812 | 812 | } |
813 | 813 | |
814 | 814 | $obj = new stdClass(); |
815 | - if(!$val->attrs) |
|
815 | + if (!$val->attrs) |
|
816 | 816 | { |
817 | 817 | $val->attrs = new stdClass(); |
818 | 818 | } |
819 | - if(!$val->attrs->type) |
|
819 | + if (!$val->attrs->type) |
|
820 | 820 | { |
821 | 821 | $val->attrs->type = 'text'; |
822 | 822 | } |
@@ -826,26 +826,26 @@ discard block |
||
826 | 826 | $obj->title = $val->title->body; |
827 | 827 | $obj->type = $val->attrs->type; |
828 | 828 | $obj->description = $val->description->body; |
829 | - if($obj->name) |
|
829 | + if ($obj->name) |
|
830 | 830 | { |
831 | 831 | $obj->value = $extra_vals->{$obj->name}; |
832 | 832 | } |
833 | - if(strpos($obj->value, '|@|') != FALSE) |
|
833 | + if (strpos($obj->value, '|@|') != FALSE) |
|
834 | 834 | { |
835 | 835 | $obj->value = explode('|@|', $obj->value); |
836 | 836 | } |
837 | - if($obj->type == 'mid_list' && !is_array($obj->value)) |
|
837 | + if ($obj->type == 'mid_list' && !is_array($obj->value)) |
|
838 | 838 | { |
839 | 839 | $obj->value = array($obj->value); |
840 | 840 | } |
841 | 841 | |
842 | 842 | // 'Select'type obtained from the option list. |
843 | - if($val->options && !is_array($val->options)) |
|
843 | + if ($val->options && !is_array($val->options)) |
|
844 | 844 | { |
845 | 845 | $val->options = array($val->options); |
846 | 846 | } |
847 | 847 | |
848 | - for($i = 0, $c = count($val->options); $i < $c; $i++) |
|
848 | + for ($i = 0, $c = count($val->options); $i < $c; $i++) |
|
849 | 849 | { |
850 | 850 | $obj->options[$i] = new stdClass(); |
851 | 851 | $obj->options[$i]->title = $val->options[$i]->title->body; |
@@ -34,17 +34,37 @@ discard block |
||
34 | 34 | $oModuleModel = getModel('module'); |
35 | 35 | $editor_default_config = $oModuleModel->getModuleConfig('editor'); |
36 | 36 | |
37 | - if(!is_object($editor_config)) $editor_config = new stdClass(); |
|
38 | - |
|
39 | - if($editor_config->enable_autosave != 'N') $editor_config->enable_autosave = 'Y'; |
|
40 | - if(!is_array($editor_config->enable_html_grant)) $editor_config->enable_html_grant = array(); |
|
41 | - if(!is_array($editor_config->enable_comment_html_grant)) $editor_config->enable_comment_html_grant = array(); |
|
42 | - if(!is_array($editor_config->upload_file_grant)) $editor_config->upload_file_grant = array(); |
|
43 | - if(!is_array($editor_config->comment_upload_file_grant)) $editor_config->comment_upload_file_grant = array(); |
|
44 | - if(!is_array($editor_config->enable_default_component_grant)) $editor_config->enable_default_component_grant = array(); |
|
45 | - if(!is_array($editor_config->enable_comment_default_component_grant)) $editor_config->enable_comment_default_component_grant = array(); |
|
46 | - if(!is_array($editor_config->enable_component_grant)) $editor_config->enable_component_grant = array(); |
|
47 | - if(!is_array($editor_config->enable_comment_component_grant)) $editor_config->enable_comment_component_grant= array(); |
|
37 | + if(!is_object($editor_config)) { |
|
38 | + $editor_config = new stdClass(); |
|
39 | + } |
|
40 | + |
|
41 | + if($editor_config->enable_autosave != 'N') { |
|
42 | + $editor_config->enable_autosave = 'Y'; |
|
43 | + } |
|
44 | + if(!is_array($editor_config->enable_html_grant)) { |
|
45 | + $editor_config->enable_html_grant = array(); |
|
46 | + } |
|
47 | + if(!is_array($editor_config->enable_comment_html_grant)) { |
|
48 | + $editor_config->enable_comment_html_grant = array(); |
|
49 | + } |
|
50 | + if(!is_array($editor_config->upload_file_grant)) { |
|
51 | + $editor_config->upload_file_grant = array(); |
|
52 | + } |
|
53 | + if(!is_array($editor_config->comment_upload_file_grant)) { |
|
54 | + $editor_config->comment_upload_file_grant = array(); |
|
55 | + } |
|
56 | + if(!is_array($editor_config->enable_default_component_grant)) { |
|
57 | + $editor_config->enable_default_component_grant = array(); |
|
58 | + } |
|
59 | + if(!is_array($editor_config->enable_comment_default_component_grant)) { |
|
60 | + $editor_config->enable_comment_default_component_grant = array(); |
|
61 | + } |
|
62 | + if(!is_array($editor_config->enable_component_grant)) { |
|
63 | + $editor_config->enable_component_grant = array(); |
|
64 | + } |
|
65 | + if(!is_array($editor_config->enable_comment_component_grant)) { |
|
66 | + $editor_config->enable_comment_component_grant= array(); |
|
67 | + } |
|
48 | 68 | |
49 | 69 | if(!$editor_config->editor_height) |
50 | 70 | { |
@@ -151,8 +171,11 @@ discard block |
||
151 | 171 | $buff .= sprintf('$xml_info->license_link = "%s";', $component_info->license_link); |
152 | 172 | |
153 | 173 | // Author information |
154 | - if(!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author; |
|
155 | - else $author_list = $xml_doc->component->author; |
|
174 | + if(!is_array($xml_doc->component->author)) { |
|
175 | + $author_list[] = $xml_doc->component->author; |
|
176 | + } else { |
|
177 | + $author_list = $xml_doc->component->author; |
|
178 | + } |
|
156 | 179 | |
157 | 180 | for($i=0; $i < count($author_list); $i++) |
158 | 181 | { |
@@ -165,7 +188,9 @@ discard block |
||
165 | 188 | $extra_vars = $xml_doc->component->extra_vars->var; |
166 | 189 | if($extra_vars) |
167 | 190 | { |
168 | - if(!is_array($extra_vars)) $extra_vars = array($extra_vars); |
|
191 | + if(!is_array($extra_vars)) { |
|
192 | + $extra_vars = array($extra_vars); |
|
193 | + } |
|
169 | 194 | foreach($extra_vars as $key => $val) |
170 | 195 | { |
171 | 196 | unset($obj); |
@@ -202,10 +227,15 @@ discard block |
||
202 | 227 | { |
203 | 228 | $option->editor_sequence = $upload_target_srl; |
204 | 229 | } |
205 | - if(!$option->allow_fileupload) $allow_fileupload = false; |
|
206 | - else $allow_fileupload = true; |
|
230 | + if(!$option->allow_fileupload) { |
|
231 | + $allow_fileupload = false; |
|
232 | + } else { |
|
233 | + $allow_fileupload = true; |
|
234 | + } |
|
207 | 235 | // content_style setting |
208 | - if(!$option->content_style) $option->content_style = 'ckeditor_light'; |
|
236 | + if(!$option->content_style) { |
|
237 | + $option->content_style = 'ckeditor_light'; |
|
238 | + } |
|
209 | 239 | Context::set('content_style', $option->content_style); |
210 | 240 | Context::set('content_style_path', $this->module_path . 'styles/' . $option->content_style); |
211 | 241 | // Default font setting |
@@ -213,27 +243,47 @@ discard block |
||
213 | 243 | Context::set('content_font_size', $option->content_font_size); |
214 | 244 | |
215 | 245 | // Option setting to allow auto-save |
216 | - if(!$option->enable_autosave) $enable_autosave = false; |
|
217 | - elseif(Context::get($option->primary_key_name)) $enable_autosave = false; |
|
218 | - else $enable_autosave = true; |
|
246 | + if(!$option->enable_autosave) { |
|
247 | + $enable_autosave = false; |
|
248 | + } elseif(Context::get($option->primary_key_name)) { |
|
249 | + $enable_autosave = false; |
|
250 | + } else { |
|
251 | + $enable_autosave = true; |
|
252 | + } |
|
219 | 253 | // Option setting to allow the default editor component |
220 | - if(!$option->enable_default_component) $enable_default_component = false; |
|
221 | - else $enable_default_component = true; |
|
254 | + if(!$option->enable_default_component) { |
|
255 | + $enable_default_component = false; |
|
256 | + } else { |
|
257 | + $enable_default_component = true; |
|
258 | + } |
|
222 | 259 | // Option setting to allow other extended components |
223 | - if(!$option->enable_component) $enable_component = false; |
|
224 | - else $enable_component = true; |
|
260 | + if(!$option->enable_component) { |
|
261 | + $enable_component = false; |
|
262 | + } else { |
|
263 | + $enable_component = true; |
|
264 | + } |
|
225 | 265 | // Setting for html-mode |
226 | - if($option->disable_html) $html_mode = false; |
|
227 | - else $html_mode = true; |
|
266 | + if($option->disable_html) { |
|
267 | + $html_mode = false; |
|
268 | + } else { |
|
269 | + $html_mode = true; |
|
270 | + } |
|
228 | 271 | // Set Height |
229 | - if(!$option->height) $editor_height = 300; |
|
230 | - else $editor_height = $option->height; |
|
272 | + if(!$option->height) { |
|
273 | + $editor_height = 300; |
|
274 | + } else { |
|
275 | + $editor_height = $option->height; |
|
276 | + } |
|
231 | 277 | // Skin Setting |
232 | 278 | $skin = $option->skin; |
233 | - if(!$skin) $skin = 'ckeditor'; |
|
279 | + if(!$skin) { |
|
280 | + $skin = 'ckeditor'; |
|
281 | + } |
|
234 | 282 | |
235 | 283 | $colorset = $option->colorset; |
236 | - if(!$colorset) $colorset = 'moono'; |
|
284 | + if(!$colorset) { |
|
285 | + $colorset = 'moono'; |
|
286 | + } |
|
237 | 287 | Context::set('colorset', $colorset); |
238 | 288 | Context::set('skin', $skin); |
239 | 289 | Context::set('module_type', $option->module_type); |
@@ -258,10 +308,13 @@ discard block |
||
258 | 308 | /** |
259 | 309 | * Extract editor's unique number (in order to display multiple editors on a single page) |
260 | 310 | */ |
261 | - if($option->editor_sequence) $editor_sequence = $option->editor_sequence; |
|
262 | - else |
|
311 | + if($option->editor_sequence) { |
|
312 | + $editor_sequence = $option->editor_sequence; |
|
313 | + } else |
|
263 | 314 | { |
264 | - if(!$_SESSION['_editor_sequence_']) $_SESSION['_editor_sequence_'] = 1; |
|
315 | + if(!$_SESSION['_editor_sequence_']) { |
|
316 | + $_SESSION['_editor_sequence_'] = 1; |
|
317 | + } |
|
265 | 318 | $editor_sequence = $_SESSION['_editor_sequence_'] ++; |
266 | 319 | } |
267 | 320 | |
@@ -285,7 +338,9 @@ discard block |
||
285 | 338 | $oFileController = getController('file'); |
286 | 339 | $oFileController->setUploadInfo($editor_sequence, $upload_target_srl); |
287 | 340 | // Check if the file already exists |
288 | - if($upload_target_srl) $files_count = $oFileModel->getFilesCount($upload_target_srl); |
|
341 | + if($upload_target_srl) { |
|
342 | + $files_count = $oFileModel->getFilesCount($upload_target_srl); |
|
343 | + } |
|
289 | 344 | } |
290 | 345 | Context::set('files_count', (int)$files_count); |
291 | 346 | |
@@ -377,8 +432,7 @@ discard block |
||
377 | 432 | $config->enable_html_grant = $editor_config->enable_html_grant; |
378 | 433 | $config->editor_height = $editor_config->editor_height; |
379 | 434 | $config->enable_autosave = $editor_config->enable_autosave; |
380 | - } |
|
381 | - else |
|
435 | + } else |
|
382 | 436 | { |
383 | 437 | $config->editor_skin = $editor_config->comment_editor_skin; |
384 | 438 | $config->content_style = $editor_config->comment_content_style; |
@@ -397,8 +451,7 @@ discard block |
||
397 | 451 | { |
398 | 452 | $logged_info = Context::get('logged_info'); |
399 | 453 | $group_list = $logged_info->group_list; |
400 | - } |
|
401 | - else |
|
454 | + } else |
|
402 | 455 | { |
403 | 456 | $group_list = array(); |
404 | 457 | } |
@@ -412,8 +465,9 @@ discard block |
||
412 | 465 | $option->colorset = $config->sel_editor_colorset; |
413 | 466 | // Permission check for file upload |
414 | 467 | $option->allow_fileupload = false; |
415 | - if($logged_info->is_admin=='Y') $option->allow_fileupload = true; |
|
416 | - elseif(count($config->upload_file_grant)) |
|
468 | + if($logged_info->is_admin=='Y') { |
|
469 | + $option->allow_fileupload = true; |
|
470 | + } elseif(count($config->upload_file_grant)) |
|
417 | 471 | { |
418 | 472 | foreach($group_list as $group_srl => $group_info) |
419 | 473 | { |
@@ -423,12 +477,14 @@ discard block |
||
423 | 477 | break; |
424 | 478 | } |
425 | 479 | } |
480 | + } else { |
|
481 | + $option->allow_fileupload = true; |
|
426 | 482 | } |
427 | - else $option->allow_fileupload = true; |
|
428 | 483 | // Permission check for using default components |
429 | 484 | $option->enable_default_component = false; |
430 | - if($logged_info->is_admin=='Y') $option->enable_default_component = true; |
|
431 | - elseif(count($config->enable_default_component_grant)) |
|
485 | + if($logged_info->is_admin=='Y') { |
|
486 | + $option->enable_default_component = true; |
|
487 | + } elseif(count($config->enable_default_component_grant)) |
|
432 | 488 | { |
433 | 489 | foreach($group_list as $group_srl => $group_info) |
434 | 490 | { |
@@ -438,12 +494,14 @@ discard block |
||
438 | 494 | break; |
439 | 495 | } |
440 | 496 | } |
497 | + } else { |
|
498 | + $option->enable_default_component = true; |
|
441 | 499 | } |
442 | - else $option->enable_default_component = true; |
|
443 | 500 | // Permisshion check for using extended components |
444 | 501 | $option->enable_component = false; |
445 | - if($logged_info->is_admin=='Y') $option->enable_component = true; |
|
446 | - elseif(count($config->enable_component_grant)) |
|
502 | + if($logged_info->is_admin=='Y') { |
|
503 | + $option->enable_component = true; |
|
504 | + } elseif(count($config->enable_component_grant)) |
|
447 | 505 | { |
448 | 506 | foreach($group_list as $group_srl => $group_info) |
449 | 507 | { |
@@ -453,12 +511,14 @@ discard block |
||
453 | 511 | break; |
454 | 512 | } |
455 | 513 | } |
514 | + } else { |
|
515 | + $option->enable_component = true; |
|
456 | 516 | } |
457 | - else $option->enable_component = true; |
|
458 | 517 | // HTML editing privileges |
459 | 518 | $enable_html = false; |
460 | - if($logged_info->is_admin=='Y') $enable_html = true; |
|
461 | - elseif(count($config->enable_html_grant)) |
|
519 | + if($logged_info->is_admin=='Y') { |
|
520 | + $enable_html = true; |
|
521 | + } elseif(count($config->enable_html_grant)) |
|
462 | 522 | { |
463 | 523 | foreach($group_list as $group_srl => $group_info) |
464 | 524 | { |
@@ -468,11 +528,15 @@ discard block |
||
468 | 528 | break; |
469 | 529 | } |
470 | 530 | } |
531 | + } else { |
|
532 | + $enable_html = true; |
|
471 | 533 | } |
472 | - else $enable_html = true; |
|
473 | 534 | |
474 | - if($enable_html) $option->disable_html = false; |
|
475 | - else $option->disable_html = true; |
|
535 | + if($enable_html) { |
|
536 | + $option->disable_html = false; |
|
537 | + } else { |
|
538 | + $option->disable_html = true; |
|
539 | + } |
|
476 | 540 | // Set Height |
477 | 541 | $option->height = $config->editor_height; |
478 | 542 | // Set an option for Auto-save |
@@ -495,8 +559,7 @@ discard block |
||
495 | 559 | { |
496 | 560 | $logged_info = Context::get('logged_info'); |
497 | 561 | $auto_save_args->member_srl = $logged_info->member_srl; |
498 | - } |
|
499 | - else |
|
562 | + } else |
|
500 | 563 | { |
501 | 564 | $auto_save_args->ipaddress = $_SERVER['REMOTE_ADDR']; |
502 | 565 | } |
@@ -511,11 +574,15 @@ discard block |
||
511 | 574 | $output = executeQuery('editor.getSavedDocument', $auto_save_args); |
512 | 575 | $saved_doc = $output->data; |
513 | 576 | // Return null if no result is auto-saved |
514 | - if(!$saved_doc) return; |
|
577 | + if(!$saved_doc) { |
|
578 | + return; |
|
579 | + } |
|
515 | 580 | // Check if the auto-saved document already exists |
516 | 581 | $oDocumentModel = getModel('document'); |
517 | 582 | $oSaved = $oDocumentModel->getDocument($saved_doc->document_srl); |
518 | - if($oSaved->isExists()) return; |
|
583 | + if($oSaved->isExists()) { |
|
584 | + return; |
|
585 | + } |
|
519 | 586 | // Move all the files if the auto-saved data contains document_srl and file |
520 | 587 | // Then set document_srl to editor_sequence |
521 | 588 | if($saved_doc->document_srl && $upload_target_srl && !Context::get('document_srl')) |
@@ -523,8 +590,9 @@ discard block |
||
523 | 590 | $saved_doc->module_srl = $auto_save_args->module_srl; |
524 | 591 | $oFileController = getController('file'); |
525 | 592 | $oFileController->moveFile($saved_doc->document_srl, $saved_doc->module_srl, $upload_target_srl); |
593 | + } else if($upload_target_srl) { |
|
594 | + $saved_doc->document_srl = $upload_target_srl; |
|
526 | 595 | } |
527 | - else if($upload_target_srl) $saved_doc->document_srl = $upload_target_srl; |
|
528 | 596 | // Change auto-saved data |
529 | 597 | $oEditorController = getController('editor'); |
530 | 598 | $oEditorController->deleteSavedDoc(false); |
@@ -540,18 +608,24 @@ discard block |
||
540 | 608 | */ |
541 | 609 | function getComponentObject($component, $editor_sequence = 0, $site_srl = 0) |
542 | 610 | { |
543 | - if(!preg_match('/^[a-zA-Z0-9_-]+$/',$component) || !preg_match('/^[0-9]+$/', $editor_sequence . $site_srl)) return; |
|
611 | + if(!preg_match('/^[a-zA-Z0-9_-]+$/',$component) || !preg_match('/^[0-9]+$/', $editor_sequence . $site_srl)) { |
|
612 | + return; |
|
613 | + } |
|
544 | 614 | |
545 | 615 | if(!$this->loaded_component_list[$component][$editor_sequence]) |
546 | 616 | { |
547 | 617 | // Create an object of the component and execute |
548 | 618 | $class_path = sprintf('%scomponents/%s/', $this->module_path, $component); |
549 | 619 | $class_file = sprintf('%s%s.class.php', $class_path, $component); |
550 | - if(!file_exists($class_file)) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
620 | + if(!file_exists($class_file)) { |
|
621 | + return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
622 | + } |
|
551 | 623 | // Create an object after loading the class file |
552 | 624 | require_once($class_file); |
553 | 625 | $oComponent = new $component($editor_sequence, $class_path); |
554 | - if(!$oComponent) return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
626 | + if(!$oComponent) { |
|
627 | + return new Object(-1, sprintf(Context::getLang('msg_component_is_not_founded'), $component)); |
|
628 | + } |
|
555 | 629 | // Add configuration information |
556 | 630 | $component_info = $this->getComponent($component, $site_srl); |
557 | 631 | $oComponent->setInfo($component_info); |
@@ -578,8 +652,12 @@ discard block |
||
578 | 652 | $cache_path = _XE_PATH_.'files/cache/editor/cache/'; |
579 | 653 | FileHandler::makeDir($cache_path); |
580 | 654 | $cache_file = $cache_path.'component_list.' . $lang .'.'; |
581 | - if($filter_enabled) $cache_file .= 'filter.'; |
|
582 | - if($site_srl) $cache_file .= $site_srl.'.'; |
|
655 | + if($filter_enabled) { |
|
656 | + $cache_file .= 'filter.'; |
|
657 | + } |
|
658 | + if($site_srl) { |
|
659 | + $cache_file .= $site_srl.'.'; |
|
660 | + } |
|
583 | 661 | $cache_file .= 'php'; |
584 | 662 | return $cache_file; |
585 | 663 | } |
@@ -596,14 +674,15 @@ discard block |
||
596 | 674 | $oEditorController->makeCache(false, $site_srl); |
597 | 675 | } |
598 | 676 | |
599 | - if(!file_exists($cache_file)) return; |
|
677 | + if(!file_exists($cache_file)) { |
|
678 | + return; |
|
679 | + } |
|
600 | 680 | include($cache_file); |
601 | 681 | $logged_info = Context::get('logged_info'); |
602 | 682 | if($logged_info && is_array($logged_info->group_list)) |
603 | 683 | { |
604 | 684 | $group_list = array_keys($logged_info->group_list); |
605 | - } |
|
606 | - else |
|
685 | + } else |
|
607 | 686 | { |
608 | 687 | $group_list = array(); |
609 | 688 | } |
@@ -612,39 +691,50 @@ discard block |
||
612 | 691 | { |
613 | 692 | foreach($component_list as $key => $val) |
614 | 693 | { |
615 | - if(!trim($key)) continue; |
|
694 | + if(!trim($key)) { |
|
695 | + continue; |
|
696 | + } |
|
616 | 697 | if(!is_dir(_XE_PATH_.'modules/editor/components/'.$key)) |
617 | 698 | { |
618 | 699 | FileHandler::removeFile($cache_file); |
619 | 700 | return $this->getComponentList($filter_enabled, $site_srl); |
620 | 701 | } |
621 | - if(!$filter_enabled) continue; |
|
702 | + if(!$filter_enabled) { |
|
703 | + continue; |
|
704 | + } |
|
622 | 705 | if($val->enabled == "N") |
623 | 706 | { |
624 | 707 | unset($component_list->{$key}); |
625 | 708 | continue; |
626 | 709 | } |
627 | - if($logged_info->is_admin == "Y" || $logged_info->is_site_admin == "Y") continue; |
|
710 | + if($logged_info->is_admin == "Y" || $logged_info->is_site_admin == "Y") { |
|
711 | + continue; |
|
712 | + } |
|
628 | 713 | if($val->target_group) |
629 | 714 | { |
630 | 715 | if(!$logged_info) |
631 | 716 | { |
632 | 717 | $val->enabled = "N"; |
633 | - } |
|
634 | - else |
|
718 | + } else |
|
635 | 719 | { |
636 | 720 | $is_granted = false; |
637 | 721 | foreach($group_list as $group_srl) |
638 | 722 | { |
639 | - if(in_array($group_srl, $val->target_group)) $is_granted = true; |
|
723 | + if(in_array($group_srl, $val->target_group)) { |
|
724 | + $is_granted = true; |
|
725 | + } |
|
726 | + } |
|
727 | + if(!$is_granted) { |
|
728 | + $val->enabled = "N"; |
|
640 | 729 | } |
641 | - if(!$is_granted) $val->enabled = "N"; |
|
642 | 730 | } |
643 | 731 | } |
644 | 732 | if($val->enabled != "N" && $val->mid_list) |
645 | 733 | { |
646 | 734 | $mid = Context::get('mid'); |
647 | - if(!in_array($mid, $val->mid_list)) $val->enabled = "N"; |
|
735 | + if(!in_array($mid, $val->mid_list)) { |
|
736 | + $val->enabled = "N"; |
|
737 | + } |
|
648 | 738 | } |
649 | 739 | if($val->enabled == "N") |
650 | 740 | { |
@@ -668,8 +758,7 @@ discard block |
||
668 | 758 | { |
669 | 759 | $args->site_srl = $site_srl; |
670 | 760 | $output = executeQuery('editor.getSiteComponent', $args); |
671 | - } |
|
672 | - else |
|
761 | + } else |
|
673 | 762 | { |
674 | 763 | $output = executeQuery('editor.getComponent', $args); |
675 | 764 | } |
@@ -752,8 +841,7 @@ discard block |
||
752 | 841 | $component_info->homepage = $xml_doc->component->link->body; |
753 | 842 | $component_info->license = $xml_doc->component->license->body; |
754 | 843 | $component_info->license_link = $xml_doc->component->license->attrs->link; |
755 | - } |
|
756 | - else |
|
844 | + } else |
|
757 | 845 | { |
758 | 846 | sscanf($xml_doc->component->author->attrs->date, '%d. %d. %d', $date_obj->y, $date_obj->m, $date_obj->d); |
759 | 847 | $date = sprintf('%04d%02d%02d', $date_obj->y, $date_obj->m, $date_obj->d); |
@@ -770,8 +858,11 @@ discard block |
||
770 | 858 | |
771 | 859 | // Author information |
772 | 860 | $author_list = array(); |
773 | - if(!is_array($xml_doc->component->author)) $author_list[] = $xml_doc->component->author; |
|
774 | - else $author_list = $xml_doc->component->author; |
|
861 | + if(!is_array($xml_doc->component->author)) { |
|
862 | + $author_list[] = $xml_doc->component->author; |
|
863 | + } else { |
|
864 | + $author_list = $xml_doc->component->author; |
|
865 | + } |
|
775 | 866 | |
776 | 867 | for($i = 0; $i < count($author_list); $i++) |
777 | 868 | { |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | /** |
57 | 57 | * Delete selected files from the administrator page |
58 | 58 | * |
59 | - * @return Object |
|
59 | + * @return ModuleObject|null |
|
60 | 60 | */ |
61 | 61 | function procFileAdminDeleteChecked() |
62 | 62 | { |
@@ -110,7 +110,7 @@ discard block |
||
110 | 110 | /** |
111 | 111 | * Add file information for each module |
112 | 112 | * |
113 | - * @return void |
|
113 | + * @return Object|null |
|
114 | 114 | */ |
115 | 115 | function procFileAdminInsertModuleConfig() |
116 | 116 | { |
@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | /* Copyright (C) NAVER <http://www.navercorp.com> */ |
3 | 3 | /** |
4 | - * admin controller class of the file module |
|
5 | - * @author NAVER ([email protected]) |
|
6 | - */ |
|
4 | + * admin controller class of the file module |
|
5 | + * @author NAVER ([email protected]) |
|
6 | + */ |
|
7 | 7 | class fileAdminController extends file |
8 | 8 | { |
9 | 9 | /** |
@@ -26,29 +26,29 @@ discard block |
||
26 | 26 | $args = new stdClass(); |
27 | 27 | $args->module_srl = $module_srl; |
28 | 28 | $columnList = array('file_srl', 'uploaded_filename'); |
29 | - $output = executeQueryArray('file.getModuleFiles',$args, $columnList); |
|
30 | - if(!$output) return $output; |
|
29 | + $output = executeQueryArray('file.getModuleFiles', $args, $columnList); |
|
30 | + if (!$output) return $output; |
|
31 | 31 | $files = $output->data; |
32 | 32 | // Remove from the DB |
33 | 33 | $args->module_srl = $module_srl; |
34 | 34 | $output = executeQuery('file.deleteModuleFiles', $args); |
35 | - if(!$output->toBool()) return $output; |
|
35 | + if (!$output->toBool()) return $output; |
|
36 | 36 | // Remove the file |
37 | - FileHandler::removeDir( sprintf("./files/attach/images/%s/", $module_srl) ) ; |
|
38 | - FileHandler::removeDir( sprintf("./files/attach/binaries/%s/", $module_srl) ); |
|
37 | + FileHandler::removeDir(sprintf("./files/attach/images/%s/", $module_srl)); |
|
38 | + FileHandler::removeDir(sprintf("./files/attach/binaries/%s/", $module_srl)); |
|
39 | 39 | // Remove the file list obtained from the DB |
40 | 40 | $path = array(); |
41 | 41 | $cnt = count($files); |
42 | - for($i=0;$i<$cnt;$i++) |
|
42 | + for ($i = 0; $i < $cnt; $i++) |
|
43 | 43 | { |
44 | 44 | $uploaded_filename = $files[$i]->uploaded_filename; |
45 | 45 | FileHandler::removeFile($uploaded_filename); |
46 | 46 | |
47 | 47 | $path_info = pathinfo($uploaded_filename); |
48 | - if(!in_array($path_info['dirname'], $path)) $path[] = $path_info['dirname']; |
|
48 | + if (!in_array($path_info['dirname'], $path)) $path[] = $path_info['dirname']; |
|
49 | 49 | } |
50 | 50 | // Remove a file directory of the document |
51 | - for($i=0;$i<count($path);$i++) FileHandler::removeBlankDir($path[$i]); |
|
51 | + for ($i = 0; $i < count($path); $i++) FileHandler::removeBlankDir($path[$i]); |
|
52 | 52 | |
53 | 53 | return $output; |
54 | 54 | } |
@@ -62,23 +62,23 @@ discard block |
||
62 | 62 | { |
63 | 63 | // An error appears if no document is selected |
64 | 64 | $cart = Context::get('cart'); |
65 | - if(!$cart) return $this->stop('msg_file_cart_is_null'); |
|
66 | - if(!is_array($cart)) $file_srl_list= explode('|@|', $cart); |
|
65 | + if (!$cart) return $this->stop('msg_file_cart_is_null'); |
|
66 | + if (!is_array($cart)) $file_srl_list = explode('|@|', $cart); |
|
67 | 67 | else $file_srl_list = $cart; |
68 | 68 | $file_count = count($file_srl_list); |
69 | - if(!$file_count) return $this->stop('msg_file_cart_is_null'); |
|
69 | + if (!$file_count) return $this->stop('msg_file_cart_is_null'); |
|
70 | 70 | |
71 | 71 | $oFileController = getController('file'); |
72 | 72 | // Delete the post |
73 | - for($i=0;$i<$file_count;$i++) |
|
73 | + for ($i = 0; $i < $file_count; $i++) |
|
74 | 74 | { |
75 | 75 | $file_srl = trim($file_srl_list[$i]); |
76 | - if(!$file_srl) continue; |
|
76 | + if (!$file_srl) continue; |
|
77 | 77 | |
78 | 78 | $oFileController->deleteFile($file_srl); |
79 | 79 | } |
80 | 80 | |
81 | - $this->setMessage( sprintf(Context::getLang('msg_checked_file_is_deleted'), $file_count) ); |
|
81 | + $this->setMessage(sprintf(Context::getLang('msg_checked_file_is_deleted'), $file_count)); |
|
82 | 82 | |
83 | 83 | $returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispFileAdminList'); |
84 | 84 | $this->setRedirectUrl($returnUrl); |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | $config->allow_outlink_site = Context::get('allow_outlink_site'); |
102 | 102 | // Create module Controller object |
103 | 103 | $oModuleController = getController('module'); |
104 | - $output = $oModuleController->insertModuleConfig('file',$config); |
|
104 | + $output = $oModuleController->insertModuleConfig('file', $config); |
|
105 | 105 | |
106 | 106 | $returnUrl = Context::get('success_return_url') ? Context::get('success_return_url') : getNotEncodedUrl('', 'module', 'admin', 'act', 'dispFileAdminConfig'); |
107 | 107 | return $this->setRedirectUrl($returnUrl, $output); |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | // Get variables |
118 | 118 | $module_srl = Context::get('target_module_srl'); |
119 | 119 | // In order to configure multiple modules at once |
120 | - if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl); |
|
120 | + if (preg_match('/^([0-9,]+)$/', $module_srl)) $module_srl = explode(',', $module_srl); |
|
121 | 121 | else $module_srl = array($module_srl); |
122 | 122 | |
123 | 123 | $download_grant = Context::get('download_grant'); |
@@ -130,25 +130,25 @@ discard block |
||
130 | 130 | $file_config->allowed_attach_size = Context::get('allowed_attach_size'); |
131 | 131 | $file_config->allowed_filetypes = str_replace(' ', '', Context::get('allowed_filetypes')); |
132 | 132 | |
133 | - if(!is_array($download_grant)) $file_config->download_grant = explode('|@|',$download_grant); |
|
133 | + if (!is_array($download_grant)) $file_config->download_grant = explode('|@|', $download_grant); |
|
134 | 134 | else $file_config->download_grant = $download_grant; |
135 | 135 | |
136 | 136 | //관리자가 허용한 첨부파일의 사이즈가 php.ini의 값보다 큰지 확인하기 - by ovclas |
137 | - $userFileAllowSize = FileHandler::returnbytes($file_config->allowed_filesize.'M'); |
|
138 | - $userAttachAllowSize = FileHandler::returnbytes($file_config->allowed_attach_size.'M'); |
|
137 | + $userFileAllowSize = FileHandler::returnbytes($file_config->allowed_filesize . 'M'); |
|
138 | + $userAttachAllowSize = FileHandler::returnbytes($file_config->allowed_attach_size . 'M'); |
|
139 | 139 | $iniPostMaxSize = FileHandler::returnbytes(ini_get('post_max_size')); |
140 | 140 | $iniUploadMaxSize = FileHandler::returnbytes(ini_get('upload_max_filesize')); |
141 | 141 | $iniMinSzie = min($iniPostMaxSize, $iniUploadMaxSize); |
142 | 142 | |
143 | - if($userFileAllowSize > $iniMinSzie || $userAttachAllowSize > $iniMinSzie) |
|
143 | + if ($userFileAllowSize > $iniMinSzie || $userAttachAllowSize > $iniMinSzie) |
|
144 | 144 | return new Object(-1, 'input size over than config in php.ini'); |
145 | 145 | |
146 | 146 | $oModuleController = getController('module'); |
147 | - for($i=0;$i<count($module_srl);$i++) |
|
147 | + for ($i = 0; $i < count($module_srl); $i++) |
|
148 | 148 | { |
149 | 149 | $srl = trim($module_srl[$i]); |
150 | - if(!$srl) continue; |
|
151 | - $oModuleController->insertModulePartConfig('file',$srl,$file_config); |
|
150 | + if (!$srl) continue; |
|
151 | + $oModuleController->insertModulePartConfig('file', $srl, $file_config); |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | $this->setError(-1); |
@@ -165,16 +165,16 @@ discard block |
||
165 | 165 | */ |
166 | 166 | function procFileAdminAddCart() |
167 | 167 | { |
168 | - $file_srl = (int)Context::get('file_srl'); |
|
168 | + $file_srl = (int) Context::get('file_srl'); |
|
169 | 169 | //$fileSrlList = array(500, 502); |
170 | 170 | |
171 | 171 | $oFileModel = getModel('file'); |
172 | 172 | $output = $oFileModel->getFile($file_srl); |
173 | 173 | //$output = $oFileModel->getFile($fileSrlList); |
174 | 174 | |
175 | - if($output->file_srl) |
|
175 | + if ($output->file_srl) |
|
176 | 176 | { |
177 | - if($_SESSION['file_management'][$output->file_srl]) unset($_SESSION['file_management'][$output->file_srl]); |
|
177 | + if ($_SESSION['file_management'][$output->file_srl]) unset($_SESSION['file_management'][$output->file_srl]); |
|
178 | 178 | else $_SESSION['file_management'][$output->file_srl] = true; |
179 | 179 | } |
180 | 180 | } |
@@ -27,12 +27,16 @@ discard block |
||
27 | 27 | $args->module_srl = $module_srl; |
28 | 28 | $columnList = array('file_srl', 'uploaded_filename'); |
29 | 29 | $output = executeQueryArray('file.getModuleFiles',$args, $columnList); |
30 | - if(!$output) return $output; |
|
30 | + if(!$output) { |
|
31 | + return $output; |
|
32 | + } |
|
31 | 33 | $files = $output->data; |
32 | 34 | // Remove from the DB |
33 | 35 | $args->module_srl = $module_srl; |
34 | 36 | $output = executeQuery('file.deleteModuleFiles', $args); |
35 | - if(!$output->toBool()) return $output; |
|
37 | + if(!$output->toBool()) { |
|
38 | + return $output; |
|
39 | + } |
|
36 | 40 | // Remove the file |
37 | 41 | FileHandler::removeDir( sprintf("./files/attach/images/%s/", $module_srl) ) ; |
38 | 42 | FileHandler::removeDir( sprintf("./files/attach/binaries/%s/", $module_srl) ); |
@@ -45,10 +49,14 @@ discard block |
||
45 | 49 | FileHandler::removeFile($uploaded_filename); |
46 | 50 | |
47 | 51 | $path_info = pathinfo($uploaded_filename); |
48 | - if(!in_array($path_info['dirname'], $path)) $path[] = $path_info['dirname']; |
|
52 | + if(!in_array($path_info['dirname'], $path)) { |
|
53 | + $path[] = $path_info['dirname']; |
|
54 | + } |
|
49 | 55 | } |
50 | 56 | // Remove a file directory of the document |
51 | - for($i=0;$i<count($path);$i++) FileHandler::removeBlankDir($path[$i]); |
|
57 | + for($i=0;$i<count($path);$i++) { |
|
58 | + FileHandler::removeBlankDir($path[$i]); |
|
59 | + } |
|
52 | 60 | |
53 | 61 | return $output; |
54 | 62 | } |
@@ -62,18 +70,27 @@ discard block |
||
62 | 70 | { |
63 | 71 | // An error appears if no document is selected |
64 | 72 | $cart = Context::get('cart'); |
65 | - if(!$cart) return $this->stop('msg_file_cart_is_null'); |
|
66 | - if(!is_array($cart)) $file_srl_list= explode('|@|', $cart); |
|
67 | - else $file_srl_list = $cart; |
|
73 | + if(!$cart) { |
|
74 | + return $this->stop('msg_file_cart_is_null'); |
|
75 | + } |
|
76 | + if(!is_array($cart)) { |
|
77 | + $file_srl_list= explode('|@|', $cart); |
|
78 | + } else { |
|
79 | + $file_srl_list = $cart; |
|
80 | + } |
|
68 | 81 | $file_count = count($file_srl_list); |
69 | - if(!$file_count) return $this->stop('msg_file_cart_is_null'); |
|
82 | + if(!$file_count) { |
|
83 | + return $this->stop('msg_file_cart_is_null'); |
|
84 | + } |
|
70 | 85 | |
71 | 86 | $oFileController = getController('file'); |
72 | 87 | // Delete the post |
73 | 88 | for($i=0;$i<$file_count;$i++) |
74 | 89 | { |
75 | 90 | $file_srl = trim($file_srl_list[$i]); |
76 | - if(!$file_srl) continue; |
|
91 | + if(!$file_srl) { |
|
92 | + continue; |
|
93 | + } |
|
77 | 94 | |
78 | 95 | $oFileController->deleteFile($file_srl); |
79 | 96 | } |
@@ -117,8 +134,11 @@ discard block |
||
117 | 134 | // Get variables |
118 | 135 | $module_srl = Context::get('target_module_srl'); |
119 | 136 | // In order to configure multiple modules at once |
120 | - if(preg_match('/^([0-9,]+)$/',$module_srl)) $module_srl = explode(',',$module_srl); |
|
121 | - else $module_srl = array($module_srl); |
|
137 | + if(preg_match('/^([0-9,]+)$/',$module_srl)) { |
|
138 | + $module_srl = explode(',',$module_srl); |
|
139 | + } else { |
|
140 | + $module_srl = array($module_srl); |
|
141 | + } |
|
122 | 142 | |
123 | 143 | $download_grant = Context::get('download_grant'); |
124 | 144 | |
@@ -130,8 +150,11 @@ discard block |
||
130 | 150 | $file_config->allowed_attach_size = Context::get('allowed_attach_size'); |
131 | 151 | $file_config->allowed_filetypes = str_replace(' ', '', Context::get('allowed_filetypes')); |
132 | 152 | |
133 | - if(!is_array($download_grant)) $file_config->download_grant = explode('|@|',$download_grant); |
|
134 | - else $file_config->download_grant = $download_grant; |
|
153 | + if(!is_array($download_grant)) { |
|
154 | + $file_config->download_grant = explode('|@|',$download_grant); |
|
155 | + } else { |
|
156 | + $file_config->download_grant = $download_grant; |
|
157 | + } |
|
135 | 158 | |
136 | 159 | //관리자가 허용한 첨부파일의 사이즈가 php.ini의 값보다 큰지 확인하기 - by ovclas |
137 | 160 | $userFileAllowSize = FileHandler::returnbytes($file_config->allowed_filesize.'M'); |
@@ -140,14 +163,17 @@ discard block |
||
140 | 163 | $iniUploadMaxSize = FileHandler::returnbytes(ini_get('upload_max_filesize')); |
141 | 164 | $iniMinSzie = min($iniPostMaxSize, $iniUploadMaxSize); |
142 | 165 | |
143 | - if($userFileAllowSize > $iniMinSzie || $userAttachAllowSize > $iniMinSzie) |
|
144 | - return new Object(-1, 'input size over than config in php.ini'); |
|
166 | + if($userFileAllowSize > $iniMinSzie || $userAttachAllowSize > $iniMinSzie) { |
|
167 | + return new Object(-1, 'input size over than config in php.ini'); |
|
168 | + } |
|
145 | 169 | |
146 | 170 | $oModuleController = getController('module'); |
147 | 171 | for($i=0;$i<count($module_srl);$i++) |
148 | 172 | { |
149 | 173 | $srl = trim($module_srl[$i]); |
150 | - if(!$srl) continue; |
|
174 | + if(!$srl) { |
|
175 | + continue; |
|
176 | + } |
|
151 | 177 | $oModuleController->insertModulePartConfig('file',$srl,$file_config); |
152 | 178 | } |
153 | 179 | |
@@ -174,8 +200,11 @@ discard block |
||
174 | 200 | |
175 | 201 | if($output->file_srl) |
176 | 202 | { |
177 | - if($_SESSION['file_management'][$output->file_srl]) unset($_SESSION['file_management'][$output->file_srl]); |
|
178 | - else $_SESSION['file_management'][$output->file_srl] = true; |
|
203 | + if($_SESSION['file_management'][$output->file_srl]) { |
|
204 | + unset($_SESSION['file_management'][$output->file_srl]); |
|
205 | + } else { |
|
206 | + $_SESSION['file_management'][$output->file_srl] = true; |
|
207 | + } |
|
179 | 208 | } |
180 | 209 | } |
181 | 210 | } |
@@ -144,7 +144,7 @@ |
||
144 | 144 | * Make search parameters from object(private) |
145 | 145 | * |
146 | 146 | * @param object $obj Original searach options |
147 | - * @param object $args Result searach options |
|
147 | + * @param stdClass $args Result searach options |
|
148 | 148 | * @return void |
149 | 149 | */ |
150 | 150 | function _makeSearchParam(&$obj, &$args) |
@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | /* Copyright (C) NAVER <http://www.navercorp.com> */ |
3 | 3 | /** |
4 | - * Admin model class of the file module |
|
5 | - * @author NAVER ([email protected]) |
|
6 | - */ |
|
4 | + * Admin model class of the file module |
|
5 | + * @author NAVER ([email protected]) |
|
6 | + */ |
|
7 | 7 | class fileAdminModel extends file |
8 | 8 | { |
9 | 9 | /** |
@@ -68,28 +68,28 @@ discard block |
||
68 | 68 | $this->_makeSearchParam($obj, $args); |
69 | 69 | |
70 | 70 | // Set valid/invalid state |
71 | - if($obj->isvalid == 'Y') $args->isvalid = 'Y'; |
|
72 | - elseif($obj->isvalid == 'N') $args->isvalid = 'N'; |
|
71 | + if ($obj->isvalid == 'Y') $args->isvalid = 'Y'; |
|
72 | + elseif ($obj->isvalid == 'N') $args->isvalid = 'N'; |
|
73 | 73 | // Set multimedia/common file |
74 | - if($obj->direct_download == 'Y') $args->direct_download = 'Y'; |
|
75 | - elseif($obj->direct_download == 'N') $args->direct_download= 'N'; |
|
74 | + if ($obj->direct_download == 'Y') $args->direct_download = 'Y'; |
|
75 | + elseif ($obj->direct_download == 'N') $args->direct_download = 'N'; |
|
76 | 76 | // Set variables |
77 | 77 | $args->sort_index = $obj->sort_index; |
78 | - $args->page = $obj->page?$obj->page:1; |
|
79 | - $args->list_count = $obj->list_count?$obj->list_count:20; |
|
80 | - $args->page_count = $obj->page_count?$obj->page_count:10; |
|
78 | + $args->page = $obj->page ? $obj->page : 1; |
|
79 | + $args->list_count = $obj->list_count ? $obj->list_count : 20; |
|
80 | + $args->page_count = $obj->page_count ? $obj->page_count : 10; |
|
81 | 81 | $args->s_module_srl = $obj->module_srl; |
82 | 82 | $args->exclude_module_srl = $obj->exclude_module_srl; |
83 | 83 | // Execute the file.getFileList query |
84 | 84 | $output = executeQuery('file.getFileList', $args, $columnList); |
85 | 85 | // Return if no result or an error occurs |
86 | - if(!$output->toBool()||!count($output->data)) return $output; |
|
86 | + if (!$output->toBool() || !count($output->data)) return $output; |
|
87 | 87 | |
88 | 88 | $oFileModel = getModel('file'); |
89 | 89 | |
90 | - foreach($output->data as $key => $file) |
|
90 | + foreach ($output->data as $key => $file) |
|
91 | 91 | { |
92 | - if($_SESSION['file_management'][$file->file_srl]) $file->isCarted = true; |
|
92 | + if ($_SESSION['file_management'][$file->file_srl]) $file->isCarted = true; |
|
93 | 93 | else $file->isCarted = false; |
94 | 94 | |
95 | 95 | $file->download_url = $oFileModel->getDownloadUrl($file->file_srl, $file->sid, $file->module_srl); |
@@ -132,10 +132,10 @@ discard block |
||
132 | 132 | */ |
133 | 133 | function getFilesCountByDate($date = '') |
134 | 134 | { |
135 | - if($date) $args->regDate = date('Ymd', strtotime($date)); |
|
135 | + if ($date) $args->regDate = date('Ymd', strtotime($date)); |
|
136 | 136 | |
137 | 137 | $output = executeQuery('file.getFilesCount', $args); |
138 | - if(!$output->toBool()) return 0; |
|
138 | + if (!$output->toBool()) return 0; |
|
139 | 139 | |
140 | 140 | return $output->data->count; |
141 | 141 | } |
@@ -150,31 +150,31 @@ discard block |
||
150 | 150 | function _makeSearchParam(&$obj, &$args) |
151 | 151 | { |
152 | 152 | // Search options |
153 | - $search_target = $obj->search_target?$obj->search_target:trim(Context::get('search_target')); |
|
154 | - $search_keyword = $obj->search_keyword?$obj->search_keyword:trim(Context::get('search_keyword')); |
|
153 | + $search_target = $obj->search_target ? $obj->search_target : trim(Context::get('search_target')); |
|
154 | + $search_keyword = $obj->search_keyword ? $obj->search_keyword : trim(Context::get('search_keyword')); |
|
155 | 155 | |
156 | - if($search_target && $search_keyword) |
|
156 | + if ($search_target && $search_keyword) |
|
157 | 157 | { |
158 | - switch($search_target) |
|
158 | + switch ($search_target) |
|
159 | 159 | { |
160 | 160 | case 'filename' : |
161 | - if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword); |
|
161 | + if ($search_keyword) $search_keyword = str_replace(' ', '%', $search_keyword); |
|
162 | 162 | $args->s_filename = $search_keyword; |
163 | 163 | break; |
164 | 164 | case 'filesize_more' : |
165 | - $args->s_filesize_more = (int)$search_keyword; |
|
165 | + $args->s_filesize_more = (int) $search_keyword; |
|
166 | 166 | break; |
167 | 167 | case 'filesize_mega_more' : |
168 | - $args->s_filesize_more = (int)$search_keyword * 1024 * 1024; |
|
168 | + $args->s_filesize_more = (int) $search_keyword * 1024 * 1024; |
|
169 | 169 | break; |
170 | 170 | case 'filesize_less' : |
171 | - $args->s_filesize_less = (int)$search_keyword; |
|
171 | + $args->s_filesize_less = (int) $search_keyword; |
|
172 | 172 | break; |
173 | 173 | case 'filesize_mega_less' : |
174 | - $args->s_filesize_less = (int)$search_keyword * 1024 * 1024; |
|
174 | + $args->s_filesize_less = (int) $search_keyword * 1024 * 1024; |
|
175 | 175 | break; |
176 | 176 | case 'download_count' : |
177 | - $args->s_download_count = (int)$search_keyword; |
|
177 | + $args->s_download_count = (int) $search_keyword; |
|
178 | 178 | break; |
179 | 179 | case 'regdate' : |
180 | 180 | $args->s_regdate = $search_keyword; |
@@ -68,11 +68,17 @@ discard block |
||
68 | 68 | $this->_makeSearchParam($obj, $args); |
69 | 69 | |
70 | 70 | // Set valid/invalid state |
71 | - if($obj->isvalid == 'Y') $args->isvalid = 'Y'; |
|
72 | - elseif($obj->isvalid == 'N') $args->isvalid = 'N'; |
|
71 | + if($obj->isvalid == 'Y') { |
|
72 | + $args->isvalid = 'Y'; |
|
73 | + } elseif($obj->isvalid == 'N') { |
|
74 | + $args->isvalid = 'N'; |
|
75 | + } |
|
73 | 76 | // Set multimedia/common file |
74 | - if($obj->direct_download == 'Y') $args->direct_download = 'Y'; |
|
75 | - elseif($obj->direct_download == 'N') $args->direct_download= 'N'; |
|
77 | + if($obj->direct_download == 'Y') { |
|
78 | + $args->direct_download = 'Y'; |
|
79 | + } elseif($obj->direct_download == 'N') { |
|
80 | + $args->direct_download= 'N'; |
|
81 | + } |
|
76 | 82 | // Set variables |
77 | 83 | $args->sort_index = $obj->sort_index; |
78 | 84 | $args->page = $obj->page?$obj->page:1; |
@@ -83,14 +89,19 @@ discard block |
||
83 | 89 | // Execute the file.getFileList query |
84 | 90 | $output = executeQuery('file.getFileList', $args, $columnList); |
85 | 91 | // Return if no result or an error occurs |
86 | - if(!$output->toBool()||!count($output->data)) return $output; |
|
92 | + if(!$output->toBool()||!count($output->data)) { |
|
93 | + return $output; |
|
94 | + } |
|
87 | 95 | |
88 | 96 | $oFileModel = getModel('file'); |
89 | 97 | |
90 | 98 | foreach($output->data as $key => $file) |
91 | 99 | { |
92 | - if($_SESSION['file_management'][$file->file_srl]) $file->isCarted = true; |
|
93 | - else $file->isCarted = false; |
|
100 | + if($_SESSION['file_management'][$file->file_srl]) { |
|
101 | + $file->isCarted = true; |
|
102 | + } else { |
|
103 | + $file->isCarted = false; |
|
104 | + } |
|
94 | 105 | |
95 | 106 | $file->download_url = $oFileModel->getDownloadUrl($file->file_srl, $file->sid, $file->module_srl); |
96 | 107 | $output->data[$key] = $file; |
@@ -132,10 +143,14 @@ discard block |
||
132 | 143 | */ |
133 | 144 | function getFilesCountByDate($date = '') |
134 | 145 | { |
135 | - if($date) $args->regDate = date('Ymd', strtotime($date)); |
|
146 | + if($date) { |
|
147 | + $args->regDate = date('Ymd', strtotime($date)); |
|
148 | + } |
|
136 | 149 | |
137 | 150 | $output = executeQuery('file.getFilesCount', $args); |
138 | - if(!$output->toBool()) return 0; |
|
151 | + if(!$output->toBool()) { |
|
152 | + return 0; |
|
153 | + } |
|
139 | 154 | |
140 | 155 | return $output->data->count; |
141 | 156 | } |
@@ -158,7 +173,9 @@ discard block |
||
158 | 173 | switch($search_target) |
159 | 174 | { |
160 | 175 | case 'filename' : |
161 | - if($search_keyword) $search_keyword = str_replace(' ','%',$search_keyword); |
|
176 | + if($search_keyword) { |
|
177 | + $search_keyword = str_replace(' ','%',$search_keyword); |
|
178 | + } |
|
162 | 179 | $args->s_filename = $search_keyword; |
163 | 180 | break; |
164 | 181 | case 'filesize_more' : |
@@ -89,7 +89,7 @@ discard block |
||
89 | 89 | /** |
90 | 90 | * Image resize |
91 | 91 | * |
92 | - * @return Object |
|
92 | + * @return Object|null |
|
93 | 93 | */ |
94 | 94 | function procFileImageResize() |
95 | 95 | { |
@@ -396,7 +396,7 @@ discard block |
||
396 | 396 | /** |
397 | 397 | * get file list |
398 | 398 | * |
399 | - * @return Object |
|
399 | + * @return Object|null |
|
400 | 400 | */ |
401 | 401 | function procFileGetList() |
402 | 402 | { |
@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | /* Copyright (C) NAVER <http://www.navercorp.com> */ |
3 | 3 | /** |
4 | - * Controller class of the file module |
|
5 | - * @author NAVER ([email protected]) |
|
6 | - */ |
|
4 | + * Controller class of the file module |
|
5 | + * @author NAVER ([email protected]) |
|
6 | + */ |
|
7 | 7 | class fileController extends file |
8 | 8 | { |
9 | 9 | /** |
@@ -29,24 +29,24 @@ discard block |
||
29 | 29 | $file_info = $_FILES['Filedata']; |
30 | 30 | |
31 | 31 | // An error appears if not a normally uploaded file |
32 | - if(!is_uploaded_file($file_info['tmp_name'])) exit(); |
|
32 | + if (!is_uploaded_file($file_info['tmp_name'])) exit(); |
|
33 | 33 | |
34 | 34 | // Basic variables setting |
35 | 35 | $oFileModel = getModel('file'); |
36 | 36 | $editor_sequence = Context::get('editor_sequence'); |
37 | 37 | $upload_target_srl = intval(Context::get('uploadTargetSrl')); |
38 | - if(!$upload_target_srl) $upload_target_srl = intval(Context::get('upload_target_srl')); |
|
38 | + if (!$upload_target_srl) $upload_target_srl = intval(Context::get('upload_target_srl')); |
|
39 | 39 | $module_srl = $this->module_srl; |
40 | 40 | // Exit a session if there is neither upload permission nor information |
41 | - if(!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
41 | + if (!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
42 | 42 | // Extract from session information if upload_target_srl is not specified |
43 | - if(!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
43 | + if (!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
44 | 44 | // Create if upload_target_srl is not defined in the session information |
45 | - if(!$upload_target_srl) $_SESSION['upload_info'][$editor_sequence]->upload_target_srl = $upload_target_srl = getNextSequence(); |
|
45 | + if (!$upload_target_srl) $_SESSION['upload_info'][$editor_sequence]->upload_target_srl = $upload_target_srl = getNextSequence(); |
|
46 | 46 | |
47 | 47 | $output = $this->insertFile($file_info, $module_srl, $upload_target_srl); |
48 | 48 | Context::setResponseMethod('JSON'); |
49 | - if($output->error != '0') $this->stop($output->message); |
|
49 | + if ($output->error != '0') $this->stop($output->message); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | /** |
@@ -61,28 +61,28 @@ discard block |
||
61 | 61 | $callback = Context::get('callback'); |
62 | 62 | $module_srl = $this->module_srl; |
63 | 63 | $upload_target_srl = intval(Context::get('uploadTargetSrl')); |
64 | - if(!$upload_target_srl) $upload_target_srl = intval(Context::get('upload_target_srl')); |
|
64 | + if (!$upload_target_srl) $upload_target_srl = intval(Context::get('upload_target_srl')); |
|
65 | 65 | |
66 | 66 | // Exit a session if there is neither upload permission nor information |
67 | - if(!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
67 | + if (!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
68 | 68 | // Extract from session information if upload_target_srl is not specified |
69 | - if(!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
69 | + if (!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
70 | 70 | // Create if upload_target_srl is not defined in the session information |
71 | - if(!$upload_target_srl) $_SESSION['upload_info'][$editor_sequence]->upload_target_srl = $upload_target_srl = getNextSequence(); |
|
71 | + if (!$upload_target_srl) $_SESSION['upload_info'][$editor_sequence]->upload_target_srl = $upload_target_srl = getNextSequence(); |
|
72 | 72 | // Delete and then attempt to re-upload if file_srl is requested |
73 | 73 | $file_srl = Context::get('file_srl'); |
74 | - if($file_srl) $this->deleteFile($file_srl); |
|
74 | + if ($file_srl) $this->deleteFile($file_srl); |
|
75 | 75 | |
76 | 76 | $file_info = Context::get('Filedata'); |
77 | 77 | // An error appears if not a normally uploaded file |
78 | - if(is_uploaded_file($file_info['tmp_name'])) { |
|
78 | + if (is_uploaded_file($file_info['tmp_name'])) { |
|
79 | 79 | $output = $this->insertFile($file_info, $module_srl, $upload_target_srl); |
80 | - Context::set('uploaded_fileinfo',$output); |
|
80 | + Context::set('uploaded_fileinfo', $output); |
|
81 | 81 | } |
82 | 82 | |
83 | - Context::set('layout','none'); |
|
83 | + Context::set('layout', 'none'); |
|
84 | 84 | |
85 | - $this->setTemplatePath($this->module_path.'tpl'); |
|
85 | + $this->setTemplatePath($this->module_path . 'tpl'); |
|
86 | 86 | $this->setTemplateFile('iframe'); |
87 | 87 | } |
88 | 88 | |
@@ -97,24 +97,24 @@ discard block |
||
97 | 97 | $width = Context::get('width'); |
98 | 98 | $height = Context::get('height'); |
99 | 99 | |
100 | - if(!$file_srl || !$width) |
|
100 | + if (!$file_srl || !$width) |
|
101 | 101 | { |
102 | - return new Object(-1,'msg_invalid_request'); |
|
102 | + return new Object(-1, 'msg_invalid_request'); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | $oFileModel = getModel('file'); |
106 | 106 | $fileInfo = $oFileModel->getFile($file_srl); |
107 | - if(!$fileInfo || $fileInfo->direct_download != 'Y') |
|
107 | + if (!$fileInfo || $fileInfo->direct_download != 'Y') |
|
108 | 108 | { |
109 | - return new Object(-1,'msg_invalid_request'); |
|
109 | + return new Object(-1, 'msg_invalid_request'); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | $source_src = $fileInfo->uploaded_filename; |
113 | - $output_src = $source_src . '.resized' . strrchr($source_src,'.'); |
|
113 | + $output_src = $source_src . '.resized' . strrchr($source_src, '.'); |
|
114 | 114 | |
115 | - if(!$height) $height = $width-1; |
|
115 | + if (!$height) $height = $width - 1; |
|
116 | 116 | |
117 | - if(FileHandler::createImageFile($source_src,$output_src,$width,$height,'','ratio')) |
|
117 | + if (FileHandler::createImageFile($source_src, $output_src, $width, $height, '', 'ratio')) |
|
118 | 118 | { |
119 | 119 | $output = new stdClass(); |
120 | 120 | $output->info = getimagesize($output_src); |
@@ -122,10 +122,10 @@ discard block |
||
122 | 122 | } |
123 | 123 | else |
124 | 124 | { |
125 | - return new Object(-1,'msg_invalid_request'); |
|
125 | + return new Object(-1, 'msg_invalid_request'); |
|
126 | 126 | } |
127 | 127 | |
128 | - $this->add('resized_info',$output); |
|
128 | + $this->add('resized_info', $output); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | { |
164 | 164 | $oFileModel = getModel('file'); |
165 | 165 | |
166 | - if(isset($this->grant->access) && $this->grant->access !== true) return new Object(-1, 'msg_not_permitted'); |
|
166 | + if (isset($this->grant->access) && $this->grant->access !== true) return new Object(-1, 'msg_not_permitted'); |
|
167 | 167 | |
168 | 168 | $file_srl = Context::get('file_srl'); |
169 | 169 | $sid = Context::get('sid'); |
@@ -172,26 +172,26 @@ discard block |
||
172 | 172 | $columnList = array('file_srl', 'sid', 'isvalid', 'source_filename', 'module_srl', 'uploaded_filename', 'file_size', 'member_srl', 'upload_target_srl', 'upload_target_type'); |
173 | 173 | $file_obj = $oFileModel->getFile($file_srl, $columnList); |
174 | 174 | // If the requested file information is incorrect, an error that file cannot be found appears |
175 | - if($file_obj->file_srl!=$file_srl || $file_obj->sid!=$sid) return $this->stop('msg_file_not_found'); |
|
175 | + if ($file_obj->file_srl != $file_srl || $file_obj->sid != $sid) return $this->stop('msg_file_not_found'); |
|
176 | 176 | // Notify that file download is not allowed when standing-by(Only a top-administrator is permitted) |
177 | - if($logged_info->is_admin != 'Y' && $file_obj->isvalid!='Y') return $this->stop('msg_not_permitted_download'); |
|
177 | + if ($logged_info->is_admin != 'Y' && $file_obj->isvalid != 'Y') return $this->stop('msg_not_permitted_download'); |
|
178 | 178 | // File name |
179 | 179 | $filename = $file_obj->source_filename; |
180 | 180 | $file_module_config = $oFileModel->getFileModuleConfig($file_obj->module_srl); |
181 | 181 | // Not allow the file outlink |
182 | - if($file_module_config->allow_outlink == 'N') |
|
182 | + if ($file_module_config->allow_outlink == 'N') |
|
183 | 183 | { |
184 | 184 | // Handles extension to allow outlink |
185 | - if($file_module_config->allow_outlink_format) |
|
185 | + if ($file_module_config->allow_outlink_format) |
|
186 | 186 | { |
187 | 187 | $allow_outlink_format_array = array(); |
188 | 188 | $allow_outlink_format_array = explode(',', $file_module_config->allow_outlink_format); |
189 | - if(!is_array($allow_outlink_format_array)) $allow_outlink_format_array[0] = $file_module_config->allow_outlink_format; |
|
189 | + if (!is_array($allow_outlink_format_array)) $allow_outlink_format_array[0] = $file_module_config->allow_outlink_format; |
|
190 | 190 | |
191 | - foreach($allow_outlink_format_array as $val) |
|
191 | + foreach ($allow_outlink_format_array as $val) |
|
192 | 192 | { |
193 | 193 | $val = trim($val); |
194 | - if(preg_match("/\.{$val}$/i", $filename)) |
|
194 | + if (preg_match("/\.{$val}$/i", $filename)) |
|
195 | 195 | { |
196 | 196 | $file_module_config->allow_outlink = 'Y'; |
197 | 197 | break; |
@@ -199,21 +199,21 @@ discard block |
||
199 | 199 | } |
200 | 200 | } |
201 | 201 | // Sites that outlink is allowed |
202 | - if($file_module_config->allow_outlink != 'Y') |
|
202 | + if ($file_module_config->allow_outlink != 'Y') |
|
203 | 203 | { |
204 | 204 | $referer = parse_url($_SERVER["HTTP_REFERER"]); |
205 | - if($referer['host'] != $_SERVER['HTTP_HOST']) |
|
205 | + if ($referer['host'] != $_SERVER['HTTP_HOST']) |
|
206 | 206 | { |
207 | - if($file_module_config->allow_outlink_site) |
|
207 | + if ($file_module_config->allow_outlink_site) |
|
208 | 208 | { |
209 | 209 | $allow_outlink_site_array = array(); |
210 | 210 | $allow_outlink_site_array = explode("\n", $file_module_config->allow_outlink_site); |
211 | - if(!is_array($allow_outlink_site_array)) $allow_outlink_site_array[0] = $file_module_config->allow_outlink_site; |
|
211 | + if (!is_array($allow_outlink_site_array)) $allow_outlink_site_array[0] = $file_module_config->allow_outlink_site; |
|
212 | 212 | |
213 | - foreach($allow_outlink_site_array as $val) |
|
213 | + foreach ($allow_outlink_site_array as $val) |
|
214 | 214 | { |
215 | 215 | $site = parse_url(trim($val)); |
216 | - if($site['host'] == $referer['host']) |
|
216 | + if ($site['host'] == $referer['host']) |
|
217 | 217 | { |
218 | 218 | $file_module_config->allow_outlink = 'Y'; |
219 | 219 | break; |
@@ -223,49 +223,49 @@ discard block |
||
223 | 223 | } |
224 | 224 | else $file_module_config->allow_outlink = 'Y'; |
225 | 225 | } |
226 | - if($file_module_config->allow_outlink != 'Y') return $this->stop('msg_not_allowed_outlink'); |
|
226 | + if ($file_module_config->allow_outlink != 'Y') return $this->stop('msg_not_allowed_outlink'); |
|
227 | 227 | } |
228 | 228 | |
229 | 229 | // Check if a permission for file download is granted |
230 | 230 | $downloadGrantCount = 0; |
231 | - if(is_array($file_module_config->download_grant)) |
|
231 | + if (is_array($file_module_config->download_grant)) |
|
232 | 232 | { |
233 | - foreach($file_module_config->download_grant AS $value) |
|
234 | - if($value) $downloadGrantCount++; |
|
233 | + foreach ($file_module_config->download_grant AS $value) |
|
234 | + if ($value) $downloadGrantCount++; |
|
235 | 235 | } |
236 | 236 | |
237 | - if(is_array($file_module_config->download_grant) && $downloadGrantCount>0) |
|
237 | + if (is_array($file_module_config->download_grant) && $downloadGrantCount > 0) |
|
238 | 238 | { |
239 | - if(!Context::get('is_logged')) return $this->stop('msg_not_permitted_download'); |
|
239 | + if (!Context::get('is_logged')) return $this->stop('msg_not_permitted_download'); |
|
240 | 240 | $logged_info = Context::get('logged_info'); |
241 | - if($logged_info->is_admin != 'Y') |
|
241 | + if ($logged_info->is_admin != 'Y') |
|
242 | 242 | { |
243 | - $oModuleModel =& getModel('module'); |
|
243 | + $oModuleModel = & getModel('module'); |
|
244 | 244 | $columnList = array('module_srl', 'site_srl'); |
245 | 245 | $module_info = $oModuleModel->getModuleInfoByModuleSrl($file_obj->module_srl, $columnList); |
246 | 246 | |
247 | - if(!$oModuleModel->isSiteAdmin($logged_info, $module_info->site_srl)) |
|
247 | + if (!$oModuleModel->isSiteAdmin($logged_info, $module_info->site_srl)) |
|
248 | 248 | { |
249 | - $oMemberModel =& getModel('member'); |
|
249 | + $oMemberModel = & getModel('member'); |
|
250 | 250 | $member_groups = $oMemberModel->getMemberGroups($logged_info->member_srl, $module_info->site_srl); |
251 | 251 | |
252 | 252 | $is_permitted = false; |
253 | - for($i=0;$i<count($file_module_config->download_grant);$i++) |
|
253 | + for ($i = 0; $i < count($file_module_config->download_grant); $i++) |
|
254 | 254 | { |
255 | 255 | $group_srl = $file_module_config->download_grant[$i]; |
256 | - if($member_groups[$group_srl]) |
|
256 | + if ($member_groups[$group_srl]) |
|
257 | 257 | { |
258 | 258 | $is_permitted = true; |
259 | 259 | break; |
260 | 260 | } |
261 | 261 | } |
262 | - if(!$is_permitted) return $this->stop('msg_not_permitted_download'); |
|
262 | + if (!$is_permitted) return $this->stop('msg_not_permitted_download'); |
|
263 | 263 | } |
264 | 264 | } |
265 | 265 | } |
266 | 266 | // Call a trigger (before) |
267 | 267 | $output = ModuleHandler::triggerCall('file.downloadFile', 'before', $file_obj); |
268 | - if(!$output->toBool()) return $this->stop(($output->message)?$output->message:'msg_not_permitted_download'); |
|
268 | + if (!$output->toBool()) return $this->stop(($output->message) ? $output->message : 'msg_not_permitted_download'); |
|
269 | 269 | |
270 | 270 | |
271 | 271 | // 다운로드 후 (가상) |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | |
279 | 279 | $random = new Password(); |
280 | 280 | $file_key = $_SESSION['__XE_FILE_KEY__'][$file_srl] = $random->createSecureSalt(32, 'hex'); |
281 | - header('Location: '.getNotEncodedUrl('', 'act', 'procFileOutput','file_srl',$file_srl,'file_key',$file_key)); |
|
281 | + header('Location: ' . getNotEncodedUrl('', 'act', 'procFileOutput', 'file_srl', $file_srl, 'file_key', $file_key)); |
|
282 | 282 | Context::close(); |
283 | 283 | exit(); |
284 | 284 | |
@@ -289,18 +289,18 @@ discard block |
||
289 | 289 | $oFileModel = getModel('file'); |
290 | 290 | $file_srl = Context::get('file_srl'); |
291 | 291 | $file_key = Context::get('file_key'); |
292 | - if(strstr($_SERVER['HTTP_USER_AGENT'], "Android")) $is_android = true; |
|
292 | + if (strstr($_SERVER['HTTP_USER_AGENT'], "Android")) $is_android = true; |
|
293 | 293 | |
294 | - if($is_android && $_SESSION['__XE_FILE_KEY_AND__'][$file_srl]) $session_key = '__XE_FILE_KEY_AND__'; |
|
294 | + if ($is_android && $_SESSION['__XE_FILE_KEY_AND__'][$file_srl]) $session_key = '__XE_FILE_KEY_AND__'; |
|
295 | 295 | else $session_key = '__XE_FILE_KEY__'; |
296 | 296 | $columnList = array('source_filename', 'uploaded_filename', 'file_size'); |
297 | 297 | $file_obj = $oFileModel->getFile($file_srl, $columnList); |
298 | 298 | |
299 | 299 | $uploaded_filename = $file_obj->uploaded_filename; |
300 | 300 | |
301 | - if(!file_exists($uploaded_filename)) return $this->stop('msg_file_not_found'); |
|
301 | + if (!file_exists($uploaded_filename)) return $this->stop('msg_file_not_found'); |
|
302 | 302 | |
303 | - if(!$file_key || $_SESSION[$session_key][$file_srl] != $file_key) |
|
303 | + if (!$file_key || $_SESSION[$session_key][$file_srl] != $file_key) |
|
304 | 304 | { |
305 | 305 | unset($_SESSION[$session_key][$file_srl]); |
306 | 306 | return $this->stop('msg_invalid_request'); |
@@ -308,15 +308,15 @@ discard block |
||
308 | 308 | |
309 | 309 | $file_size = $file_obj->file_size; |
310 | 310 | $filename = $file_obj->source_filename; |
311 | - if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE || (strpos($_SERVER['HTTP_USER_AGENT'], 'Windows') !== FALSE && strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') !== FALSE && strpos($_SERVER['HTTP_USER_AGENT'], 'rv:') !== FALSE)) |
|
311 | + if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE || (strpos($_SERVER['HTTP_USER_AGENT'], 'Windows') !== FALSE && strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') !== FALSE && strpos($_SERVER['HTTP_USER_AGENT'], 'rv:') !== FALSE)) |
|
312 | 312 | { |
313 | 313 | $filename = rawurlencode($filename); |
314 | 314 | $filename = preg_replace('/\./', '%2e', $filename, substr_count($filename, '.') - 1); |
315 | 315 | } |
316 | 316 | |
317 | - if($is_android) |
|
317 | + if ($is_android) |
|
318 | 318 | { |
319 | - if($_SESSION['__XE_FILE_KEY__'][$file_srl]) $_SESSION['__XE_FILE_KEY_AND__'][$file_srl] = $file_key; |
|
319 | + if ($_SESSION['__XE_FILE_KEY__'][$file_srl]) $_SESSION['__XE_FILE_KEY_AND__'][$file_srl] = $file_key; |
|
320 | 320 | } |
321 | 321 | |
322 | 322 | unset($_SESSION[$session_key][$file_srl]); |
@@ -324,21 +324,21 @@ discard block |
||
324 | 324 | Context::close(); |
325 | 325 | |
326 | 326 | $fp = fopen($uploaded_filename, 'rb'); |
327 | - if(!$fp) return $this->stop('msg_file_not_found'); |
|
327 | + if (!$fp) return $this->stop('msg_file_not_found'); |
|
328 | 328 | |
329 | 329 | header("Cache-Control: "); |
330 | 330 | header("Pragma: "); |
331 | 331 | header("Content-Type: application/octet-stream"); |
332 | 332 | header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); |
333 | 333 | |
334 | - header("Content-Length: " .(string)($file_size)); |
|
335 | - header('Content-Disposition: attachment; filename="'.$filename.'"'); |
|
334 | + header("Content-Length: " . (string) ($file_size)); |
|
335 | + header('Content-Disposition: attachment; filename="' . $filename . '"'); |
|
336 | 336 | header("Content-Transfer-Encoding: binary\n"); |
337 | 337 | |
338 | 338 | // if file size is lager than 10MB, use fread function (#18675748) |
339 | - if(filesize($uploaded_filename) > 1024 * 1024) |
|
339 | + if (filesize($uploaded_filename) > 1024 * 1024) |
|
340 | 340 | { |
341 | - while(!feof($fp)) echo fread($fp, 1024); |
|
341 | + while (!feof($fp)) echo fread($fp, 1024); |
|
342 | 342 | fclose($fp); |
343 | 343 | } |
344 | 344 | else |
@@ -360,36 +360,36 @@ discard block |
||
360 | 360 | $editor_sequence = Context::get('editor_sequence'); |
361 | 361 | $file_srl = Context::get('file_srl'); |
362 | 362 | $file_srls = Context::get('file_srls'); |
363 | - if($file_srls) $file_srl = $file_srls; |
|
363 | + if ($file_srls) $file_srl = $file_srls; |
|
364 | 364 | // Exit a session if there is neither upload permission nor information |
365 | - if(!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
365 | + if (!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
366 | 366 | |
367 | 367 | $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
368 | 368 | |
369 | 369 | $logged_info = Context::get('logged_info'); |
370 | 370 | $oFileModel = getModel('file'); |
371 | 371 | |
372 | - $srls = explode(',',$file_srl); |
|
373 | - if(!count($srls)) return; |
|
372 | + $srls = explode(',', $file_srl); |
|
373 | + if (!count($srls)) return; |
|
374 | 374 | |
375 | - for($i=0;$i<count($srls);$i++) |
|
375 | + for ($i = 0; $i < count($srls); $i++) |
|
376 | 376 | { |
377 | - $srl = (int)$srls[$i]; |
|
378 | - if(!$srl) continue; |
|
377 | + $srl = (int) $srls[$i]; |
|
378 | + if (!$srl) continue; |
|
379 | 379 | |
380 | 380 | $args = new stdClass; |
381 | 381 | $args->file_srl = $srl; |
382 | 382 | $output = executeQuery('file.getFile', $args); |
383 | - if(!$output->toBool()) continue; |
|
383 | + if (!$output->toBool()) continue; |
|
384 | 384 | |
385 | 385 | $file_info = $output->data; |
386 | - if(!$file_info) continue; |
|
386 | + if (!$file_info) continue; |
|
387 | 387 | |
388 | 388 | $file_grant = $oFileModel->getFileGrant($file_info, $logged_info); |
389 | 389 | |
390 | - if(!$file_grant->is_deletable) continue; |
|
390 | + if (!$file_grant->is_deletable) continue; |
|
391 | 391 | |
392 | - if($upload_target_srl && $file_srl) $output = $this->deleteFile($file_srl); |
|
392 | + if ($upload_target_srl && $file_srl) $output = $this->deleteFile($file_srl); |
|
393 | 393 | } |
394 | 394 | } |
395 | 395 | |
@@ -400,23 +400,23 @@ discard block |
||
400 | 400 | */ |
401 | 401 | function procFileGetList() |
402 | 402 | { |
403 | - if(!Context::get('is_logged')) return new Object(-1,'msg_not_permitted'); |
|
403 | + if (!Context::get('is_logged')) return new Object(-1, 'msg_not_permitted'); |
|
404 | 404 | $fileSrls = Context::get('file_srls'); |
405 | - if($fileSrls) $fileSrlList = explode(',', $fileSrls); |
|
405 | + if ($fileSrls) $fileSrlList = explode(',', $fileSrls); |
|
406 | 406 | |
407 | 407 | global $lang; |
408 | - if(count($fileSrlList) > 0) |
|
408 | + if (count($fileSrlList) > 0) |
|
409 | 409 | { |
410 | 410 | $oFileModel = getModel('file'); |
411 | 411 | $fileList = $oFileModel->getFile($fileSrlList); |
412 | - if(!is_array($fileList)) $fileList = array($fileList); |
|
412 | + if (!is_array($fileList)) $fileList = array($fileList); |
|
413 | 413 | |
414 | - if(is_array($fileList)) |
|
414 | + if (is_array($fileList)) |
|
415 | 415 | { |
416 | - foreach($fileList AS $key=>$value) |
|
416 | + foreach ($fileList AS $key=>$value) |
|
417 | 417 | { |
418 | 418 | $value->human_file_size = FileHandler::filesize($value->file_size); |
419 | - if($value->isvalid=='Y') $value->validName = $lang->is_valid; |
|
419 | + if ($value->isvalid == 'Y') $value->validName = $lang->is_valid; |
|
420 | 420 | else $value->validName = $lang->is_stand_by; |
421 | 421 | } |
422 | 422 | } |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | function triggerCheckAttached(&$obj) |
439 | 439 | { |
440 | 440 | $document_srl = $obj->document_srl; |
441 | - if(!$document_srl) return new Object(); |
|
441 | + if (!$document_srl) return new Object(); |
|
442 | 442 | // Get numbers of attachments |
443 | 443 | $oFileModel = getModel('file'); |
444 | 444 | $obj->uploaded_count = $oFileModel->getFilesCount($document_srl); |
@@ -455,10 +455,10 @@ discard block |
||
455 | 455 | function triggerAttachFiles(&$obj) |
456 | 456 | { |
457 | 457 | $document_srl = $obj->document_srl; |
458 | - if(!$document_srl) return new Object(); |
|
458 | + if (!$document_srl) return new Object(); |
|
459 | 459 | |
460 | 460 | $output = $this->setFilesValid($document_srl); |
461 | - if(!$output->toBool()) return $output; |
|
461 | + if (!$output->toBool()) return $output; |
|
462 | 462 | |
463 | 463 | return new Object(); |
464 | 464 | } |
@@ -472,7 +472,7 @@ discard block |
||
472 | 472 | function triggerDeleteAttached(&$obj) |
473 | 473 | { |
474 | 474 | $document_srl = $obj->document_srl; |
475 | - if(!$document_srl) return new Object(); |
|
475 | + if (!$document_srl) return new Object(); |
|
476 | 476 | |
477 | 477 | $output = $this->deleteFiles($document_srl); |
478 | 478 | return $output; |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | function triggerCommentCheckAttached(&$obj) |
488 | 488 | { |
489 | 489 | $comment_srl = $obj->comment_srl; |
490 | - if(!$comment_srl) return new Object(); |
|
490 | + if (!$comment_srl) return new Object(); |
|
491 | 491 | // Get numbers of attachments |
492 | 492 | $oFileModel = getModel('file'); |
493 | 493 | $obj->uploaded_count = $oFileModel->getFilesCount($comment_srl); |
@@ -505,10 +505,10 @@ discard block |
||
505 | 505 | { |
506 | 506 | $comment_srl = $obj->comment_srl; |
507 | 507 | $uploaded_count = $obj->uploaded_count; |
508 | - if(!$comment_srl || !$uploaded_count) return new Object(); |
|
508 | + if (!$comment_srl || !$uploaded_count) return new Object(); |
|
509 | 509 | |
510 | 510 | $output = $this->setFilesValid($comment_srl); |
511 | - if(!$output->toBool()) return $output; |
|
511 | + if (!$output->toBool()) return $output; |
|
512 | 512 | |
513 | 513 | return new Object(); |
514 | 514 | } |
@@ -522,9 +522,9 @@ discard block |
||
522 | 522 | function triggerCommentDeleteAttached(&$obj) |
523 | 523 | { |
524 | 524 | $comment_srl = $obj->comment_srl; |
525 | - if(!$comment_srl) return new Object(); |
|
525 | + if (!$comment_srl) return new Object(); |
|
526 | 526 | |
527 | - if($obj->isMoveToTrash) return new Object(); |
|
527 | + if ($obj->isMoveToTrash) return new Object(); |
|
528 | 528 | |
529 | 529 | $output = $this->deleteFiles($comment_srl); |
530 | 530 | return $output; |
@@ -539,7 +539,7 @@ discard block |
||
539 | 539 | function triggerDeleteModuleFiles(&$obj) |
540 | 540 | { |
541 | 541 | $module_srl = $obj->module_srl; |
542 | - if(!$module_srl) return new Object(); |
|
542 | + if (!$module_srl) return new Object(); |
|
543 | 543 | |
544 | 544 | $oFileController = getAdminController('file'); |
545 | 545 | return $oFileController->deleteModuleFiles($module_srl); |
@@ -552,9 +552,9 @@ discard block |
||
552 | 552 | * @param int $upload_target_srl |
553 | 553 | * @return void |
554 | 554 | */ |
555 | - function setUploadInfo($editor_sequence, $upload_target_srl=0) |
|
555 | + function setUploadInfo($editor_sequence, $upload_target_srl = 0) |
|
556 | 556 | { |
557 | - if(!isset($_SESSION['upload_info'][$editor_sequence])) |
|
557 | + if (!isset($_SESSION['upload_info'][$editor_sequence])) |
|
558 | 558 | { |
559 | 559 | $_SESSION['upload_info'][$editor_sequence] = new stdClass(); |
560 | 560 | } |
@@ -614,36 +614,36 @@ discard block |
||
614 | 614 | $trigger_obj->module_srl = $module_srl; |
615 | 615 | $trigger_obj->upload_target_srl = $upload_target_srl; |
616 | 616 | $output = ModuleHandler::triggerCall('file.insertFile', 'before', $trigger_obj); |
617 | - if(!$output->toBool()) return $output; |
|
617 | + if (!$output->toBool()) return $output; |
|
618 | 618 | |
619 | 619 | // A workaround for Firefox upload bug |
620 | - if(preg_match('/^=\?UTF-8\?B\?(.+)\?=$/i', $file_info['name'], $match)) |
|
620 | + if (preg_match('/^=\?UTF-8\?B\?(.+)\?=$/i', $file_info['name'], $match)) |
|
621 | 621 | { |
622 | 622 | $file_info['name'] = base64_decode(strtr($match[1], ':', '/')); |
623 | 623 | } |
624 | 624 | |
625 | - if(!$manual_insert) |
|
625 | + if (!$manual_insert) |
|
626 | 626 | { |
627 | 627 | // Get the file configurations |
628 | 628 | $logged_info = Context::get('logged_info'); |
629 | - if($logged_info->is_admin != 'Y') |
|
629 | + if ($logged_info->is_admin != 'Y') |
|
630 | 630 | { |
631 | 631 | $oFileModel = getModel('file'); |
632 | 632 | $config = $oFileModel->getFileConfig($module_srl); |
633 | 633 | |
634 | 634 | // check file type |
635 | - if(isset($config->allowed_filetypes) && $config->allowed_filetypes !== '*.*') |
|
635 | + if (isset($config->allowed_filetypes) && $config->allowed_filetypes !== '*.*') |
|
636 | 636 | { |
637 | 637 | $filetypes = explode(';', $config->allowed_filetypes); |
638 | 638 | $ext = array(); |
639 | - foreach($filetypes as $item) { |
|
639 | + foreach ($filetypes as $item) { |
|
640 | 640 | $item = explode('.', $item); |
641 | 641 | $ext[] = strtolower($item[1]); |
642 | 642 | } |
643 | 643 | $uploaded_ext = explode('.', $file_info['name']); |
644 | 644 | $uploaded_ext = strtolower(array_pop($uploaded_ext)); |
645 | 645 | |
646 | - if(!in_array($uploaded_ext, $ext)) |
|
646 | + if (!in_array($uploaded_ext, $ext)) |
|
647 | 647 | { |
648 | 648 | return $this->stop('msg_not_allowed_filetype'); |
649 | 649 | } |
@@ -652,74 +652,74 @@ discard block |
||
652 | 652 | $allowed_filesize = $config->allowed_filesize * 1024 * 1024; |
653 | 653 | $allowed_attach_size = $config->allowed_attach_size * 1024 * 1024; |
654 | 654 | // An error appears if file size exceeds a limit |
655 | - if($allowed_filesize < filesize($file_info['tmp_name'])) return new Object(-1, 'msg_exceeds_limit_size'); |
|
655 | + if ($allowed_filesize < filesize($file_info['tmp_name'])) return new Object(-1, 'msg_exceeds_limit_size'); |
|
656 | 656 | // Get total file size of all attachements (from DB) |
657 | 657 | $size_args = new stdClass; |
658 | 658 | $size_args->upload_target_srl = $upload_target_srl; |
659 | 659 | $output = executeQuery('file.getAttachedFileSize', $size_args); |
660 | - $attached_size = (int)$output->data->attached_size + filesize($file_info['tmp_name']); |
|
661 | - if($attached_size > $allowed_attach_size) return new Object(-1, 'msg_exceeds_limit_size'); |
|
660 | + $attached_size = (int) $output->data->attached_size + filesize($file_info['tmp_name']); |
|
661 | + if ($attached_size > $allowed_attach_size) return new Object(-1, 'msg_exceeds_limit_size'); |
|
662 | 662 | } |
663 | 663 | } |
664 | 664 | |
665 | 665 | // https://github.com/xpressengine/xe-core/issues/1713 |
666 | - $file_info['name'] = preg_replace('/\.(php|phtm|phar|html?|cgi|pl|exe|jsp|asp|inc)/i', '$0-x',$file_info['name']); |
|
666 | + $file_info['name'] = preg_replace('/\.(php|phtm|phar|html?|cgi|pl|exe|jsp|asp|inc)/i', '$0-x', $file_info['name']); |
|
667 | 667 | $file_info['name'] = removeHackTag($file_info['name']); |
668 | - $file_info['name'] = str_replace(array('<','>'),array('%3C','%3E'),$file_info['name']); |
|
668 | + $file_info['name'] = str_replace(array('<', '>'), array('%3C', '%3E'), $file_info['name']); |
|
669 | 669 | |
670 | 670 | // Get random number generator |
671 | 671 | $random = new Password(); |
672 | 672 | |
673 | 673 | // Set upload path by checking if the attachement is an image or other kinds of file |
674 | - if(preg_match("/\.(jpe?g|gif|png|wm[va]|mpe?g|avi|swf|flv|mp[1-4]|as[fx]|wav|midi?|moo?v|qt|r[am]{1,2}|m4v)$/i", $file_info['name'])) |
|
674 | + if (preg_match("/\.(jpe?g|gif|png|wm[va]|mpe?g|avi|swf|flv|mp[1-4]|as[fx]|wav|midi?|moo?v|qt|r[am]{1,2}|m4v)$/i", $file_info['name'])) |
|
675 | 675 | { |
676 | - $path = sprintf("./files/attach/images/%s/%s", $module_srl,getNumberingPath($upload_target_srl,3)); |
|
676 | + $path = sprintf("./files/attach/images/%s/%s", $module_srl, getNumberingPath($upload_target_srl, 3)); |
|
677 | 677 | |
678 | 678 | // special character to '_' |
679 | 679 | // change to random file name. because window php bug. window php is not recognize unicode character file name - by cherryfilter |
680 | - $ext = substr(strrchr($file_info['name'],'.'),1); |
|
680 | + $ext = substr(strrchr($file_info['name'], '.'), 1); |
|
681 | 681 | //$_filename = preg_replace('/[#$&*?+%"\']/', '_', $file_info['name']); |
682 | - $_filename = $random->createSecureSalt(32, 'hex').'.'.$ext; |
|
683 | - $filename = $path.$_filename; |
|
682 | + $_filename = $random->createSecureSalt(32, 'hex') . '.' . $ext; |
|
683 | + $filename = $path . $_filename; |
|
684 | 684 | $idx = 1; |
685 | - while(file_exists($filename)) |
|
685 | + while (file_exists($filename)) |
|
686 | 686 | { |
687 | - $filename = $path.preg_replace('/\.([a-z0-9]+)$/i','_'.$idx.'.$1',$_filename); |
|
687 | + $filename = $path . preg_replace('/\.([a-z0-9]+)$/i', '_' . $idx . '.$1', $_filename); |
|
688 | 688 | $idx++; |
689 | 689 | } |
690 | 690 | $direct_download = 'Y'; |
691 | 691 | } |
692 | 692 | else |
693 | 693 | { |
694 | - $path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl,3)); |
|
695 | - $filename = $path.$random->createSecureSalt(32, 'hex'); |
|
694 | + $path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl, 3)); |
|
695 | + $filename = $path . $random->createSecureSalt(32, 'hex'); |
|
696 | 696 | $direct_download = 'N'; |
697 | 697 | } |
698 | 698 | // Create a directory |
699 | - if(!FileHandler::makeDir($path)) return new Object(-1,'msg_not_permitted_create'); |
|
699 | + if (!FileHandler::makeDir($path)) return new Object(-1, 'msg_not_permitted_create'); |
|
700 | 700 | |
701 | 701 | // Check uploaded file |
702 | - if(!checkUploadedFile($file_info['tmp_name'])) return new Object(-1,'msg_file_upload_error'); |
|
702 | + if (!checkUploadedFile($file_info['tmp_name'])) return new Object(-1, 'msg_file_upload_error'); |
|
703 | 703 | |
704 | 704 | // Get random number generator |
705 | 705 | $random = new Password(); |
706 | 706 | |
707 | 707 | // Move the file |
708 | - if($manual_insert) |
|
708 | + if ($manual_insert) |
|
709 | 709 | { |
710 | 710 | @copy($file_info['tmp_name'], $filename); |
711 | - if(!file_exists($filename)) |
|
711 | + if (!file_exists($filename)) |
|
712 | 712 | { |
713 | - $filename = $path.$random->createSecureSalt(32, 'hex').'.'.$ext; |
|
713 | + $filename = $path . $random->createSecureSalt(32, 'hex') . '.' . $ext; |
|
714 | 714 | @copy($file_info['tmp_name'], $filename); |
715 | 715 | } |
716 | 716 | } |
717 | 717 | else |
718 | 718 | { |
719 | - if(!@move_uploaded_file($file_info['tmp_name'], $filename)) |
|
719 | + if (!@move_uploaded_file($file_info['tmp_name'], $filename)) |
|
720 | 720 | { |
721 | - $filename = $path.$random->createSecureSalt(32, 'hex').'.'.$ext; |
|
722 | - if(!@move_uploaded_file($file_info['tmp_name'], $filename)) return new Object(-1,'msg_file_upload_error'); |
|
721 | + $filename = $path . $random->createSecureSalt(32, 'hex') . '.' . $ext; |
|
722 | + if (!@move_uploaded_file($file_info['tmp_name'], $filename)) return new Object(-1, 'msg_file_upload_error'); |
|
723 | 723 | } |
724 | 724 | } |
725 | 725 | // Get member information |
@@ -740,10 +740,10 @@ discard block |
||
740 | 740 | $args->sid = $random->createSecureSalt(32, 'hex'); |
741 | 741 | |
742 | 742 | $output = executeQuery('file.insertFile', $args); |
743 | - if(!$output->toBool()) return $output; |
|
743 | + if (!$output->toBool()) return $output; |
|
744 | 744 | // Call a trigger (after) |
745 | 745 | $trigger_output = ModuleHandler::triggerCall('file.insertFile', 'after', $args); |
746 | - if(!$trigger_output->toBool()) return $trigger_output; |
|
746 | + if (!$trigger_output->toBool()) return $trigger_output; |
|
747 | 747 | |
748 | 748 | $_SESSION['__XE_UPLOADING_FILES_INFO__'][$args->file_srl] = true; |
749 | 749 | |
@@ -786,18 +786,18 @@ discard block |
||
786 | 786 | */ |
787 | 787 | function deleteFile($file_srl) |
788 | 788 | { |
789 | - if(!$file_srl) return; |
|
789 | + if (!$file_srl) return; |
|
790 | 790 | |
791 | 791 | $srls = (is_array($file_srl)) ? $file_srl : explode(',', $file_srl); |
792 | - if(!count($srls)) return; |
|
792 | + if (!count($srls)) return; |
|
793 | 793 | |
794 | 794 | $oDocumentController = getController('document'); |
795 | 795 | $documentSrlList = array(); |
796 | 796 | |
797 | - foreach($srls as $srl) |
|
797 | + foreach ($srls as $srl) |
|
798 | 798 | { |
799 | - $srl = (int)$srl; |
|
800 | - if(!$srl) |
|
799 | + $srl = (int) $srl; |
|
800 | + if (!$srl) |
|
801 | 801 | { |
802 | 802 | continue; |
803 | 803 | } |
@@ -806,14 +806,14 @@ discard block |
||
806 | 806 | $args->file_srl = $srl; |
807 | 807 | $output = executeQuery('file.getFile', $args); |
808 | 808 | |
809 | - if(!$output->toBool() || !$output->data) |
|
809 | + if (!$output->toBool() || !$output->data) |
|
810 | 810 | { |
811 | 811 | continue; |
812 | 812 | } |
813 | 813 | |
814 | 814 | $file_info = $output->data; |
815 | 815 | |
816 | - if($file_info->upload_target_srl) |
|
816 | + if ($file_info->upload_target_srl) |
|
817 | 817 | { |
818 | 818 | $documentSrlList[] = $file_info->upload_target_srl; |
819 | 819 | } |
@@ -824,15 +824,15 @@ discard block |
||
824 | 824 | // Call a trigger (before) |
825 | 825 | $trigger_obj = $output->data; |
826 | 826 | $output = ModuleHandler::triggerCall('file.deleteFile', 'before', $trigger_obj); |
827 | - if(!$output->toBool()) return $output; |
|
827 | + if (!$output->toBool()) return $output; |
|
828 | 828 | |
829 | 829 | // Remove from the DB |
830 | 830 | $output = executeQuery('file.deleteFile', $args); |
831 | - if(!$output->toBool()) return $output; |
|
831 | + if (!$output->toBool()) return $output; |
|
832 | 832 | |
833 | 833 | // Call a trigger (after) |
834 | 834 | $trigger_output = ModuleHandler::triggerCall('file.deleteFile', 'after', $trigger_obj); |
835 | - if(!$trigger_output->toBool()) return $trigger_output; |
|
835 | + if (!$trigger_output->toBool()) return $trigger_output; |
|
836 | 836 | |
837 | 837 | // If successfully deleted, remove the file |
838 | 838 | FileHandler::removeFile($uploaded_filename); |
@@ -856,28 +856,28 @@ discard block |
||
856 | 856 | $columnList = array('file_srl', 'uploaded_filename', 'module_srl'); |
857 | 857 | $file_list = $oFileModel->getFiles($upload_target_srl, $columnList); |
858 | 858 | // Success returned if no attachement exists |
859 | - if(!is_array($file_list)||!count($file_list)) return new Object(); |
|
859 | + if (!is_array($file_list) || !count($file_list)) return new Object(); |
|
860 | 860 | |
861 | 861 | // Delete the file |
862 | 862 | $path = array(); |
863 | 863 | $file_count = count($file_list); |
864 | - for($i=0;$i<$file_count;$i++) |
|
864 | + for ($i = 0; $i < $file_count; $i++) |
|
865 | 865 | { |
866 | 866 | $this->deleteFile($file_list[$i]->file_srl); |
867 | 867 | |
868 | 868 | $uploaded_filename = $file_list[$i]->uploaded_filename; |
869 | 869 | $path_info = pathinfo($uploaded_filename); |
870 | - if(!in_array($path_info['dirname'], $path)) $path[] = $path_info['dirname']; |
|
870 | + if (!in_array($path_info['dirname'], $path)) $path[] = $path_info['dirname']; |
|
871 | 871 | } |
872 | 872 | |
873 | 873 | // Remove from the DB |
874 | 874 | $args = new stdClass(); |
875 | 875 | $args->upload_target_srl = $upload_target_srl; |
876 | 876 | $output = executeQuery('file.deleteFiles', $args); |
877 | - if(!$output->toBool()) return $output; |
|
877 | + if (!$output->toBool()) return $output; |
|
878 | 878 | |
879 | 879 | // Remove a file directory of the document |
880 | - for($i=0, $c=count($path); $i<$c; $i++) |
|
880 | + for ($i = 0, $c = count($path); $i < $c; $i++) |
|
881 | 881 | { |
882 | 882 | FileHandler::removeBlankDir($path[$i]); |
883 | 883 | } |
@@ -895,33 +895,33 @@ discard block |
||
895 | 895 | */ |
896 | 896 | function moveFile($source_srl, $target_module_srl, $target_srl) |
897 | 897 | { |
898 | - if($source_srl == $target_srl) return; |
|
898 | + if ($source_srl == $target_srl) return; |
|
899 | 899 | |
900 | 900 | $oFileModel = getModel('file'); |
901 | 901 | $file_list = $oFileModel->getFiles($source_srl); |
902 | - if(!$file_list) return; |
|
902 | + if (!$file_list) return; |
|
903 | 903 | |
904 | 904 | $file_count = count($file_list); |
905 | 905 | |
906 | - for($i=0;$i<$file_count;$i++) |
|
906 | + for ($i = 0; $i < $file_count; $i++) |
|
907 | 907 | { |
908 | 908 | unset($file_info); |
909 | 909 | $file_info = $file_list[$i]; |
910 | 910 | $old_file = $file_info->uploaded_filename; |
911 | 911 | // Determine the file path by checking if the file is an image or other kinds |
912 | - if(preg_match("/\.(jpg|jpeg|gif|png|wmv|wma|mpg|mpeg|avi|swf|flv|mp1|mp2|mp3|mp4|asf|wav|asx|mid|midi|asf|mov|moov|qt|rm|ram|ra|rmm|m4v)$/i", $file_info->source_filename)) |
|
912 | + if (preg_match("/\.(jpg|jpeg|gif|png|wmv|wma|mpg|mpeg|avi|swf|flv|mp1|mp2|mp3|mp4|asf|wav|asx|mid|midi|asf|mov|moov|qt|rm|ram|ra|rmm|m4v)$/i", $file_info->source_filename)) |
|
913 | 913 | { |
914 | - $path = sprintf("./files/attach/images/%s/%s/", $target_module_srl,$target_srl); |
|
915 | - $new_file = $path.$file_info->source_filename; |
|
914 | + $path = sprintf("./files/attach/images/%s/%s/", $target_module_srl, $target_srl); |
|
915 | + $new_file = $path . $file_info->source_filename; |
|
916 | 916 | } |
917 | 917 | else |
918 | 918 | { |
919 | 919 | $path = sprintf("./files/attach/binaries/%s/%s/", $target_module_srl, $target_srl); |
920 | 920 | $random = new Password(); |
921 | - $new_file = $path.$random->createSecureSalt(32, 'hex'); |
|
921 | + $new_file = $path . $random->createSecureSalt(32, 'hex'); |
|
922 | 922 | } |
923 | 923 | // Pass if a target document to move is same |
924 | - if($old_file == $new_file) continue; |
|
924 | + if ($old_file == $new_file) continue; |
|
925 | 925 | // Create a directory |
926 | 926 | FileHandler::makeDir($path); |
927 | 927 | // Move the file |
@@ -941,18 +941,18 @@ discard block |
||
941 | 941 | $vars = Context::getRequestVars(); |
942 | 942 | $logged_info = Context::get('logged_info'); |
943 | 943 | |
944 | - if(!$vars->editor_sequence) return new Object(-1, 'msg_invalid_request'); |
|
944 | + if (!$vars->editor_sequence) return new Object(-1, 'msg_invalid_request'); |
|
945 | 945 | |
946 | 946 | $upload_target_srl = $_SESSION['upload_info'][$vars->editor_sequence]->upload_target_srl; |
947 | 947 | |
948 | 948 | $oFileModel = getModel('file'); |
949 | 949 | $file_info = $oFileModel->getFile($vars->file_srl); |
950 | 950 | |
951 | - if(!$file_info) return new Object(-1, 'msg_not_founded'); |
|
951 | + if (!$file_info) return new Object(-1, 'msg_not_founded'); |
|
952 | 952 | |
953 | - if(!$this->manager && !$file_info->member_srl === $logged_info->member_srl) return new Object(-1, 'msg_not_permitted'); |
|
953 | + if (!$this->manager && !$file_info->member_srl === $logged_info->member_srl) return new Object(-1, 'msg_not_permitted'); |
|
954 | 954 | |
955 | - $args = new stdClass(); |
|
955 | + $args = new stdClass(); |
|
956 | 956 | $args->file_srl = $vars->file_srl; |
957 | 957 | $args->upload_target_srl = $upload_target_srl; |
958 | 958 | |
@@ -961,7 +961,7 @@ discard block |
||
961 | 961 | |
962 | 962 | $args->cover_image = 'N'; |
963 | 963 | $output = executeQuery('file.updateClearCoverImage', $args); |
964 | - if(!$output->toBool()) |
|
964 | + if (!$output->toBool()) |
|
965 | 965 | { |
966 | 966 | $oDB->rollback(); |
967 | 967 | return $output; |
@@ -969,7 +969,7 @@ discard block |
||
969 | 969 | |
970 | 970 | $args->cover_image = 'Y'; |
971 | 971 | $output = executeQuery('file.updateCoverImage', $args); |
972 | - if(!$output->toBool()) |
|
972 | + if (!$output->toBool()) |
|
973 | 973 | { |
974 | 974 | $oDB->rollback(); |
975 | 975 | return $output; |
@@ -1001,9 +1001,9 @@ discard block |
||
1001 | 1001 | $fileConfig = $oModuleModel->getModulePartConfig('file', $obj->originModuleSrl); |
1002 | 1002 | |
1003 | 1003 | $oModuleController = getController('module'); |
1004 | - if(is_array($obj->moduleSrlList)) |
|
1004 | + if (is_array($obj->moduleSrlList)) |
|
1005 | 1005 | { |
1006 | - foreach($obj->moduleSrlList AS $key=>$moduleSrl) |
|
1006 | + foreach ($obj->moduleSrlList AS $key=>$moduleSrl) |
|
1007 | 1007 | { |
1008 | 1008 | $oModuleController->insertModulePartConfig('file', $moduleSrl, $fileConfig); |
1009 | 1009 | } |
@@ -29,24 +29,36 @@ discard block |
||
29 | 29 | $file_info = $_FILES['Filedata']; |
30 | 30 | |
31 | 31 | // An error appears if not a normally uploaded file |
32 | - if(!is_uploaded_file($file_info['tmp_name'])) exit(); |
|
32 | + if(!is_uploaded_file($file_info['tmp_name'])) { |
|
33 | + exit(); |
|
34 | + } |
|
33 | 35 | |
34 | 36 | // Basic variables setting |
35 | 37 | $oFileModel = getModel('file'); |
36 | 38 | $editor_sequence = Context::get('editor_sequence'); |
37 | 39 | $upload_target_srl = intval(Context::get('uploadTargetSrl')); |
38 | - if(!$upload_target_srl) $upload_target_srl = intval(Context::get('upload_target_srl')); |
|
40 | + if(!$upload_target_srl) { |
|
41 | + $upload_target_srl = intval(Context::get('upload_target_srl')); |
|
42 | + } |
|
39 | 43 | $module_srl = $this->module_srl; |
40 | 44 | // Exit a session if there is neither upload permission nor information |
41 | - if(!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
45 | + if(!$_SESSION['upload_info'][$editor_sequence]->enabled) { |
|
46 | + exit(); |
|
47 | + } |
|
42 | 48 | // Extract from session information if upload_target_srl is not specified |
43 | - if(!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
49 | + if(!$upload_target_srl) { |
|
50 | + $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
51 | + } |
|
44 | 52 | // Create if upload_target_srl is not defined in the session information |
45 | - if(!$upload_target_srl) $_SESSION['upload_info'][$editor_sequence]->upload_target_srl = $upload_target_srl = getNextSequence(); |
|
53 | + if(!$upload_target_srl) { |
|
54 | + $_SESSION['upload_info'][$editor_sequence]->upload_target_srl = $upload_target_srl = getNextSequence(); |
|
55 | + } |
|
46 | 56 | |
47 | 57 | $output = $this->insertFile($file_info, $module_srl, $upload_target_srl); |
48 | 58 | Context::setResponseMethod('JSON'); |
49 | - if($output->error != '0') $this->stop($output->message); |
|
59 | + if($output->error != '0') { |
|
60 | + $this->stop($output->message); |
|
61 | + } |
|
50 | 62 | } |
51 | 63 | |
52 | 64 | /** |
@@ -61,17 +73,27 @@ discard block |
||
61 | 73 | $callback = Context::get('callback'); |
62 | 74 | $module_srl = $this->module_srl; |
63 | 75 | $upload_target_srl = intval(Context::get('uploadTargetSrl')); |
64 | - if(!$upload_target_srl) $upload_target_srl = intval(Context::get('upload_target_srl')); |
|
76 | + if(!$upload_target_srl) { |
|
77 | + $upload_target_srl = intval(Context::get('upload_target_srl')); |
|
78 | + } |
|
65 | 79 | |
66 | 80 | // Exit a session if there is neither upload permission nor information |
67 | - if(!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
81 | + if(!$_SESSION['upload_info'][$editor_sequence]->enabled) { |
|
82 | + exit(); |
|
83 | + } |
|
68 | 84 | // Extract from session information if upload_target_srl is not specified |
69 | - if(!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
85 | + if(!$upload_target_srl) { |
|
86 | + $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
87 | + } |
|
70 | 88 | // Create if upload_target_srl is not defined in the session information |
71 | - if(!$upload_target_srl) $_SESSION['upload_info'][$editor_sequence]->upload_target_srl = $upload_target_srl = getNextSequence(); |
|
89 | + if(!$upload_target_srl) { |
|
90 | + $_SESSION['upload_info'][$editor_sequence]->upload_target_srl = $upload_target_srl = getNextSequence(); |
|
91 | + } |
|
72 | 92 | // Delete and then attempt to re-upload if file_srl is requested |
73 | 93 | $file_srl = Context::get('file_srl'); |
74 | - if($file_srl) $this->deleteFile($file_srl); |
|
94 | + if($file_srl) { |
|
95 | + $this->deleteFile($file_srl); |
|
96 | + } |
|
75 | 97 | |
76 | 98 | $file_info = Context::get('Filedata'); |
77 | 99 | // An error appears if not a normally uploaded file |
@@ -112,15 +134,16 @@ discard block |
||
112 | 134 | $source_src = $fileInfo->uploaded_filename; |
113 | 135 | $output_src = $source_src . '.resized' . strrchr($source_src,'.'); |
114 | 136 | |
115 | - if(!$height) $height = $width-1; |
|
137 | + if(!$height) { |
|
138 | + $height = $width-1; |
|
139 | + } |
|
116 | 140 | |
117 | 141 | if(FileHandler::createImageFile($source_src,$output_src,$width,$height,'','ratio')) |
118 | 142 | { |
119 | 143 | $output = new stdClass(); |
120 | 144 | $output->info = getimagesize($output_src); |
121 | 145 | $output->src = $output_src; |
122 | - } |
|
123 | - else |
|
146 | + } else |
|
124 | 147 | { |
125 | 148 | return new Object(-1,'msg_invalid_request'); |
126 | 149 | } |
@@ -163,7 +186,9 @@ discard block |
||
163 | 186 | { |
164 | 187 | $oFileModel = getModel('file'); |
165 | 188 | |
166 | - if(isset($this->grant->access) && $this->grant->access !== true) return new Object(-1, 'msg_not_permitted'); |
|
189 | + if(isset($this->grant->access) && $this->grant->access !== true) { |
|
190 | + return new Object(-1, 'msg_not_permitted'); |
|
191 | + } |
|
167 | 192 | |
168 | 193 | $file_srl = Context::get('file_srl'); |
169 | 194 | $sid = Context::get('sid'); |
@@ -172,9 +197,13 @@ discard block |
||
172 | 197 | $columnList = array('file_srl', 'sid', 'isvalid', 'source_filename', 'module_srl', 'uploaded_filename', 'file_size', 'member_srl', 'upload_target_srl', 'upload_target_type'); |
173 | 198 | $file_obj = $oFileModel->getFile($file_srl, $columnList); |
174 | 199 | // If the requested file information is incorrect, an error that file cannot be found appears |
175 | - if($file_obj->file_srl!=$file_srl || $file_obj->sid!=$sid) return $this->stop('msg_file_not_found'); |
|
200 | + if($file_obj->file_srl!=$file_srl || $file_obj->sid!=$sid) { |
|
201 | + return $this->stop('msg_file_not_found'); |
|
202 | + } |
|
176 | 203 | // Notify that file download is not allowed when standing-by(Only a top-administrator is permitted) |
177 | - if($logged_info->is_admin != 'Y' && $file_obj->isvalid!='Y') return $this->stop('msg_not_permitted_download'); |
|
204 | + if($logged_info->is_admin != 'Y' && $file_obj->isvalid!='Y') { |
|
205 | + return $this->stop('msg_not_permitted_download'); |
|
206 | + } |
|
178 | 207 | // File name |
179 | 208 | $filename = $file_obj->source_filename; |
180 | 209 | $file_module_config = $oFileModel->getFileModuleConfig($file_obj->module_srl); |
@@ -186,7 +215,9 @@ discard block |
||
186 | 215 | { |
187 | 216 | $allow_outlink_format_array = array(); |
188 | 217 | $allow_outlink_format_array = explode(',', $file_module_config->allow_outlink_format); |
189 | - if(!is_array($allow_outlink_format_array)) $allow_outlink_format_array[0] = $file_module_config->allow_outlink_format; |
|
218 | + if(!is_array($allow_outlink_format_array)) { |
|
219 | + $allow_outlink_format_array[0] = $file_module_config->allow_outlink_format; |
|
220 | + } |
|
190 | 221 | |
191 | 222 | foreach($allow_outlink_format_array as $val) |
192 | 223 | { |
@@ -208,7 +239,9 @@ discard block |
||
208 | 239 | { |
209 | 240 | $allow_outlink_site_array = array(); |
210 | 241 | $allow_outlink_site_array = explode("\n", $file_module_config->allow_outlink_site); |
211 | - if(!is_array($allow_outlink_site_array)) $allow_outlink_site_array[0] = $file_module_config->allow_outlink_site; |
|
242 | + if(!is_array($allow_outlink_site_array)) { |
|
243 | + $allow_outlink_site_array[0] = $file_module_config->allow_outlink_site; |
|
244 | + } |
|
212 | 245 | |
213 | 246 | foreach($allow_outlink_site_array as $val) |
214 | 247 | { |
@@ -220,23 +253,29 @@ discard block |
||
220 | 253 | } |
221 | 254 | } |
222 | 255 | } |
256 | + } else { |
|
257 | + $file_module_config->allow_outlink = 'Y'; |
|
223 | 258 | } |
224 | - else $file_module_config->allow_outlink = 'Y'; |
|
225 | 259 | } |
226 | - if($file_module_config->allow_outlink != 'Y') return $this->stop('msg_not_allowed_outlink'); |
|
260 | + if($file_module_config->allow_outlink != 'Y') { |
|
261 | + return $this->stop('msg_not_allowed_outlink'); |
|
262 | + } |
|
227 | 263 | } |
228 | 264 | |
229 | 265 | // Check if a permission for file download is granted |
230 | 266 | $downloadGrantCount = 0; |
231 | 267 | if(is_array($file_module_config->download_grant)) |
232 | 268 | { |
233 | - foreach($file_module_config->download_grant AS $value) |
|
234 | - if($value) $downloadGrantCount++; |
|
269 | + foreach($file_module_config->download_grant AS $value) { |
|
270 | + if($value) $downloadGrantCount++; |
|
271 | + } |
|
235 | 272 | } |
236 | 273 | |
237 | 274 | if(is_array($file_module_config->download_grant) && $downloadGrantCount>0) |
238 | 275 | { |
239 | - if(!Context::get('is_logged')) return $this->stop('msg_not_permitted_download'); |
|
276 | + if(!Context::get('is_logged')) { |
|
277 | + return $this->stop('msg_not_permitted_download'); |
|
278 | + } |
|
240 | 279 | $logged_info = Context::get('logged_info'); |
241 | 280 | if($logged_info->is_admin != 'Y') |
242 | 281 | { |
@@ -259,13 +298,17 @@ discard block |
||
259 | 298 | break; |
260 | 299 | } |
261 | 300 | } |
262 | - if(!$is_permitted) return $this->stop('msg_not_permitted_download'); |
|
301 | + if(!$is_permitted) { |
|
302 | + return $this->stop('msg_not_permitted_download'); |
|
303 | + } |
|
263 | 304 | } |
264 | 305 | } |
265 | 306 | } |
266 | 307 | // Call a trigger (before) |
267 | 308 | $output = ModuleHandler::triggerCall('file.downloadFile', 'before', $file_obj); |
268 | - if(!$output->toBool()) return $this->stop(($output->message)?$output->message:'msg_not_permitted_download'); |
|
309 | + if(!$output->toBool()) { |
|
310 | + return $this->stop(($output->message)?$output->message:'msg_not_permitted_download'); |
|
311 | + } |
|
269 | 312 | |
270 | 313 | |
271 | 314 | // 다운로드 후 (가상) |
@@ -289,16 +332,23 @@ discard block |
||
289 | 332 | $oFileModel = getModel('file'); |
290 | 333 | $file_srl = Context::get('file_srl'); |
291 | 334 | $file_key = Context::get('file_key'); |
292 | - if(strstr($_SERVER['HTTP_USER_AGENT'], "Android")) $is_android = true; |
|
335 | + if(strstr($_SERVER['HTTP_USER_AGENT'], "Android")) { |
|
336 | + $is_android = true; |
|
337 | + } |
|
293 | 338 | |
294 | - if($is_android && $_SESSION['__XE_FILE_KEY_AND__'][$file_srl]) $session_key = '__XE_FILE_KEY_AND__'; |
|
295 | - else $session_key = '__XE_FILE_KEY__'; |
|
339 | + if($is_android && $_SESSION['__XE_FILE_KEY_AND__'][$file_srl]) { |
|
340 | + $session_key = '__XE_FILE_KEY_AND__'; |
|
341 | + } else { |
|
342 | + $session_key = '__XE_FILE_KEY__'; |
|
343 | + } |
|
296 | 344 | $columnList = array('source_filename', 'uploaded_filename', 'file_size'); |
297 | 345 | $file_obj = $oFileModel->getFile($file_srl, $columnList); |
298 | 346 | |
299 | 347 | $uploaded_filename = $file_obj->uploaded_filename; |
300 | 348 | |
301 | - if(!file_exists($uploaded_filename)) return $this->stop('msg_file_not_found'); |
|
349 | + if(!file_exists($uploaded_filename)) { |
|
350 | + return $this->stop('msg_file_not_found'); |
|
351 | + } |
|
302 | 352 | |
303 | 353 | if(!$file_key || $_SESSION[$session_key][$file_srl] != $file_key) |
304 | 354 | { |
@@ -316,7 +366,9 @@ discard block |
||
316 | 366 | |
317 | 367 | if($is_android) |
318 | 368 | { |
319 | - if($_SESSION['__XE_FILE_KEY__'][$file_srl]) $_SESSION['__XE_FILE_KEY_AND__'][$file_srl] = $file_key; |
|
369 | + if($_SESSION['__XE_FILE_KEY__'][$file_srl]) { |
|
370 | + $_SESSION['__XE_FILE_KEY_AND__'][$file_srl] = $file_key; |
|
371 | + } |
|
320 | 372 | } |
321 | 373 | |
322 | 374 | unset($_SESSION[$session_key][$file_srl]); |
@@ -324,7 +376,9 @@ discard block |
||
324 | 376 | Context::close(); |
325 | 377 | |
326 | 378 | $fp = fopen($uploaded_filename, 'rb'); |
327 | - if(!$fp) return $this->stop('msg_file_not_found'); |
|
379 | + if(!$fp) { |
|
380 | + return $this->stop('msg_file_not_found'); |
|
381 | + } |
|
328 | 382 | |
329 | 383 | header("Cache-Control: "); |
330 | 384 | header("Pragma: "); |
@@ -338,10 +392,11 @@ discard block |
||
338 | 392 | // if file size is lager than 10MB, use fread function (#18675748) |
339 | 393 | if(filesize($uploaded_filename) > 1024 * 1024) |
340 | 394 | { |
341 | - while(!feof($fp)) echo fread($fp, 1024); |
|
395 | + while(!feof($fp)) { |
|
396 | + echo fread($fp, 1024); |
|
397 | + } |
|
342 | 398 | fclose($fp); |
343 | - } |
|
344 | - else |
|
399 | + } else |
|
345 | 400 | { |
346 | 401 | fpassthru($fp); |
347 | 402 | } |
@@ -360,9 +415,13 @@ discard block |
||
360 | 415 | $editor_sequence = Context::get('editor_sequence'); |
361 | 416 | $file_srl = Context::get('file_srl'); |
362 | 417 | $file_srls = Context::get('file_srls'); |
363 | - if($file_srls) $file_srl = $file_srls; |
|
418 | + if($file_srls) { |
|
419 | + $file_srl = $file_srls; |
|
420 | + } |
|
364 | 421 | // Exit a session if there is neither upload permission nor information |
365 | - if(!$_SESSION['upload_info'][$editor_sequence]->enabled) exit(); |
|
422 | + if(!$_SESSION['upload_info'][$editor_sequence]->enabled) { |
|
423 | + exit(); |
|
424 | + } |
|
366 | 425 | |
367 | 426 | $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
368 | 427 | |
@@ -370,26 +429,38 @@ discard block |
||
370 | 429 | $oFileModel = getModel('file'); |
371 | 430 | |
372 | 431 | $srls = explode(',',$file_srl); |
373 | - if(!count($srls)) return; |
|
432 | + if(!count($srls)) { |
|
433 | + return; |
|
434 | + } |
|
374 | 435 | |
375 | 436 | for($i=0;$i<count($srls);$i++) |
376 | 437 | { |
377 | 438 | $srl = (int)$srls[$i]; |
378 | - if(!$srl) continue; |
|
439 | + if(!$srl) { |
|
440 | + continue; |
|
441 | + } |
|
379 | 442 | |
380 | 443 | $args = new stdClass; |
381 | 444 | $args->file_srl = $srl; |
382 | 445 | $output = executeQuery('file.getFile', $args); |
383 | - if(!$output->toBool()) continue; |
|
446 | + if(!$output->toBool()) { |
|
447 | + continue; |
|
448 | + } |
|
384 | 449 | |
385 | 450 | $file_info = $output->data; |
386 | - if(!$file_info) continue; |
|
451 | + if(!$file_info) { |
|
452 | + continue; |
|
453 | + } |
|
387 | 454 | |
388 | 455 | $file_grant = $oFileModel->getFileGrant($file_info, $logged_info); |
389 | 456 | |
390 | - if(!$file_grant->is_deletable) continue; |
|
457 | + if(!$file_grant->is_deletable) { |
|
458 | + continue; |
|
459 | + } |
|
391 | 460 | |
392 | - if($upload_target_srl && $file_srl) $output = $this->deleteFile($file_srl); |
|
461 | + if($upload_target_srl && $file_srl) { |
|
462 | + $output = $this->deleteFile($file_srl); |
|
463 | + } |
|
393 | 464 | } |
394 | 465 | } |
395 | 466 | |
@@ -400,28 +471,36 @@ discard block |
||
400 | 471 | */ |
401 | 472 | function procFileGetList() |
402 | 473 | { |
403 | - if(!Context::get('is_logged')) return new Object(-1,'msg_not_permitted'); |
|
474 | + if(!Context::get('is_logged')) { |
|
475 | + return new Object(-1,'msg_not_permitted'); |
|
476 | + } |
|
404 | 477 | $fileSrls = Context::get('file_srls'); |
405 | - if($fileSrls) $fileSrlList = explode(',', $fileSrls); |
|
478 | + if($fileSrls) { |
|
479 | + $fileSrlList = explode(',', $fileSrls); |
|
480 | + } |
|
406 | 481 | |
407 | 482 | global $lang; |
408 | 483 | if(count($fileSrlList) > 0) |
409 | 484 | { |
410 | 485 | $oFileModel = getModel('file'); |
411 | 486 | $fileList = $oFileModel->getFile($fileSrlList); |
412 | - if(!is_array($fileList)) $fileList = array($fileList); |
|
487 | + if(!is_array($fileList)) { |
|
488 | + $fileList = array($fileList); |
|
489 | + } |
|
413 | 490 | |
414 | 491 | if(is_array($fileList)) |
415 | 492 | { |
416 | 493 | foreach($fileList AS $key=>$value) |
417 | 494 | { |
418 | 495 | $value->human_file_size = FileHandler::filesize($value->file_size); |
419 | - if($value->isvalid=='Y') $value->validName = $lang->is_valid; |
|
420 | - else $value->validName = $lang->is_stand_by; |
|
496 | + if($value->isvalid=='Y') { |
|
497 | + $value->validName = $lang->is_valid; |
|
498 | + } else { |
|
499 | + $value->validName = $lang->is_stand_by; |
|
500 | + } |
|
421 | 501 | } |
422 | 502 | } |
423 | - } |
|
424 | - else |
|
503 | + } else |
|
425 | 504 | { |
426 | 505 | $fileList = array(); |
427 | 506 | $this->setMessage($lang->no_files); |
@@ -438,7 +517,9 @@ discard block |
||
438 | 517 | function triggerCheckAttached(&$obj) |
439 | 518 | { |
440 | 519 | $document_srl = $obj->document_srl; |
441 | - if(!$document_srl) return new Object(); |
|
520 | + if(!$document_srl) { |
|
521 | + return new Object(); |
|
522 | + } |
|
442 | 523 | // Get numbers of attachments |
443 | 524 | $oFileModel = getModel('file'); |
444 | 525 | $obj->uploaded_count = $oFileModel->getFilesCount($document_srl); |
@@ -455,10 +536,14 @@ discard block |
||
455 | 536 | function triggerAttachFiles(&$obj) |
456 | 537 | { |
457 | 538 | $document_srl = $obj->document_srl; |
458 | - if(!$document_srl) return new Object(); |
|
539 | + if(!$document_srl) { |
|
540 | + return new Object(); |
|
541 | + } |
|
459 | 542 | |
460 | 543 | $output = $this->setFilesValid($document_srl); |
461 | - if(!$output->toBool()) return $output; |
|
544 | + if(!$output->toBool()) { |
|
545 | + return $output; |
|
546 | + } |
|
462 | 547 | |
463 | 548 | return new Object(); |
464 | 549 | } |
@@ -472,7 +557,9 @@ discard block |
||
472 | 557 | function triggerDeleteAttached(&$obj) |
473 | 558 | { |
474 | 559 | $document_srl = $obj->document_srl; |
475 | - if(!$document_srl) return new Object(); |
|
560 | + if(!$document_srl) { |
|
561 | + return new Object(); |
|
562 | + } |
|
476 | 563 | |
477 | 564 | $output = $this->deleteFiles($document_srl); |
478 | 565 | return $output; |
@@ -487,7 +574,9 @@ discard block |
||
487 | 574 | function triggerCommentCheckAttached(&$obj) |
488 | 575 | { |
489 | 576 | $comment_srl = $obj->comment_srl; |
490 | - if(!$comment_srl) return new Object(); |
|
577 | + if(!$comment_srl) { |
|
578 | + return new Object(); |
|
579 | + } |
|
491 | 580 | // Get numbers of attachments |
492 | 581 | $oFileModel = getModel('file'); |
493 | 582 | $obj->uploaded_count = $oFileModel->getFilesCount($comment_srl); |
@@ -505,10 +594,14 @@ discard block |
||
505 | 594 | { |
506 | 595 | $comment_srl = $obj->comment_srl; |
507 | 596 | $uploaded_count = $obj->uploaded_count; |
508 | - if(!$comment_srl || !$uploaded_count) return new Object(); |
|
597 | + if(!$comment_srl || !$uploaded_count) { |
|
598 | + return new Object(); |
|
599 | + } |
|
509 | 600 | |
510 | 601 | $output = $this->setFilesValid($comment_srl); |
511 | - if(!$output->toBool()) return $output; |
|
602 | + if(!$output->toBool()) { |
|
603 | + return $output; |
|
604 | + } |
|
512 | 605 | |
513 | 606 | return new Object(); |
514 | 607 | } |
@@ -522,9 +615,13 @@ discard block |
||
522 | 615 | function triggerCommentDeleteAttached(&$obj) |
523 | 616 | { |
524 | 617 | $comment_srl = $obj->comment_srl; |
525 | - if(!$comment_srl) return new Object(); |
|
618 | + if(!$comment_srl) { |
|
619 | + return new Object(); |
|
620 | + } |
|
526 | 621 | |
527 | - if($obj->isMoveToTrash) return new Object(); |
|
622 | + if($obj->isMoveToTrash) { |
|
623 | + return new Object(); |
|
624 | + } |
|
528 | 625 | |
529 | 626 | $output = $this->deleteFiles($comment_srl); |
530 | 627 | return $output; |
@@ -539,7 +636,9 @@ discard block |
||
539 | 636 | function triggerDeleteModuleFiles(&$obj) |
540 | 637 | { |
541 | 638 | $module_srl = $obj->module_srl; |
542 | - if(!$module_srl) return new Object(); |
|
639 | + if(!$module_srl) { |
|
640 | + return new Object(); |
|
641 | + } |
|
543 | 642 | |
544 | 643 | $oFileController = getAdminController('file'); |
545 | 644 | return $oFileController->deleteModuleFiles($module_srl); |
@@ -614,7 +713,9 @@ discard block |
||
614 | 713 | $trigger_obj->module_srl = $module_srl; |
615 | 714 | $trigger_obj->upload_target_srl = $upload_target_srl; |
616 | 715 | $output = ModuleHandler::triggerCall('file.insertFile', 'before', $trigger_obj); |
617 | - if(!$output->toBool()) return $output; |
|
716 | + if(!$output->toBool()) { |
|
717 | + return $output; |
|
718 | + } |
|
618 | 719 | |
619 | 720 | // A workaround for Firefox upload bug |
620 | 721 | if(preg_match('/^=\?UTF-8\?B\?(.+)\?=$/i', $file_info['name'], $match)) |
@@ -652,13 +753,17 @@ discard block |
||
652 | 753 | $allowed_filesize = $config->allowed_filesize * 1024 * 1024; |
653 | 754 | $allowed_attach_size = $config->allowed_attach_size * 1024 * 1024; |
654 | 755 | // An error appears if file size exceeds a limit |
655 | - if($allowed_filesize < filesize($file_info['tmp_name'])) return new Object(-1, 'msg_exceeds_limit_size'); |
|
756 | + if($allowed_filesize < filesize($file_info['tmp_name'])) { |
|
757 | + return new Object(-1, 'msg_exceeds_limit_size'); |
|
758 | + } |
|
656 | 759 | // Get total file size of all attachements (from DB) |
657 | 760 | $size_args = new stdClass; |
658 | 761 | $size_args->upload_target_srl = $upload_target_srl; |
659 | 762 | $output = executeQuery('file.getAttachedFileSize', $size_args); |
660 | 763 | $attached_size = (int)$output->data->attached_size + filesize($file_info['tmp_name']); |
661 | - if($attached_size > $allowed_attach_size) return new Object(-1, 'msg_exceeds_limit_size'); |
|
764 | + if($attached_size > $allowed_attach_size) { |
|
765 | + return new Object(-1, 'msg_exceeds_limit_size'); |
|
766 | + } |
|
662 | 767 | } |
663 | 768 | } |
664 | 769 | |
@@ -688,18 +793,21 @@ discard block |
||
688 | 793 | $idx++; |
689 | 794 | } |
690 | 795 | $direct_download = 'Y'; |
691 | - } |
|
692 | - else |
|
796 | + } else |
|
693 | 797 | { |
694 | 798 | $path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl,3)); |
695 | 799 | $filename = $path.$random->createSecureSalt(32, 'hex'); |
696 | 800 | $direct_download = 'N'; |
697 | 801 | } |
698 | 802 | // Create a directory |
699 | - if(!FileHandler::makeDir($path)) return new Object(-1,'msg_not_permitted_create'); |
|
803 | + if(!FileHandler::makeDir($path)) { |
|
804 | + return new Object(-1,'msg_not_permitted_create'); |
|
805 | + } |
|
700 | 806 | |
701 | 807 | // Check uploaded file |
702 | - if(!checkUploadedFile($file_info['tmp_name'])) return new Object(-1,'msg_file_upload_error'); |
|
808 | + if(!checkUploadedFile($file_info['tmp_name'])) { |
|
809 | + return new Object(-1,'msg_file_upload_error'); |
|
810 | + } |
|
703 | 811 | |
704 | 812 | // Get random number generator |
705 | 813 | $random = new Password(); |
@@ -713,13 +821,14 @@ discard block |
||
713 | 821 | $filename = $path.$random->createSecureSalt(32, 'hex').'.'.$ext; |
714 | 822 | @copy($file_info['tmp_name'], $filename); |
715 | 823 | } |
716 | - } |
|
717 | - else |
|
824 | + } else |
|
718 | 825 | { |
719 | 826 | if(!@move_uploaded_file($file_info['tmp_name'], $filename)) |
720 | 827 | { |
721 | 828 | $filename = $path.$random->createSecureSalt(32, 'hex').'.'.$ext; |
722 | - if(!@move_uploaded_file($file_info['tmp_name'], $filename)) return new Object(-1,'msg_file_upload_error'); |
|
829 | + if(!@move_uploaded_file($file_info['tmp_name'], $filename)) { |
|
830 | + return new Object(-1,'msg_file_upload_error'); |
|
831 | + } |
|
723 | 832 | } |
724 | 833 | } |
725 | 834 | // Get member information |
@@ -740,10 +849,14 @@ discard block |
||
740 | 849 | $args->sid = $random->createSecureSalt(32, 'hex'); |
741 | 850 | |
742 | 851 | $output = executeQuery('file.insertFile', $args); |
743 | - if(!$output->toBool()) return $output; |
|
852 | + if(!$output->toBool()) { |
|
853 | + return $output; |
|
854 | + } |
|
744 | 855 | // Call a trigger (after) |
745 | 856 | $trigger_output = ModuleHandler::triggerCall('file.insertFile', 'after', $args); |
746 | - if(!$trigger_output->toBool()) return $trigger_output; |
|
857 | + if(!$trigger_output->toBool()) { |
|
858 | + return $trigger_output; |
|
859 | + } |
|
747 | 860 | |
748 | 861 | $_SESSION['__XE_UPLOADING_FILES_INFO__'][$args->file_srl] = true; |
749 | 862 | |
@@ -786,10 +899,14 @@ discard block |
||
786 | 899 | */ |
787 | 900 | function deleteFile($file_srl) |
788 | 901 | { |
789 | - if(!$file_srl) return; |
|
902 | + if(!$file_srl) { |
|
903 | + return; |
|
904 | + } |
|
790 | 905 | |
791 | 906 | $srls = (is_array($file_srl)) ? $file_srl : explode(',', $file_srl); |
792 | - if(!count($srls)) return; |
|
907 | + if(!count($srls)) { |
|
908 | + return; |
|
909 | + } |
|
793 | 910 | |
794 | 911 | $oDocumentController = getController('document'); |
795 | 912 | $documentSrlList = array(); |
@@ -824,15 +941,21 @@ discard block |
||
824 | 941 | // Call a trigger (before) |
825 | 942 | $trigger_obj = $output->data; |
826 | 943 | $output = ModuleHandler::triggerCall('file.deleteFile', 'before', $trigger_obj); |
827 | - if(!$output->toBool()) return $output; |
|
944 | + if(!$output->toBool()) { |
|
945 | + return $output; |
|
946 | + } |
|
828 | 947 | |
829 | 948 | // Remove from the DB |
830 | 949 | $output = executeQuery('file.deleteFile', $args); |
831 | - if(!$output->toBool()) return $output; |
|
950 | + if(!$output->toBool()) { |
|
951 | + return $output; |
|
952 | + } |
|
832 | 953 | |
833 | 954 | // Call a trigger (after) |
834 | 955 | $trigger_output = ModuleHandler::triggerCall('file.deleteFile', 'after', $trigger_obj); |
835 | - if(!$trigger_output->toBool()) return $trigger_output; |
|
956 | + if(!$trigger_output->toBool()) { |
|
957 | + return $trigger_output; |
|
958 | + } |
|
836 | 959 | |
837 | 960 | // If successfully deleted, remove the file |
838 | 961 | FileHandler::removeFile($uploaded_filename); |
@@ -856,7 +979,9 @@ discard block |
||
856 | 979 | $columnList = array('file_srl', 'uploaded_filename', 'module_srl'); |
857 | 980 | $file_list = $oFileModel->getFiles($upload_target_srl, $columnList); |
858 | 981 | // Success returned if no attachement exists |
859 | - if(!is_array($file_list)||!count($file_list)) return new Object(); |
|
982 | + if(!is_array($file_list)||!count($file_list)) { |
|
983 | + return new Object(); |
|
984 | + } |
|
860 | 985 | |
861 | 986 | // Delete the file |
862 | 987 | $path = array(); |
@@ -867,14 +992,18 @@ discard block |
||
867 | 992 | |
868 | 993 | $uploaded_filename = $file_list[$i]->uploaded_filename; |
869 | 994 | $path_info = pathinfo($uploaded_filename); |
870 | - if(!in_array($path_info['dirname'], $path)) $path[] = $path_info['dirname']; |
|
995 | + if(!in_array($path_info['dirname'], $path)) { |
|
996 | + $path[] = $path_info['dirname']; |
|
997 | + } |
|
871 | 998 | } |
872 | 999 | |
873 | 1000 | // Remove from the DB |
874 | 1001 | $args = new stdClass(); |
875 | 1002 | $args->upload_target_srl = $upload_target_srl; |
876 | 1003 | $output = executeQuery('file.deleteFiles', $args); |
877 | - if(!$output->toBool()) return $output; |
|
1004 | + if(!$output->toBool()) { |
|
1005 | + return $output; |
|
1006 | + } |
|
878 | 1007 | |
879 | 1008 | // Remove a file directory of the document |
880 | 1009 | for($i=0, $c=count($path); $i<$c; $i++) |
@@ -895,11 +1024,15 @@ discard block |
||
895 | 1024 | */ |
896 | 1025 | function moveFile($source_srl, $target_module_srl, $target_srl) |
897 | 1026 | { |
898 | - if($source_srl == $target_srl) return; |
|
1027 | + if($source_srl == $target_srl) { |
|
1028 | + return; |
|
1029 | + } |
|
899 | 1030 | |
900 | 1031 | $oFileModel = getModel('file'); |
901 | 1032 | $file_list = $oFileModel->getFiles($source_srl); |
902 | - if(!$file_list) return; |
|
1033 | + if(!$file_list) { |
|
1034 | + return; |
|
1035 | + } |
|
903 | 1036 | |
904 | 1037 | $file_count = count($file_list); |
905 | 1038 | |
@@ -913,15 +1046,16 @@ discard block |
||
913 | 1046 | { |
914 | 1047 | $path = sprintf("./files/attach/images/%s/%s/", $target_module_srl,$target_srl); |
915 | 1048 | $new_file = $path.$file_info->source_filename; |
916 | - } |
|
917 | - else |
|
1049 | + } else |
|
918 | 1050 | { |
919 | 1051 | $path = sprintf("./files/attach/binaries/%s/%s/", $target_module_srl, $target_srl); |
920 | 1052 | $random = new Password(); |
921 | 1053 | $new_file = $path.$random->createSecureSalt(32, 'hex'); |
922 | 1054 | } |
923 | 1055 | // Pass if a target document to move is same |
924 | - if($old_file == $new_file) continue; |
|
1056 | + if($old_file == $new_file) { |
|
1057 | + continue; |
|
1058 | + } |
|
925 | 1059 | // Create a directory |
926 | 1060 | FileHandler::makeDir($path); |
927 | 1061 | // Move the file |
@@ -941,16 +1075,22 @@ discard block |
||
941 | 1075 | $vars = Context::getRequestVars(); |
942 | 1076 | $logged_info = Context::get('logged_info'); |
943 | 1077 | |
944 | - if(!$vars->editor_sequence) return new Object(-1, 'msg_invalid_request'); |
|
1078 | + if(!$vars->editor_sequence) { |
|
1079 | + return new Object(-1, 'msg_invalid_request'); |
|
1080 | + } |
|
945 | 1081 | |
946 | 1082 | $upload_target_srl = $_SESSION['upload_info'][$vars->editor_sequence]->upload_target_srl; |
947 | 1083 | |
948 | 1084 | $oFileModel = getModel('file'); |
949 | 1085 | $file_info = $oFileModel->getFile($vars->file_srl); |
950 | 1086 | |
951 | - if(!$file_info) return new Object(-1, 'msg_not_founded'); |
|
1087 | + if(!$file_info) { |
|
1088 | + return new Object(-1, 'msg_not_founded'); |
|
1089 | + } |
|
952 | 1090 | |
953 | - if(!$this->manager && !$file_info->member_srl === $logged_info->member_srl) return new Object(-1, 'msg_not_permitted'); |
|
1091 | + if(!$this->manager && !$file_info->member_srl === $logged_info->member_srl) { |
|
1092 | + return new Object(-1, 'msg_not_permitted'); |
|
1093 | + } |
|
954 | 1094 | |
955 | 1095 | $args = new stdClass(); |
956 | 1096 | $args->file_srl = $vars->file_srl; |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | * Get file configurations |
114 | 114 | * |
115 | 115 | * @param int $module_srl If set this, returns specific module's configuration. Otherwise returns global configuration. |
116 | - * @return object Returns configuration. |
|
116 | + * @return stdClass Returns configuration. |
|
117 | 117 | */ |
118 | 118 | function getFileConfig($module_srl = null) |
119 | 119 | { |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | /** |
232 | 232 | * Return configurations of the attachement (it automatically checks if an administrator is) |
233 | 233 | * |
234 | - * @return object Returns a file configuration of current module. If user is admin, returns PHP's max file size and allow all file types. |
|
234 | + * @return stdClass Returns a file configuration of current module. If user is admin, returns PHP's max file size and allow all file types. |
|
235 | 235 | */ |
236 | 236 | function getUploadConfig() |
237 | 237 | { |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | * Return file configuration of the module |
286 | 286 | * |
287 | 287 | * @param int $module_srl The sequence of module to get configuration |
288 | - * @return object |
|
288 | + * @return stdClass |
|
289 | 289 | */ |
290 | 290 | function getFileModuleConfig($module_srl) |
291 | 291 | { |
@@ -29,24 +29,24 @@ discard block |
||
29 | 29 | $mid = Context::get('mid'); |
30 | 30 | $editor_sequence = Context::get('editor_sequence'); |
31 | 31 | $upload_target_srl = Context::get('upload_target_srl'); |
32 | - if(!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
32 | + if (!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
33 | 33 | |
34 | - if($upload_target_srl) |
|
34 | + if ($upload_target_srl) |
|
35 | 35 | { |
36 | 36 | $tmp_files = $this->getFiles($upload_target_srl); |
37 | 37 | $file_count = count($tmp_files); |
38 | 38 | |
39 | - for($i=0;$i<$file_count;$i++) |
|
39 | + for ($i = 0; $i < $file_count; $i++) |
|
40 | 40 | { |
41 | 41 | $file_info = $tmp_files[$i]; |
42 | - if(!$file_info->file_srl) continue; |
|
42 | + if (!$file_info->file_srl) continue; |
|
43 | 43 | |
44 | 44 | $obj = new stdClass; |
45 | 45 | $obj->file_srl = $file_info->file_srl; |
46 | 46 | $obj->source_filename = $file_info->source_filename; |
47 | 47 | $obj->file_size = $file_info->file_size; |
48 | 48 | $obj->disp_file_size = FileHandler::filesize($file_info->file_size); |
49 | - if($file_info->direct_download=='N') $obj->download_url = $this->getDownloadUrl($file_info->file_srl, $file_info->sid, $file_info->module_srl); |
|
49 | + if ($file_info->direct_download == 'N') $obj->download_url = $this->getDownloadUrl($file_info->file_srl, $file_info->sid, $file_info->module_srl); |
|
50 | 50 | else $obj->download_url = str_replace('./', '', $file_info->uploaded_filename); |
51 | 51 | $obj->direct_download = $file_info->direct_download; |
52 | 52 | $obj->cover_image = ($file_info->cover_image === 'Y') ? true : false; |
@@ -66,17 +66,17 @@ discard block |
||
66 | 66 | //$config = $oModuleModel->getModuleInfoByMid($mid); //perhaps config varialbles not used |
67 | 67 | |
68 | 68 | $file_config = $this->getUploadConfig(); |
69 | - $left_size = $file_config->allowed_attach_size*1024*1024 - $attached_size; |
|
69 | + $left_size = $file_config->allowed_attach_size * 1024 * 1024 - $attached_size; |
|
70 | 70 | // Settings of required information |
71 | 71 | $attached_size = FileHandler::filesize($attached_size); |
72 | - $allowed_attach_size = FileHandler::filesize($file_config->allowed_attach_size*1024*1024); |
|
73 | - $allowed_filesize = FileHandler::filesize($file_config->allowed_filesize*1024*1024); |
|
72 | + $allowed_attach_size = FileHandler::filesize($file_config->allowed_attach_size * 1024 * 1024); |
|
73 | + $allowed_filesize = FileHandler::filesize($file_config->allowed_filesize * 1024 * 1024); |
|
74 | 74 | $allowed_filetypes = $file_config->allowed_filetypes; |
75 | - $this->add("files",$files); |
|
76 | - $this->add("editor_sequence",$editor_sequence); |
|
77 | - $this->add("upload_target_srl",$upload_target_srl); |
|
78 | - $this->add("upload_status",$upload_status); |
|
79 | - $this->add("left_size",$left_size); |
|
75 | + $this->add("files", $files); |
|
76 | + $this->add("editor_sequence", $editor_sequence); |
|
77 | + $this->add("upload_target_srl", $upload_target_srl); |
|
78 | + $this->add("upload_status", $upload_status); |
|
79 | + $this->add("left_size", $left_size); |
|
80 | 80 | $this->add('attached_size', $attached_size); |
81 | 81 | $this->add('allowed_attach_size', $allowed_attach_size); |
82 | 82 | $this->add('allowed_filesize', $allowed_filesize); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | $args = new stdClass(); |
95 | 95 | $args->upload_target_srl = $upload_target_srl; |
96 | 96 | $output = executeQuery('file.getFilesCount', $args); |
97 | - return (int)$output->data->count; |
|
97 | + return (int) $output->data->count; |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | /** |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | * @param string $sid |
105 | 105 | * @return string Returns a url |
106 | 106 | */ |
107 | - function getDownloadUrl($file_srl, $sid, $module_srl="") |
|
107 | + function getDownloadUrl($file_srl, $sid, $module_srl = "") |
|
108 | 108 | { |
109 | 109 | return sprintf('?module=%s&act=%s&file_srl=%s&sid=%s&module_srl=%s', 'file', 'procFileDownload', $file_srl, $sid, $module_srl); |
110 | 110 | } |
@@ -122,12 +122,12 @@ discard block |
||
122 | 122 | |
123 | 123 | $file_module_config = $oModuleModel->getModuleConfig('file'); |
124 | 124 | |
125 | - if($module_srl) $file_config = $oModuleModel->getModulePartConfig('file',$module_srl); |
|
126 | - if(!$file_config) $file_config = $file_module_config; |
|
125 | + if ($module_srl) $file_config = $oModuleModel->getModulePartConfig('file', $module_srl); |
|
126 | + if (!$file_config) $file_config = $file_module_config; |
|
127 | 127 | |
128 | 128 | $config = new stdClass(); |
129 | 129 | |
130 | - if($file_config) |
|
130 | + if ($file_config) |
|
131 | 131 | { |
132 | 132 | $config->allowed_filesize = $file_config->allowed_filesize; |
133 | 133 | $config->allowed_attach_size = $file_config->allowed_attach_size; |
@@ -138,19 +138,19 @@ discard block |
||
138 | 138 | $config->allow_outlink_format = $file_config->allow_outlink_format; |
139 | 139 | } |
140 | 140 | // Property for all files comes first than each property |
141 | - if(!$config->allowed_filesize) $config->allowed_filesize = $file_module_config->allowed_filesize; |
|
142 | - if(!$config->allowed_attach_size) $config->allowed_attach_size = $file_module_config->allowed_attach_size; |
|
143 | - if(!$config->allowed_filetypes) $config->allowed_filetypes = $file_module_config->allowed_filetypes; |
|
144 | - if(!$config->allow_outlink) $config->allow_outlink = $file_module_config->allow_outlink; |
|
145 | - if(!$config->allow_outlink_site) $config->allow_outlink_site = $file_module_config->allow_outlink_site; |
|
146 | - if(!$config->allow_outlink_format) $config->allow_outlink_format = $file_module_config->allow_outlink_format; |
|
147 | - if(!$config->download_grant) $config->download_grant = $file_module_config->download_grant; |
|
141 | + if (!$config->allowed_filesize) $config->allowed_filesize = $file_module_config->allowed_filesize; |
|
142 | + if (!$config->allowed_attach_size) $config->allowed_attach_size = $file_module_config->allowed_attach_size; |
|
143 | + if (!$config->allowed_filetypes) $config->allowed_filetypes = $file_module_config->allowed_filetypes; |
|
144 | + if (!$config->allow_outlink) $config->allow_outlink = $file_module_config->allow_outlink; |
|
145 | + if (!$config->allow_outlink_site) $config->allow_outlink_site = $file_module_config->allow_outlink_site; |
|
146 | + if (!$config->allow_outlink_format) $config->allow_outlink_format = $file_module_config->allow_outlink_format; |
|
147 | + if (!$config->download_grant) $config->download_grant = $file_module_config->download_grant; |
|
148 | 148 | // Default setting if not exists |
149 | - if(!$config->allowed_filesize) $config->allowed_filesize = '2'; |
|
150 | - if(!$config->allowed_attach_size) $config->allowed_attach_size = '3'; |
|
151 | - if(!$config->allowed_filetypes) $config->allowed_filetypes = '*.*'; |
|
152 | - if(!$config->allow_outlink) $config->allow_outlink = 'Y'; |
|
153 | - if(!$config->download_grant) $config->download_grant = array(); |
|
149 | + if (!$config->allowed_filesize) $config->allowed_filesize = '2'; |
|
150 | + if (!$config->allowed_attach_size) $config->allowed_attach_size = '3'; |
|
151 | + if (!$config->allowed_filetypes) $config->allowed_filetypes = '*.*'; |
|
152 | + if (!$config->allow_outlink) $config->allow_outlink = 'Y'; |
|
153 | + if (!$config->download_grant) $config->download_grant = array(); |
|
154 | 154 | |
155 | 155 | return $config; |
156 | 156 | } |
@@ -167,10 +167,10 @@ discard block |
||
167 | 167 | $args = new stdClass(); |
168 | 168 | $args->file_srl = $file_srl; |
169 | 169 | $output = executeQueryArray('file.getFile', $args, $columnList); |
170 | - if(!$output->toBool()) return $output; |
|
170 | + if (!$output->toBool()) return $output; |
|
171 | 171 | |
172 | 172 | // old version compatibility |
173 | - if(count($output->data) == 1) |
|
173 | + if (count($output->data) == 1) |
|
174 | 174 | { |
175 | 175 | $file = $output->data[0]; |
176 | 176 | $file->download_url = $this->getDownloadUrl($file->file_srl, $file->sid, $file->module_srl); |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | { |
182 | 182 | $fileList = array(); |
183 | 183 | |
184 | - if(is_array($output->data)) |
|
184 | + if (is_array($output->data)) |
|
185 | 185 | { |
186 | - foreach($output->data as $key=>$value) |
|
186 | + foreach ($output->data as $key=>$value) |
|
187 | 187 | { |
188 | 188 | $file = $value; |
189 | 189 | $file->download_url = $this->getDownloadUrl($file->file_srl, $file->sid, $file->module_srl); |
@@ -207,16 +207,16 @@ discard block |
||
207 | 207 | $args = new stdClass(); |
208 | 208 | $args->upload_target_srl = $upload_target_srl; |
209 | 209 | $args->sort_index = $sortIndex; |
210 | - if($ckValid) $args->isvalid = 'Y'; |
|
210 | + if ($ckValid) $args->isvalid = 'Y'; |
|
211 | 211 | $output = executeQuery('file.getFiles', $args, $columnList); |
212 | - if(!$output->data) return; |
|
212 | + if (!$output->data) return; |
|
213 | 213 | |
214 | 214 | $file_list = $output->data; |
215 | 215 | |
216 | - if($file_list && !is_array($file_list)) $file_list = array($file_list); |
|
216 | + if ($file_list && !is_array($file_list)) $file_list = array($file_list); |
|
217 | 217 | |
218 | 218 | $file_count = count($file_list); |
219 | - for($i=0;$i<$file_count;$i++) |
|
219 | + for ($i = 0; $i < $file_count; $i++) |
|
220 | 220 | { |
221 | 221 | $file = $file_list[$i]; |
222 | 222 | $file->source_filename = stripslashes($file->source_filename); |
@@ -239,14 +239,14 @@ discard block |
||
239 | 239 | |
240 | 240 | $module_srl = Context::get('module_srl'); |
241 | 241 | // Get the current module if module_srl doesn't exist |
242 | - if(!$module_srl) |
|
242 | + if (!$module_srl) |
|
243 | 243 | { |
244 | 244 | $current_module_info = Context::get('current_module_info'); |
245 | 245 | $module_srl = $current_module_info->module_srl; |
246 | 246 | } |
247 | 247 | $file_config = $this->getFileConfig($module_srl); |
248 | 248 | |
249 | - if($logged_info->is_admin == 'Y') |
|
249 | + if ($logged_info->is_admin == 'Y') |
|
250 | 250 | { |
251 | 251 | $iniPostMaxSize = FileHandler::returnbytes(ini_get('post_max_size')); |
252 | 252 | $iniUploadMaxSize = FileHandler::returnbytes(ini_get('upload_max_filesize')); |
@@ -272,9 +272,9 @@ discard block |
||
272 | 272 | '%s : %s/ %s<br /> %s : %s (%s : %s)', |
273 | 273 | Context::getLang('allowed_attach_size'), |
274 | 274 | FileHandler::filesize($attached_size), |
275 | - FileHandler::filesize($file_config->allowed_attach_size*1024*1024), |
|
275 | + FileHandler::filesize($file_config->allowed_attach_size * 1024 * 1024), |
|
276 | 276 | Context::getLang('allowed_filesize'), |
277 | - FileHandler::filesize($file_config->allowed_filesize*1024*1024), |
|
277 | + FileHandler::filesize($file_config->allowed_filesize * 1024 * 1024), |
|
278 | 278 | Context::getLang('allowed_filetypes'), |
279 | 279 | $file_config->allowed_filetypes |
280 | 280 | ); |
@@ -301,9 +301,9 @@ discard block |
||
301 | 301 | */ |
302 | 302 | function getFileGrant($file_info, $member_info) |
303 | 303 | { |
304 | - if(!$file_info) return null; |
|
304 | + if (!$file_info) return null; |
|
305 | 305 | |
306 | - if($_SESSION['__XE_UPLOADING_FILES_INFO__'][$file_info->file_srl]) |
|
306 | + if ($_SESSION['__XE_UPLOADING_FILES_INFO__'][$file_info->file_srl]) |
|
307 | 307 | { |
308 | 308 | $file_grant->is_deletable = true; |
309 | 309 | return $file_grant; |
@@ -314,7 +314,7 @@ discard block |
||
314 | 314 | |
315 | 315 | $oDocumentModel = getModel('document'); |
316 | 316 | $oDocument = $oDocumentModel->getDocument($file_info->upload_target_srl); |
317 | - if($oDocument->isExists()) $document_grant = $oDocument->isGranted(); |
|
317 | + if ($oDocument->isExists()) $document_grant = $oDocument->isGranted(); |
|
318 | 318 | |
319 | 319 | $file_grant->is_deletable = ($document_grant || $member_info->is_admin == 'Y' || $member_info->member_srl == $file_info->member_srl || $grant->manager); |
320 | 320 |
@@ -29,7 +29,9 @@ discard block |
||
29 | 29 | $mid = Context::get('mid'); |
30 | 30 | $editor_sequence = Context::get('editor_sequence'); |
31 | 31 | $upload_target_srl = Context::get('upload_target_srl'); |
32 | - if(!$upload_target_srl) $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
32 | + if(!$upload_target_srl) { |
|
33 | + $upload_target_srl = $_SESSION['upload_info'][$editor_sequence]->upload_target_srl; |
|
34 | + } |
|
33 | 35 | |
34 | 36 | if($upload_target_srl) |
35 | 37 | { |
@@ -39,22 +41,26 @@ discard block |
||
39 | 41 | for($i=0;$i<$file_count;$i++) |
40 | 42 | { |
41 | 43 | $file_info = $tmp_files[$i]; |
42 | - if(!$file_info->file_srl) continue; |
|
44 | + if(!$file_info->file_srl) { |
|
45 | + continue; |
|
46 | + } |
|
43 | 47 | |
44 | 48 | $obj = new stdClass; |
45 | 49 | $obj->file_srl = $file_info->file_srl; |
46 | 50 | $obj->source_filename = $file_info->source_filename; |
47 | 51 | $obj->file_size = $file_info->file_size; |
48 | 52 | $obj->disp_file_size = FileHandler::filesize($file_info->file_size); |
49 | - if($file_info->direct_download=='N') $obj->download_url = $this->getDownloadUrl($file_info->file_srl, $file_info->sid, $file_info->module_srl); |
|
50 | - else $obj->download_url = str_replace('./', '', $file_info->uploaded_filename); |
|
53 | + if($file_info->direct_download=='N') { |
|
54 | + $obj->download_url = $this->getDownloadUrl($file_info->file_srl, $file_info->sid, $file_info->module_srl); |
|
55 | + } else { |
|
56 | + $obj->download_url = str_replace('./', '', $file_info->uploaded_filename); |
|
57 | + } |
|
51 | 58 | $obj->direct_download = $file_info->direct_download; |
52 | 59 | $obj->cover_image = ($file_info->cover_image === 'Y') ? true : false; |
53 | 60 | $files[] = $obj; |
54 | 61 | $attached_size += $file_info->file_size; |
55 | 62 | } |
56 | - } |
|
57 | - else |
|
63 | + } else |
|
58 | 64 | { |
59 | 65 | $upload_target_srl = 0; |
60 | 66 | $attached_size = 0; |
@@ -122,8 +128,12 @@ discard block |
||
122 | 128 | |
123 | 129 | $file_module_config = $oModuleModel->getModuleConfig('file'); |
124 | 130 | |
125 | - if($module_srl) $file_config = $oModuleModel->getModulePartConfig('file',$module_srl); |
|
126 | - if(!$file_config) $file_config = $file_module_config; |
|
131 | + if($module_srl) { |
|
132 | + $file_config = $oModuleModel->getModulePartConfig('file',$module_srl); |
|
133 | + } |
|
134 | + if(!$file_config) { |
|
135 | + $file_config = $file_module_config; |
|
136 | + } |
|
127 | 137 | |
128 | 138 | $config = new stdClass(); |
129 | 139 | |
@@ -138,19 +148,43 @@ discard block |
||
138 | 148 | $config->allow_outlink_format = $file_config->allow_outlink_format; |
139 | 149 | } |
140 | 150 | // Property for all files comes first than each property |
141 | - if(!$config->allowed_filesize) $config->allowed_filesize = $file_module_config->allowed_filesize; |
|
142 | - if(!$config->allowed_attach_size) $config->allowed_attach_size = $file_module_config->allowed_attach_size; |
|
143 | - if(!$config->allowed_filetypes) $config->allowed_filetypes = $file_module_config->allowed_filetypes; |
|
144 | - if(!$config->allow_outlink) $config->allow_outlink = $file_module_config->allow_outlink; |
|
145 | - if(!$config->allow_outlink_site) $config->allow_outlink_site = $file_module_config->allow_outlink_site; |
|
146 | - if(!$config->allow_outlink_format) $config->allow_outlink_format = $file_module_config->allow_outlink_format; |
|
147 | - if(!$config->download_grant) $config->download_grant = $file_module_config->download_grant; |
|
151 | + if(!$config->allowed_filesize) { |
|
152 | + $config->allowed_filesize = $file_module_config->allowed_filesize; |
|
153 | + } |
|
154 | + if(!$config->allowed_attach_size) { |
|
155 | + $config->allowed_attach_size = $file_module_config->allowed_attach_size; |
|
156 | + } |
|
157 | + if(!$config->allowed_filetypes) { |
|
158 | + $config->allowed_filetypes = $file_module_config->allowed_filetypes; |
|
159 | + } |
|
160 | + if(!$config->allow_outlink) { |
|
161 | + $config->allow_outlink = $file_module_config->allow_outlink; |
|
162 | + } |
|
163 | + if(!$config->allow_outlink_site) { |
|
164 | + $config->allow_outlink_site = $file_module_config->allow_outlink_site; |
|
165 | + } |
|
166 | + if(!$config->allow_outlink_format) { |
|
167 | + $config->allow_outlink_format = $file_module_config->allow_outlink_format; |
|
168 | + } |
|
169 | + if(!$config->download_grant) { |
|
170 | + $config->download_grant = $file_module_config->download_grant; |
|
171 | + } |
|
148 | 172 | // Default setting if not exists |
149 | - if(!$config->allowed_filesize) $config->allowed_filesize = '2'; |
|
150 | - if(!$config->allowed_attach_size) $config->allowed_attach_size = '3'; |
|
151 | - if(!$config->allowed_filetypes) $config->allowed_filetypes = '*.*'; |
|
152 | - if(!$config->allow_outlink) $config->allow_outlink = 'Y'; |
|
153 | - if(!$config->download_grant) $config->download_grant = array(); |
|
173 | + if(!$config->allowed_filesize) { |
|
174 | + $config->allowed_filesize = '2'; |
|
175 | + } |
|
176 | + if(!$config->allowed_attach_size) { |
|
177 | + $config->allowed_attach_size = '3'; |
|
178 | + } |
|
179 | + if(!$config->allowed_filetypes) { |
|
180 | + $config->allowed_filetypes = '*.*'; |
|
181 | + } |
|
182 | + if(!$config->allow_outlink) { |
|
183 | + $config->allow_outlink = 'Y'; |
|
184 | + } |
|
185 | + if(!$config->download_grant) { |
|
186 | + $config->download_grant = array(); |
|
187 | + } |
|
154 | 188 | |
155 | 189 | return $config; |
156 | 190 | } |
@@ -167,7 +201,9 @@ discard block |
||
167 | 201 | $args = new stdClass(); |
168 | 202 | $args->file_srl = $file_srl; |
169 | 203 | $output = executeQueryArray('file.getFile', $args, $columnList); |
170 | - if(!$output->toBool()) return $output; |
|
204 | + if(!$output->toBool()) { |
|
205 | + return $output; |
|
206 | + } |
|
171 | 207 | |
172 | 208 | // old version compatibility |
173 | 209 | if(count($output->data) == 1) |
@@ -176,8 +212,7 @@ discard block |
||
176 | 212 | $file->download_url = $this->getDownloadUrl($file->file_srl, $file->sid, $file->module_srl); |
177 | 213 | |
178 | 214 | return $file; |
179 | - } |
|
180 | - else |
|
215 | + } else |
|
181 | 216 | { |
182 | 217 | $fileList = array(); |
183 | 218 | |
@@ -207,13 +242,19 @@ discard block |
||
207 | 242 | $args = new stdClass(); |
208 | 243 | $args->upload_target_srl = $upload_target_srl; |
209 | 244 | $args->sort_index = $sortIndex; |
210 | - if($ckValid) $args->isvalid = 'Y'; |
|
245 | + if($ckValid) { |
|
246 | + $args->isvalid = 'Y'; |
|
247 | + } |
|
211 | 248 | $output = executeQuery('file.getFiles', $args, $columnList); |
212 | - if(!$output->data) return; |
|
249 | + if(!$output->data) { |
|
250 | + return; |
|
251 | + } |
|
213 | 252 | |
214 | 253 | $file_list = $output->data; |
215 | 254 | |
216 | - if($file_list && !is_array($file_list)) $file_list = array($file_list); |
|
255 | + if($file_list && !is_array($file_list)) { |
|
256 | + $file_list = array($file_list); |
|
257 | + } |
|
217 | 258 | |
218 | 259 | $file_count = count($file_list); |
219 | 260 | for($i=0;$i<$file_count;$i++) |
@@ -301,7 +342,9 @@ discard block |
||
301 | 342 | */ |
302 | 343 | function getFileGrant($file_info, $member_info) |
303 | 344 | { |
304 | - if(!$file_info) return null; |
|
345 | + if(!$file_info) { |
|
346 | + return null; |
|
347 | + } |
|
305 | 348 | |
306 | 349 | if($_SESSION['__XE_UPLOADING_FILES_INFO__'][$file_info->file_srl]) |
307 | 350 | { |
@@ -314,7 +357,9 @@ discard block |
||
314 | 357 | |
315 | 358 | $oDocumentModel = getModel('document'); |
316 | 359 | $oDocument = $oDocumentModel->getDocument($file_info->upload_target_srl); |
317 | - if($oDocument->isExists()) $document_grant = $oDocument->isGranted(); |
|
360 | + if($oDocument->isExists()) { |
|
361 | + $document_grant = $oDocument->isGranted(); |
|
362 | + } |
|
318 | 363 | |
319 | 364 | $file_grant->is_deletable = ($document_grant || $member_info->is_admin == 'Y' || $member_info->member_srl == $file_info->member_srl || $grant->manager); |
320 | 365 |
@@ -216,6 +216,7 @@ discard block |
||
216 | 216 | |
217 | 217 | /** |
218 | 218 | * Merge item |
219 | + * @param string $filename |
|
219 | 220 | * @return void |
220 | 221 | */ |
221 | 222 | function mergeItems($filename) |
@@ -310,6 +311,11 @@ discard block |
||
310 | 311 | return $this->key; |
311 | 312 | } |
312 | 313 | |
314 | + /** |
|
315 | + * @param string $str |
|
316 | + * |
|
317 | + * @return string |
|
318 | + */ |
|
313 | 319 | function _addTagCRTail($str) { |
314 | 320 | $str = preg_replace('/<\/([^>]*)></i', "</$1>\r\n<", $str); |
315 | 321 | return $str; |
@@ -1,13 +1,13 @@ |
||
1 | 1 | <?php |
2 | 2 | /* Copyright (C) NAVER <http://www.navercorp.com> */ |
3 | 3 | /** |
4 | - * extract class |
|
5 | - * Class to save each file by using tags in the large xml |
|
6 | - * |
|
7 | - * @author NAVER ([email protected]) |
|
8 | - * @package /modules/importer |
|
9 | - * @version 0.1 |
|
10 | - */ |
|
4 | + * extract class |
|
5 | + * Class to save each file by using tags in the large xml |
|
6 | + * |
|
7 | + * @author NAVER ([email protected]) |
|
8 | + * @package /modules/importer |
|
9 | + * @version 0.1 |
|
10 | + */ |
|
11 | 11 | class extract |
12 | 12 | { |
13 | 13 | /** |
@@ -99,16 +99,16 @@ discard block |
||
99 | 99 | $this->filename = $filename; |
100 | 100 | |
101 | 101 | $this->startTag = $startTag; |
102 | - if($endTag) $this->endTag = $endTag; |
|
102 | + if ($endTag) $this->endTag = $endTag; |
|
103 | 103 | $this->itemStartTag = $itemTag; |
104 | 104 | $this->itemEndTag = $itemEndTag; |
105 | 105 | |
106 | 106 | $this->key = md5($filename); |
107 | 107 | |
108 | - $this->cache_path = './files/cache/importer/'.$this->key; |
|
109 | - $this->cache_index_file = $this->cache_path.'/index'; |
|
108 | + $this->cache_path = './files/cache/importer/' . $this->key; |
|
109 | + $this->cache_index_file = $this->cache_path . '/index'; |
|
110 | 110 | |
111 | - if(!is_dir($this->cache_path)) FileHandler::makeDir($this->cache_path); |
|
111 | + if (!is_dir($this->cache_path)) FileHandler::makeDir($this->cache_path); |
|
112 | 112 | |
113 | 113 | return $this->openFile(); |
114 | 114 | } |
@@ -120,55 +120,55 @@ discard block |
||
120 | 120 | function openFile() |
121 | 121 | { |
122 | 122 | FileHandler::removeFile($this->cache_index_file); |
123 | - $this->index_fd = fopen($this->cache_index_file,"a"); |
|
123 | + $this->index_fd = fopen($this->cache_index_file, "a"); |
|
124 | 124 | // If local file |
125 | - if(strncasecmp('http://', $this->filename, 7) !== 0) |
|
125 | + if (strncasecmp('http://', $this->filename, 7) !== 0) |
|
126 | 126 | { |
127 | - if(!file_exists($this->filename)) return new Object(-1,'msg_no_xml_file'); |
|
128 | - $this->fd = fopen($this->filename,"r"); |
|
127 | + if (!file_exists($this->filename)) return new Object(-1, 'msg_no_xml_file'); |
|
128 | + $this->fd = fopen($this->filename, "r"); |
|
129 | 129 | // If remote file |
130 | 130 | } |
131 | 131 | else |
132 | 132 | { |
133 | 133 | $url_info = parse_url($this->filename); |
134 | - if(!$url_info['port']) $url_info['port'] = 80; |
|
135 | - if(!$url_info['path']) $url_info['path'] = '/'; |
|
134 | + if (!$url_info['port']) $url_info['port'] = 80; |
|
135 | + if (!$url_info['path']) $url_info['path'] = '/'; |
|
136 | 136 | |
137 | 137 | $this->fd = @fsockopen($url_info['host'], $url_info['port']); |
138 | - if(!$this->fd) return new Object(-1,'msg_no_xml_file'); |
|
138 | + if (!$this->fd) return new Object(-1, 'msg_no_xml_file'); |
|
139 | 139 | // If the file name contains Korean, do urlencode(iconv required) |
140 | 140 | $path = $url_info['path']; |
141 | - if(preg_match('/[\xEA-\xED][\x80-\xFF]{2}/', $path)&&function_exists('iconv')) |
|
141 | + if (preg_match('/[\xEA-\xED][\x80-\xFF]{2}/', $path) && function_exists('iconv')) |
|
142 | 142 | { |
143 | - $path_list = explode('/',$path); |
|
143 | + $path_list = explode('/', $path); |
|
144 | 144 | $cnt = count($path_list); |
145 | - $filename = $path_list[$cnt-1]; |
|
146 | - $filename = urlencode(iconv("UTF-8","EUC-KR",$filename)); |
|
147 | - $path_list[$cnt-1] = $filename; |
|
148 | - $path = implode('/',$path_list); |
|
145 | + $filename = $path_list[$cnt - 1]; |
|
146 | + $filename = urlencode(iconv("UTF-8", "EUC-KR", $filename)); |
|
147 | + $path_list[$cnt - 1] = $filename; |
|
148 | + $path = implode('/', $path_list); |
|
149 | 149 | $url_info['path'] = $path; |
150 | 150 | } |
151 | 151 | |
152 | 152 | $header = sprintf("GET %s?%s HTTP/1.0\r\nHost: %s\r\nReferer: %s://%s\r\nConnection: Close\r\n\r\n", $url_info['path'], $url_info['query'], $url_info['host'], $url_info['scheme'], $url_info['host']); |
153 | 153 | @fwrite($this->fd, $header); |
154 | 154 | $buff = ''; |
155 | - while(!feof($this->fd)) |
|
155 | + while (!feof($this->fd)) |
|
156 | 156 | { |
157 | 157 | $buff .= $str = fgets($this->fd, 1024); |
158 | - if(!trim($str)) break; |
|
158 | + if (!trim($str)) break; |
|
159 | 159 | } |
160 | - if(preg_match('/404 Not Found/i',$buff)) return new Object(-1,'msg_no_xml_file'); |
|
160 | + if (preg_match('/404 Not Found/i', $buff)) return new Object(-1, 'msg_no_xml_file'); |
|
161 | 161 | } |
162 | 162 | |
163 | - if($this->startTag) |
|
163 | + if ($this->startTag) |
|
164 | 164 | { |
165 | - while(!feof($this->fd)) |
|
165 | + while (!feof($this->fd)) |
|
166 | 166 | { |
167 | 167 | $str = fgets($this->fd, 1024); |
168 | 168 | $pos = strpos($str, $this->startTag); |
169 | - if($pos !== false) |
|
169 | + if ($pos !== false) |
|
170 | 170 | { |
171 | - $this->buff = substr($this->buff, $pos+strlen($this->startTag)); |
|
171 | + $this->buff = substr($this->buff, $pos + strlen($this->startTag)); |
|
172 | 172 | $this->isStarted = true; |
173 | 173 | $this->isFinished = false; |
174 | 174 | break; |
@@ -206,9 +206,9 @@ discard block |
||
206 | 206 | */ |
207 | 207 | function saveItems() |
208 | 208 | { |
209 | - FileHandler::removeDir($this->cache_path.$this->key); |
|
209 | + FileHandler::removeDir($this->cache_path . $this->key); |
|
210 | 210 | $this->index = 0; |
211 | - while(!$this->isFinished()) |
|
211 | + while (!$this->isFinished()) |
|
212 | 212 | { |
213 | 213 | $this->getItem(); |
214 | 214 | } |
@@ -224,14 +224,14 @@ discard block |
||
224 | 224 | |
225 | 225 | $filename = sprintf('%s/%s', $this->cache_path, $filename); |
226 | 226 | |
227 | - $index_fd = fopen($this->cache_index_file,"r"); |
|
228 | - $fd = fopen($filename,'w'); |
|
227 | + $index_fd = fopen($this->cache_index_file, "r"); |
|
228 | + $fd = fopen($filename, 'w'); |
|
229 | 229 | |
230 | 230 | fwrite($fd, '<items>'); |
231 | - while(!feof($index_fd)) |
|
231 | + while (!feof($index_fd)) |
|
232 | 232 | { |
233 | - $target_file = trim(fgets($index_fd,1024)); |
|
234 | - if(!file_exists($target_file)) continue; |
|
233 | + $target_file = trim(fgets($index_fd, 1024)); |
|
234 | + if (!file_exists($target_file)) continue; |
|
235 | 235 | $buff = FileHandler::readFile($target_file); |
236 | 236 | fwrite($fd, FileHandler::readFile($target_file)); |
237 | 237 | |
@@ -247,21 +247,21 @@ discard block |
||
247 | 247 | */ |
248 | 248 | function getItem() |
249 | 249 | { |
250 | - if($this->isFinished()) return; |
|
250 | + if ($this->isFinished()) return; |
|
251 | 251 | |
252 | - while(!feof($this->fd)) |
|
252 | + while (!feof($this->fd)) |
|
253 | 253 | { |
254 | 254 | $startPos = strpos($this->buff, $this->itemStartTag); |
255 | - if($startPos !== false) |
|
255 | + if ($startPos !== false) |
|
256 | 256 | { |
257 | 257 | $this->buff = substr($this->buff, $startPos); |
258 | - $this->buff = preg_replace("/\>/",">\r\n",$this->buff,1); |
|
258 | + $this->buff = preg_replace("/\>/", ">\r\n", $this->buff, 1); |
|
259 | 259 | break; |
260 | 260 | } |
261 | - elseif($this->endTag) |
|
261 | + elseif ($this->endTag) |
|
262 | 262 | { |
263 | 263 | $endPos = strpos($this->buff, $this->endTag); |
264 | - if($endPos !== false) |
|
264 | + if ($endPos !== false) |
|
265 | 265 | { |
266 | 266 | $this->closeFile(); |
267 | 267 | return; |
@@ -271,21 +271,21 @@ discard block |
||
271 | 271 | } |
272 | 272 | |
273 | 273 | $startPos = strpos($this->buff, $this->itemStartTag); |
274 | - if($startPos === false) |
|
274 | + if ($startPos === false) |
|
275 | 275 | { |
276 | 276 | $this->closeFile(); |
277 | 277 | return; |
278 | 278 | } |
279 | 279 | |
280 | - $filename = sprintf('%s/%s.xml',$this->cache_path, $this->index++); |
|
281 | - fwrite($this->index_fd, $filename."\r\n"); |
|
280 | + $filename = sprintf('%s/%s.xml', $this->cache_path, $this->index++); |
|
281 | + fwrite($this->index_fd, $filename . "\r\n"); |
|
282 | 282 | |
283 | - $fd = fopen($filename,'w'); |
|
283 | + $fd = fopen($filename, 'w'); |
|
284 | 284 | |
285 | - while(!feof($this->fd)) |
|
285 | + while (!feof($this->fd)) |
|
286 | 286 | { |
287 | 287 | $endPos = strpos($this->buff, $this->itemEndTag); |
288 | - if($endPos !== false) |
|
288 | + if ($endPos !== false) |
|
289 | 289 | { |
290 | 290 | $endPos += strlen($this->itemEndTag); |
291 | 291 | $buff = substr($this->buff, 0, $endPos); |
@@ -99,7 +99,9 @@ discard block |
||
99 | 99 | $this->filename = $filename; |
100 | 100 | |
101 | 101 | $this->startTag = $startTag; |
102 | - if($endTag) $this->endTag = $endTag; |
|
102 | + if($endTag) { |
|
103 | + $this->endTag = $endTag; |
|
104 | + } |
|
103 | 105 | $this->itemStartTag = $itemTag; |
104 | 106 | $this->itemEndTag = $itemEndTag; |
105 | 107 | |
@@ -108,7 +110,9 @@ discard block |
||
108 | 110 | $this->cache_path = './files/cache/importer/'.$this->key; |
109 | 111 | $this->cache_index_file = $this->cache_path.'/index'; |
110 | 112 | |
111 | - if(!is_dir($this->cache_path)) FileHandler::makeDir($this->cache_path); |
|
113 | + if(!is_dir($this->cache_path)) { |
|
114 | + FileHandler::makeDir($this->cache_path); |
|
115 | + } |
|
112 | 116 | |
113 | 117 | return $this->openFile(); |
114 | 118 | } |
@@ -124,18 +128,25 @@ discard block |
||
124 | 128 | // If local file |
125 | 129 | if(strncasecmp('http://', $this->filename, 7) !== 0) |
126 | 130 | { |
127 | - if(!file_exists($this->filename)) return new Object(-1,'msg_no_xml_file'); |
|
131 | + if(!file_exists($this->filename)) { |
|
132 | + return new Object(-1,'msg_no_xml_file'); |
|
133 | + } |
|
128 | 134 | $this->fd = fopen($this->filename,"r"); |
129 | 135 | // If remote file |
130 | - } |
|
131 | - else |
|
136 | + } else |
|
132 | 137 | { |
133 | 138 | $url_info = parse_url($this->filename); |
134 | - if(!$url_info['port']) $url_info['port'] = 80; |
|
135 | - if(!$url_info['path']) $url_info['path'] = '/'; |
|
139 | + if(!$url_info['port']) { |
|
140 | + $url_info['port'] = 80; |
|
141 | + } |
|
142 | + if(!$url_info['path']) { |
|
143 | + $url_info['path'] = '/'; |
|
144 | + } |
|
136 | 145 | |
137 | 146 | $this->fd = @fsockopen($url_info['host'], $url_info['port']); |
138 | - if(!$this->fd) return new Object(-1,'msg_no_xml_file'); |
|
147 | + if(!$this->fd) { |
|
148 | + return new Object(-1,'msg_no_xml_file'); |
|
149 | + } |
|
139 | 150 | // If the file name contains Korean, do urlencode(iconv required) |
140 | 151 | $path = $url_info['path']; |
141 | 152 | if(preg_match('/[\xEA-\xED][\x80-\xFF]{2}/', $path)&&function_exists('iconv')) |
@@ -155,9 +166,13 @@ discard block |
||
155 | 166 | while(!feof($this->fd)) |
156 | 167 | { |
157 | 168 | $buff .= $str = fgets($this->fd, 1024); |
158 | - if(!trim($str)) break; |
|
169 | + if(!trim($str)) { |
|
170 | + break; |
|
171 | + } |
|
172 | + } |
|
173 | + if(preg_match('/404 Not Found/i',$buff)) { |
|
174 | + return new Object(-1,'msg_no_xml_file'); |
|
159 | 175 | } |
160 | - if(preg_match('/404 Not Found/i',$buff)) return new Object(-1,'msg_no_xml_file'); |
|
161 | 176 | } |
162 | 177 | |
163 | 178 | if($this->startTag) |
@@ -174,8 +189,7 @@ discard block |
||
174 | 189 | break; |
175 | 190 | } |
176 | 191 | } |
177 | - } |
|
178 | - else |
|
192 | + } else |
|
179 | 193 | { |
180 | 194 | $this->isStarted = true; |
181 | 195 | $this->isFinished = false; |
@@ -231,7 +245,9 @@ discard block |
||
231 | 245 | while(!feof($index_fd)) |
232 | 246 | { |
233 | 247 | $target_file = trim(fgets($index_fd,1024)); |
234 | - if(!file_exists($target_file)) continue; |
|
248 | + if(!file_exists($target_file)) { |
|
249 | + continue; |
|
250 | + } |
|
235 | 251 | $buff = FileHandler::readFile($target_file); |
236 | 252 | fwrite($fd, FileHandler::readFile($target_file)); |
237 | 253 | |
@@ -247,7 +263,9 @@ discard block |
||
247 | 263 | */ |
248 | 264 | function getItem() |
249 | 265 | { |
250 | - if($this->isFinished()) return; |
|
266 | + if($this->isFinished()) { |
|
267 | + return; |
|
268 | + } |
|
251 | 269 | |
252 | 270 | while(!feof($this->fd)) |
253 | 271 | { |
@@ -257,8 +275,7 @@ discard block |
||
257 | 275 | $this->buff = substr($this->buff, $startPos); |
258 | 276 | $this->buff = preg_replace("/\>/",">\r\n",$this->buff,1); |
259 | 277 | break; |
260 | - } |
|
261 | - elseif($this->endTag) |
|
278 | + } elseif($this->endTag) |
|
262 | 279 | { |
263 | 280 | $endPos = strpos($this->buff, $this->endTag); |
264 | 281 | if($endPos !== false) |
@@ -276,7 +276,7 @@ |
||
276 | 276 | |
277 | 277 | /** |
278 | 278 | * Migrate data after completing xml file extraction |
279 | - * @return void |
|
279 | + * @return Object|null |
|
280 | 280 | */ |
281 | 281 | function procImporterAdminImport() |
282 | 282 | { |
@@ -43,19 +43,19 @@ discard block |
||
43 | 43 | $filename = Context::get('filename'); |
44 | 44 | $isExists = 'false'; |
45 | 45 | |
46 | - if(strncasecmp('http://', $filename, 7) === 0) |
|
46 | + if (strncasecmp('http://', $filename, 7) === 0) |
|
47 | 47 | { |
48 | - if(ini_get('allow_url_fopen')) |
|
48 | + if (ini_get('allow_url_fopen')) |
|
49 | 49 | { |
50 | 50 | $fp = @fopen($filename, "r"); |
51 | - if($fp) |
|
51 | + if ($fp) |
|
52 | 52 | { |
53 | 53 | $str = fgets($fp, 100); |
54 | - if(strlen($str) > 0) |
|
54 | + if (strlen($str) > 0) |
|
55 | 55 | { |
56 | 56 | $isExists = 'true'; |
57 | 57 | $type = 'XML'; |
58 | - if(stristr($str, 'tattertools')) $type = 'TTXML'; |
|
58 | + if (stristr($str, 'tattertools')) $type = 'TTXML'; |
|
59 | 59 | |
60 | 60 | $this->add('type', $type); |
61 | 61 | } |
@@ -72,16 +72,16 @@ discard block |
||
72 | 72 | { |
73 | 73 | $realPath = FileHandler::getRealPath($filename); |
74 | 74 | |
75 | - if(file_exists($realPath) && is_file($realPath)) $isExists = 'true'; |
|
75 | + if (file_exists($realPath) && is_file($realPath)) $isExists = 'true'; |
|
76 | 76 | $this->add('exists', $isExists); |
77 | 77 | |
78 | - if($isExists == 'true') |
|
78 | + if ($isExists == 'true') |
|
79 | 79 | { |
80 | 80 | $type = 'XML'; |
81 | 81 | |
82 | 82 | $fp = fopen($realPath, "r"); |
83 | 83 | $str = fgets($fp, 100); |
84 | - if(stristr($str, 'tattertools')) $type = 'TTXML'; |
|
84 | + if (stristr($str, 'tattertools')) $type = 'TTXML'; |
|
85 | 85 | fclose($fp); |
86 | 86 | |
87 | 87 | $this->add('type', $type); |
@@ -107,16 +107,16 @@ discard block |
||
107 | 107 | |
108 | 108 | /* DBMS가 CUBRID인 경우 MySQL과 동일한 방법으로는 문서 및 댓글에 대한 사용자 정보를 동기화 할 수 없으므로 예외 처리 합니다. |
109 | 109 | CUBRID를 사용하지 않는 경우에만 보편적인 기존 질의문을 사용합니다. */ |
110 | - $db_info = Context::getDBInfo (); |
|
111 | - if($db_info->db_type != "cubrid") |
|
110 | + $db_info = Context::getDBInfo(); |
|
111 | + if ($db_info->db_type != "cubrid") |
|
112 | 112 | { |
113 | - $output = executeQuery('importer.updateDocumentSync'.$postFix); |
|
114 | - $output = executeQuery('importer.updateCommentSync'.$postFix); |
|
113 | + $output = executeQuery('importer.updateDocumentSync' . $postFix); |
|
114 | + $output = executeQuery('importer.updateCommentSync' . $postFix); |
|
115 | 115 | } |
116 | 116 | else |
117 | 117 | { |
118 | - $output = executeQueryArray ('importer.getDocumentMemberSrlWithUserID'.$postFix); |
|
119 | - if(is_array ($output->data) && count ($output->data)) |
|
118 | + $output = executeQueryArray('importer.getDocumentMemberSrlWithUserID' . $postFix); |
|
119 | + if (is_array($output->data) && count($output->data)) |
|
120 | 120 | { |
121 | 121 | $success_count = 0; |
122 | 122 | $error_count = 0; |
@@ -125,8 +125,8 @@ discard block |
||
125 | 125 | { |
126 | 126 | $args->user_id = $val->user_id; |
127 | 127 | $args->member_srl = $val->member_srl; |
128 | - $tmp = executeQuery ('importer.updateDocumentSyncForCUBRID'.$postFix, $args); |
|
129 | - if($tmp->toBool () === true) |
|
128 | + $tmp = executeQuery('importer.updateDocumentSyncForCUBRID' . $postFix, $args); |
|
129 | + if ($tmp->toBool() === true) |
|
130 | 130 | { |
131 | 131 | $success_count++; |
132 | 132 | } |
@@ -138,8 +138,8 @@ discard block |
||
138 | 138 | } |
139 | 139 | } // documents section |
140 | 140 | |
141 | - $output = executeQueryArray ('importer.getCommentMemberSrlWithUserID'.$postFix); |
|
142 | - if(is_array ($output->data) && count ($output->data)) |
|
141 | + $output = executeQueryArray('importer.getCommentMemberSrlWithUserID' . $postFix); |
|
142 | + if (is_array($output->data) && count($output->data)) |
|
143 | 143 | { |
144 | 144 | $success_count = 0; |
145 | 145 | $error_count = 0; |
@@ -148,8 +148,8 @@ discard block |
||
148 | 148 | { |
149 | 149 | $args->user_id = $val->user_id; |
150 | 150 | $args->member_srl = $val->member_srl; |
151 | - $tmp = executeQuery ('importer.updateCommentSyncForCUBRID'.$postFix, $args); |
|
152 | - if($tmp->toBool () === true) |
|
151 | + $tmp = executeQuery('importer.updateCommentSyncForCUBRID' . $postFix, $args); |
|
152 | + if ($tmp->toBool() === true) |
|
153 | 153 | { |
154 | 154 | $success_count++; |
155 | 155 | } |
@@ -178,15 +178,15 @@ discard block |
||
178 | 178 | // Extract and cache information from the xml file |
179 | 179 | $oExtract = new extract(); |
180 | 180 | |
181 | - switch($type) |
|
181 | + switch ($type) |
|
182 | 182 | { |
183 | 183 | case 'member' : |
184 | - $output = $oExtract->set($xml_file,'<members ', '</members>', '<member>', '</member>'); |
|
185 | - if($output->toBool()) $oExtract->saveItems(); |
|
184 | + $output = $oExtract->set($xml_file, '<members ', '</members>', '<member>', '</member>'); |
|
185 | + if ($output->toBool()) $oExtract->saveItems(); |
|
186 | 186 | break; |
187 | 187 | case 'message' : |
188 | - $output = $oExtract->set($xml_file,'<messages ', '</messages>', '<message>','</message>'); |
|
189 | - if($output->toBool()) $oExtract->saveItems(); |
|
188 | + $output = $oExtract->set($xml_file, '<messages ', '</messages>', '<message>', '</message>'); |
|
189 | + if ($output->toBool()) $oExtract->saveItems(); |
|
190 | 190 | break; |
191 | 191 | case 'ttxml' : |
192 | 192 | // Category information |
@@ -199,37 +199,37 @@ discard block |
||
199 | 199 | while (!feof($oExtract->fd)) |
200 | 200 | { |
201 | 201 | $str = fgets($oExtract->fd, 1024); |
202 | - if(strstr($str, '<category>')) |
|
202 | + if (strstr($str, '<category>')) |
|
203 | 203 | { |
204 | 204 | $started = true; |
205 | 205 | $str = strstr($str, '<category>'); |
206 | 206 | } |
207 | - if(substr($str,0,strlen('<post ')) == '<post ') break; |
|
207 | + if (substr($str, 0, strlen('<post ')) == '<post ') break; |
|
208 | 208 | if ($started) $buff .= $str; |
209 | 209 | } |
210 | - $buff = '<categories>'.$buff.'</categories>'; |
|
210 | + $buff = '<categories>' . $buff . '</categories>'; |
|
211 | 211 | $oExtract->closeFile(); |
212 | 212 | $category_filename = sprintf('%s/%s', $oExtract->cache_path, 'category.xml'); |
213 | 213 | FileHandler::writeFile($category_filename, $buff); |
214 | 214 | |
215 | 215 | // Guestbook information |
216 | 216 | $output = $oExtract->set($xml_file, '', '', '', ''); |
217 | - if($output->toBool()) |
|
217 | + if ($output->toBool()) |
|
218 | 218 | { |
219 | 219 | $started = false; |
220 | 220 | $buff = ''; |
221 | 221 | while (!feof($oExtract->fd)) |
222 | 222 | { |
223 | 223 | $str = fgets($oExtract->fd, 1024); |
224 | - if(strstr($str, '<guestbook>')) |
|
224 | + if (strstr($str, '<guestbook>')) |
|
225 | 225 | { |
226 | 226 | $started = true; |
227 | 227 | $str = strstr($str, '<guestbook>'); |
228 | 228 | } |
229 | - if($started) |
|
229 | + if ($started) |
|
230 | 230 | { |
231 | 231 | $pos = strpos($str, '</guestbook>'); |
232 | - if($pos !== false) |
|
232 | + if ($pos !== false) |
|
233 | 233 | { |
234 | 234 | $buff .= substr($str, 0, $pos + strlen('</guestbook>')); |
235 | 235 | break; |
@@ -241,37 +241,37 @@ discard block |
||
241 | 241 | $guestbook_filename = sprintf('%s/%s', $oExtract->cache_path, 'guestbook.xml'); |
242 | 242 | FileHandler::writeFile($guestbook_filename, $buff); |
243 | 243 | // Individual items |
244 | - $output = $oExtract->set($xml_file,'<blog', '</blog>', '<post ', '</post>'); |
|
245 | - if($output->toBool()) $oExtract->saveItems(); |
|
244 | + $output = $oExtract->set($xml_file, '<blog', '</blog>', '<post ', '</post>'); |
|
245 | + if ($output->toBool()) $oExtract->saveItems(); |
|
246 | 246 | } |
247 | 247 | } |
248 | 248 | break; |
249 | 249 | default : |
250 | 250 | // First get category information |
251 | - $output = $oExtract->set($xml_file,'<categories>', '</categories>', '<category','</category>'); |
|
252 | - if($output->toBool()) |
|
251 | + $output = $oExtract->set($xml_file, '<categories>', '</categories>', '<category', '</category>'); |
|
252 | + if ($output->toBool()) |
|
253 | 253 | { |
254 | 254 | $oExtract->mergeItems('category.xml'); |
255 | 255 | // Get each item |
256 | - $output = $oExtract->set($xml_file,'<posts ', '</posts>', '<post>', '</post>'); |
|
257 | - if($output->toBool()) $oExtract->saveItems(); |
|
256 | + $output = $oExtract->set($xml_file, '<posts ', '</posts>', '<post>', '</post>'); |
|
257 | + if ($output->toBool()) $oExtract->saveItems(); |
|
258 | 258 | } |
259 | 259 | break; |
260 | 260 | } |
261 | 261 | |
262 | - if(!$output->toBool()) |
|
262 | + if (!$output->toBool()) |
|
263 | 263 | { |
264 | - $this->add('error',0); |
|
265 | - $this->add('status',-1); |
|
264 | + $this->add('error', 0); |
|
265 | + $this->add('status', -1); |
|
266 | 266 | $this->setMessage($output->getMessage()); |
267 | 267 | return; |
268 | 268 | } |
269 | 269 | // Notify that all data completely extracted |
270 | - $this->add('type',$type); |
|
271 | - $this->add('total',$oExtract->getTotalCount()); |
|
272 | - $this->add('cur',0); |
|
270 | + $this->add('type', $type); |
|
271 | + $this->add('total', $oExtract->getTotalCount()); |
|
272 | + $this->add('cur', 0); |
|
273 | 273 | $this->add('key', $oExtract->getKey()); |
274 | - $this->add('status',0); |
|
274 | + $this->add('status', 0); |
|
275 | 275 | } |
276 | 276 | |
277 | 277 | /** |
@@ -290,20 +290,20 @@ discard block |
||
290 | 290 | $guestbook_target_module = Context::get('guestbook_target_module'); |
291 | 291 | $this->unit_count = Context::get('unit_count'); |
292 | 292 | // Check if an index file exists |
293 | - $index_file = './files/cache/importer/'.$key.'/index'; |
|
294 | - if(!file_exists($index_file)) return new Object(-1, 'msg_invalid_xml_file'); |
|
293 | + $index_file = './files/cache/importer/' . $key . '/index'; |
|
294 | + if (!file_exists($index_file)) return new Object(-1, 'msg_invalid_xml_file'); |
|
295 | 295 | |
296 | - switch($type) |
|
296 | + switch ($type) |
|
297 | 297 | { |
298 | 298 | case 'ttxml' : |
299 | - if(!$target_module) return new Object(-1,'msg_invalid_request'); |
|
299 | + if (!$target_module) return new Object(-1, 'msg_invalid_request'); |
|
300 | 300 | |
301 | 301 | $oModuleModel = getModel('module'); |
302 | 302 | $columnList = array('module_srl', 'module'); |
303 | 303 | $target_module_info = $oModuleModel->getModuleInfoByModuleSrl($target_module, $columnList); |
304 | 304 | |
305 | 305 | $ttimporter = FileHandler::exists(_XE_PATH_ . 'modules/importer/ttimport.class.php'); |
306 | - if($ttimporter) require_once($ttimporter); |
|
306 | + if ($ttimporter) require_once($ttimporter); |
|
307 | 307 | |
308 | 308 | $oTT = new ttimport(); |
309 | 309 | $cur = $oTT->importModule($key, $cur, $index_file, $this->unit_count, $target_module, $guestbook_target_module, $user_id, $target_module_info->module); |
@@ -316,23 +316,23 @@ discard block |
||
316 | 316 | break; |
317 | 317 | case 'module' : |
318 | 318 | // Check if the target module exists |
319 | - if(!$target_module) return new Object(-1,'msg_invalid_request'); |
|
319 | + if (!$target_module) return new Object(-1, 'msg_invalid_request'); |
|
320 | 320 | $cur = $this->importModule($key, $cur, $index_file, $target_module); |
321 | 321 | break; |
322 | 322 | } |
323 | 323 | // Notify that all data completely extracted |
324 | - $this->add('type',$type); |
|
325 | - $this->add('total',$total); |
|
326 | - $this->add('cur',$cur); |
|
324 | + $this->add('type', $type); |
|
325 | + $this->add('total', $total); |
|
326 | + $this->add('cur', $cur); |
|
327 | 327 | $this->add('key', $key); |
328 | 328 | $this->add('target_module', $target_module); |
329 | 329 | // When completing, success message appears and remove the cache files |
330 | - if($total <= $cur) |
|
330 | + if ($total <= $cur) |
|
331 | 331 | { |
332 | - $this->setMessage( sprintf(Context::getLang('msg_import_finished'), $cur, $total) ); |
|
333 | - FileHandler::removeDir('./files/cache/importer/'.$key); |
|
332 | + $this->setMessage(sprintf(Context::getLang('msg_import_finished'), $cur, $total)); |
|
333 | + FileHandler::removeDir('./files/cache/importer/' . $key); |
|
334 | 334 | } |
335 | - else $this->setMessage( sprintf(Context::getLang('msg_importing'), $total, $cur) ); |
|
335 | + else $this->setMessage(sprintf(Context::getLang('msg_importing'), $total, $cur)); |
|
336 | 336 | } |
337 | 337 | |
338 | 338 | /** |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | */ |
345 | 345 | function importMember($key, $cur, $index_file) |
346 | 346 | { |
347 | - if(!$cur) $cur = 0; |
|
347 | + if (!$cur) $cur = 0; |
|
348 | 348 | // Create the xmlParser object |
349 | 349 | $oXmlParser = new XmlParser(); |
350 | 350 | // Create objects for importing member information |
@@ -357,30 +357,30 @@ discard block |
||
357 | 357 | $oModuleModel = getModel('module'); |
358 | 358 | $member_config = $oModuleModel->getModuleConfig('member'); |
359 | 359 | // Open an index file |
360 | - $f = fopen($index_file,"r"); |
|
360 | + $f = fopen($index_file, "r"); |
|
361 | 361 | // Pass if already read |
362 | - for($i=0;$i<$cur;$i++) fgets($f, 1024); |
|
362 | + for ($i = 0; $i < $cur; $i++) fgets($f, 1024); |
|
363 | 363 | // Read by each line until the condition meets |
364 | - for($idx=$cur;$idx<$cur+$this->unit_count;$idx++) |
|
364 | + for ($idx = $cur; $idx < $cur + $this->unit_count; $idx++) |
|
365 | 365 | { |
366 | - if(feof($f)) break; |
|
366 | + if (feof($f)) break; |
|
367 | 367 | // Find a given location |
368 | 368 | $target_file = trim(fgets($f, 1024)); |
369 | 369 | // Load and parse the file |
370 | 370 | $xmlObj = $oXmlParser->loadXmlFile($target_file); |
371 | 371 | FileHandler::removeFile($target_file); |
372 | - if(!$xmlObj) continue; |
|
372 | + if (!$xmlObj) continue; |
|
373 | 373 | // List Objects |
374 | 374 | $obj = null; |
375 | 375 | $obj->user_id = base64_decode($xmlObj->member->user_id->body); |
376 | 376 | $obj->password = base64_decode($xmlObj->member->password->body); |
377 | 377 | $obj->user_name = base64_decode($xmlObj->member->user_name->body); |
378 | 378 | $obj->nick_name = base64_decode($xmlObj->member->nick_name->body); |
379 | - if(!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
379 | + if (!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
380 | 380 | $obj->email = base64_decode($xmlObj->member->email->body); |
381 | 381 | $obj->homepage = base64_decode($xmlObj->member->homepage->body); |
382 | 382 | $obj->blog = base64_decode($xmlObj->member->blog->body); |
383 | - $obj->birthday = substr(base64_decode($xmlObj->member->birthday->body),0,8); |
|
383 | + $obj->birthday = substr(base64_decode($xmlObj->member->birthday->body), 0, 8); |
|
384 | 384 | $obj->allow_mailing = base64_decode($xmlObj->member->allow_mailing->body); |
385 | 385 | $obj->point = base64_decode($xmlObj->member->point->body); |
386 | 386 | $obj->image_nickname = base64_decode($xmlObj->member->image_nickname->buff->body); |
@@ -390,26 +390,26 @@ discard block |
||
390 | 390 | $obj->regdate = base64_decode($xmlObj->member->regdate->body); |
391 | 391 | $obj->last_login = base64_decode($xmlObj->member->last_login->body); |
392 | 392 | |
393 | - if($xmlObj->member->extra_vars) |
|
393 | + if ($xmlObj->member->extra_vars) |
|
394 | 394 | { |
395 | - foreach($xmlObj->member->extra_vars as $key => $val) |
|
395 | + foreach ($xmlObj->member->extra_vars as $key => $val) |
|
396 | 396 | { |
397 | - if(in_array($key, array('node_name','attrs','body'))) continue; |
|
397 | + if (in_array($key, array('node_name', 'attrs', 'body'))) continue; |
|
398 | 398 | $obj->extra_vars->{$key} = base64_decode($val->body); |
399 | 399 | } |
400 | 400 | } |
401 | 401 | // Create url for homepage and blog |
402 | - if($obj->homepage && strncasecmp('http://', $obj->homepage, 7) !== 0 && strncasecmp('https://', $obj->homepage, 8) !== 0) $obj->homepage = 'http://'.$obj->homepage; |
|
402 | + if ($obj->homepage && strncasecmp('http://', $obj->homepage, 7) !== 0 && strncasecmp('https://', $obj->homepage, 8) !== 0) $obj->homepage = 'http://' . $obj->homepage; |
|
403 | 403 | // email address column |
404 | 404 | $obj->email_address = $obj->email; |
405 | 405 | list($obj->email_id, $obj->email_host) = explode('@', $obj->email); |
406 | 406 | // Set the mailing option |
407 | - if($obj->allow_mailing!='Y') $obj->allow_mailing = 'N'; |
|
407 | + if ($obj->allow_mailing != 'Y') $obj->allow_mailing = 'N'; |
|
408 | 408 | // Set the message option |
409 | 409 | $obj->allow_message = 'Y'; |
410 | - if(!in_array($obj->allow_message, array('Y','N','F'))) $obj->allow_message= 'Y'; |
|
410 | + if (!in_array($obj->allow_message, array('Y', 'N', 'F'))) $obj->allow_message = 'Y'; |
|
411 | 411 | // Get member-join date if the last login time is not found |
412 | - if(!$obj->last_login) $obj->last_login = $obj->regdate; |
|
412 | + if (!$obj->last_login) $obj->last_login = $obj->regdate; |
|
413 | 413 | // Get a member_srl |
414 | 414 | $obj->member_srl = getNextSequence(); |
415 | 415 | $obj->list_order = -1 * $obj->member_srl; |
@@ -421,16 +421,16 @@ discard block |
||
421 | 421 | $nick_args = new stdClass; |
422 | 422 | $nick_args->nick_name = $obj->nick_name; |
423 | 423 | $nick_output = executeQuery('member.getMemberSrl', $nick_args); |
424 | - if(!$nick_output->toBool()) $obj->nick_name .= '_'.$obj->member_srl; |
|
424 | + if (!$nick_output->toBool()) $obj->nick_name .= '_' . $obj->member_srl; |
|
425 | 425 | // Add a member |
426 | 426 | $output = executeQuery('member.insertMember', $obj); |
427 | 427 | |
428 | - if($output->toBool() && !($obj->password)) |
|
428 | + if ($output->toBool() && !($obj->password)) |
|
429 | 429 | { |
430 | 430 | // Send a mail telling the user to reset his password. |
431 | 431 | $oMail = new Mail(); |
432 | 432 | $oMail->setTitle("Password update for your " . getFullSiteUrl() . " account"); |
433 | - $webmaster_name = $member_config->webmaster_name?$member_config->webmaster_name:'Webmaster'; |
|
433 | + $webmaster_name = $member_config->webmaster_name ? $member_config->webmaster_name : 'Webmaster'; |
|
434 | 434 | $oMail->setContent("Dear $obj->user_name, <br /><br /> |
435 | 435 | We recently migrated our phpBB forum to XpressEngine. Since you password was encrypted we could not migrate it too, so please reset it by following this link: |
436 | 436 | <a href='" . getFullSiteUrl() . "/?act=dispMemberFindAccount' >" . getFullSiteUrl() . "?act=dispMemberFindAccount</a>. You need to enter you email address and hit the 'Find account' button. You will then receive an email with a new, generated password that you can change after login. <br /><br /> |
@@ -439,45 +439,45 @@ discard block |
||
439 | 439 | {$webmaster_name}" |
440 | 440 | ); |
441 | 441 | $oMail->setSender($webmaster_name, $member_config->webmaster_email); |
442 | - $oMail->setReceiptor( $obj->user_name, $obj->email); |
|
442 | + $oMail->setReceiptor($obj->user_name, $obj->email); |
|
443 | 443 | $oMail->send(); |
444 | 444 | } |
445 | 445 | |
446 | 446 | // add group join/image name-mark-signiture and so on if a new member successfully added |
447 | - if($output->toBool()) |
|
447 | + if ($output->toBool()) |
|
448 | 448 | { |
449 | 449 | // Join to the default group |
450 | 450 | $obj->group_srl = $default_group_srl; |
451 | - executeQuery('member.addMemberToGroup',$obj); |
|
451 | + executeQuery('member.addMemberToGroup', $obj); |
|
452 | 452 | // Image name |
453 | - if($obj->image_nickname) |
|
453 | + if ($obj->image_nickname) |
|
454 | 454 | { |
455 | 455 | $target_path = sprintf('files/member_extra_info/image_name/%s/', getNumberingPath($obj->member_srl)); |
456 | 456 | $target_filename = sprintf('%s%d.gif', $target_path, $obj->member_srl); |
457 | 457 | FileHandler::writeFile($target_filename, $obj->image_nickname); |
458 | 458 | } |
459 | 459 | // Image mark |
460 | - if($obj->image_mark && file_exists($obj->image_mark)) |
|
460 | + if ($obj->image_mark && file_exists($obj->image_mark)) |
|
461 | 461 | { |
462 | 462 | $target_path = sprintf('files/member_extra_info/image_mark/%s/', getNumberingPath($obj->member_srl)); |
463 | 463 | $target_filename = sprintf('%s%d.gif', $target_path, $obj->member_srl); |
464 | 464 | FileHandler::writeFile($target_filename, $obj->image_mark); |
465 | 465 | } |
466 | 466 | // Profile image |
467 | - if($obj->profile_image) |
|
467 | + if ($obj->profile_image) |
|
468 | 468 | { |
469 | 469 | $target_path = sprintf('files/member_extra_info/profile_image/%s/', getNumberingPath($obj->member_srl)); |
470 | 470 | $target_filename = sprintf('%s%d.gif', $target_path, $obj->member_srl); |
471 | 471 | FileHandler::writeFile($target_filename, $obj->profile_image); |
472 | 472 | } |
473 | 473 | // Signiture |
474 | - if($obj->signature) |
|
474 | + if ($obj->signature) |
|
475 | 475 | { |
476 | 476 | $signature = removeHackTag($obj->signature); |
477 | 477 | $signature_buff = sprintf('<?php if(!defined("__XE__")) exit();?>%s', $signature); |
478 | 478 | |
479 | 479 | $target_path = sprintf('files/member_extra_info/signature/%s/', getNumberingPath($obj->member_srl)); |
480 | - if(!is_dir($target_path)) FileHandler::makeDir($target_path); |
|
480 | + if (!is_dir($target_path)) FileHandler::makeDir($target_path); |
|
481 | 481 | $target_filename = sprintf('%s%d.signature.php', $target_path, $obj->member_srl); |
482 | 482 | |
483 | 483 | FileHandler::writeFile($target_filename, $signature_buff); |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | |
488 | 488 | fclose($f); |
489 | 489 | |
490 | - return $idx-1; |
|
490 | + return $idx - 1; |
|
491 | 491 | } |
492 | 492 | |
493 | 493 | /** |
@@ -499,58 +499,58 @@ discard block |
||
499 | 499 | */ |
500 | 500 | function importMessage($key, $cur, $index_file) |
501 | 501 | { |
502 | - if(!$cur) $cur = 0; |
|
502 | + if (!$cur) $cur = 0; |
|
503 | 503 | // Create the xmlParser object |
504 | 504 | $oXmlParser = new XmlParser(); |
505 | 505 | // Open an index file |
506 | - $f = fopen($index_file,"r"); |
|
506 | + $f = fopen($index_file, "r"); |
|
507 | 507 | // Pass if already read |
508 | - for($i=0;$i<$cur;$i++) fgets($f, 1024); |
|
508 | + for ($i = 0; $i < $cur; $i++) fgets($f, 1024); |
|
509 | 509 | // Read each line until the condition meets |
510 | - for($idx=$cur;$idx<$cur+$this->unit_count;$idx++) |
|
510 | + for ($idx = $cur; $idx < $cur + $this->unit_count; $idx++) |
|
511 | 511 | { |
512 | - if(feof($f)) break; |
|
512 | + if (feof($f)) break; |
|
513 | 513 | // Find a location |
514 | 514 | $target_file = trim(fgets($f, 1024)); |
515 | 515 | // Load and parse the file |
516 | 516 | $xmlObj = $oXmlParser->loadXmlFile($target_file); |
517 | 517 | FileHandler::removeFile($target_file); |
518 | - if(!$xmlObj) continue; |
|
518 | + if (!$xmlObj) continue; |
|
519 | 519 | // List objects |
520 | 520 | $obj = null; |
521 | 521 | $obj->receiver = base64_decode($xmlObj->message->receiver->body); |
522 | 522 | $obj->sender = base64_decode($xmlObj->message->sender->body); |
523 | 523 | $obj->title = base64_decode($xmlObj->message->title->body); |
524 | 524 | $obj->content = base64_decode($xmlObj->message->content->body); |
525 | - $obj->readed = base64_decode($xmlObj->message->readed->body)=='Y'?'Y':'N'; |
|
525 | + $obj->readed = base64_decode($xmlObj->message->readed->body) == 'Y' ? 'Y' : 'N'; |
|
526 | 526 | $obj->regdate = base64_decode($xmlObj->message->regdate->body); |
527 | 527 | $obj->readed_date = base64_decode($xmlObj->message->readed_date->body); |
528 | 528 | // Get member_srl of sender/recipient (If not exists, pass) |
529 | - if(!$obj->sender) continue; |
|
529 | + if (!$obj->sender) continue; |
|
530 | 530 | $sender_args->user_id = $obj->sender; |
531 | - $sender_output = executeQuery('member.getMemberInfo',$sender_args); |
|
531 | + $sender_output = executeQuery('member.getMemberInfo', $sender_args); |
|
532 | 532 | $sender_srl = $sender_output->data->member_srl; |
533 | - if(!$sender_srl) |
|
533 | + if (!$sender_srl) |
|
534 | 534 | { |
535 | 535 | unset($sender_args); |
536 | 536 | $sender_args->email_address = $obj->sender; |
537 | - $sender_output = executeQuery('member.getMemberInfoByEmailAddress',$sender_args); |
|
537 | + $sender_output = executeQuery('member.getMemberInfoByEmailAddress', $sender_args); |
|
538 | 538 | $sender_srl = $sender_output->data->member_srl; |
539 | 539 | } |
540 | - if(!$sender_srl) continue; |
|
540 | + if (!$sender_srl) continue; |
|
541 | 541 | |
542 | 542 | $receiver_args->user_id = $obj->receiver; |
543 | - if(!$obj->receiver) continue; |
|
544 | - $receiver_output = executeQuery('member.getMemberInfo',$receiver_args); |
|
543 | + if (!$obj->receiver) continue; |
|
544 | + $receiver_output = executeQuery('member.getMemberInfo', $receiver_args); |
|
545 | 545 | $receiver_srl = $receiver_output->data->member_srl; |
546 | - if(!$receiver_srl) |
|
546 | + if (!$receiver_srl) |
|
547 | 547 | { |
548 | 548 | unset($receiver_args); |
549 | 549 | $receiver_args->email_address = $obj->receiver; |
550 | - $receiver_output = executeQuery('member.getMemberInfoByEmailAddress',$receiver_args); |
|
550 | + $receiver_output = executeQuery('member.getMemberInfoByEmailAddress', $receiver_args); |
|
551 | 551 | $receiver_srl = $receiver_output->data->member_srl; |
552 | 552 | } |
553 | - if(!$receiver_srl) continue; |
|
553 | + if (!$receiver_srl) continue; |
|
554 | 554 | // Message to save into sender's message box |
555 | 555 | $sender_args->sender_srl = $sender_srl; |
556 | 556 | $sender_args->receiver_srl = $receiver_srl; |
@@ -565,13 +565,13 @@ discard block |
||
565 | 565 | $sender_args->list_order = $sender_args->message_srl * -1; |
566 | 566 | |
567 | 567 | $output = executeQuery('communication.sendMessage', $sender_args); |
568 | - if($output->toBool()) |
|
568 | + if ($output->toBool()) |
|
569 | 569 | { |
570 | 570 | // Message to save into recipient's massage box |
571 | 571 | $receiver_args->message_srl = $sender_args->related_srl; |
572 | - $receiver_args->list_order = $sender_args->related_srl*-1; |
|
572 | + $receiver_args->list_order = $sender_args->related_srl * -1; |
|
573 | 573 | $receiver_args->sender_srl = $sender_srl; |
574 | - if(!$receiver_args->sender_srl) $receiver_args->sender_srl = $receiver_srl; |
|
574 | + if (!$receiver_args->sender_srl) $receiver_args->sender_srl = $receiver_srl; |
|
575 | 575 | $receiver_args->receiver_srl = $receiver_srl; |
576 | 576 | $receiver_args->message_type = 'R'; |
577 | 577 | $receiver_args->title = $obj->title; |
@@ -585,7 +585,7 @@ discard block |
||
585 | 585 | |
586 | 586 | fclose($f); |
587 | 587 | |
588 | - return $idx-1; |
|
588 | + return $idx - 1; |
|
589 | 589 | } |
590 | 590 | |
591 | 591 | /** |
@@ -605,10 +605,10 @@ discard block |
||
605 | 605 | $oDocumentModel = getModel('document'); |
606 | 606 | $category_list = $category_titles = array(); |
607 | 607 | $category_list = $oDocumentModel->getCategoryList($module_srl); |
608 | - if(count($category_list)) foreach($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl; |
|
608 | + if (count($category_list)) foreach ($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl; |
|
609 | 609 | // Extract category information |
610 | 610 | $category_file = preg_replace('/index$/i', 'category.xml', $index_file); |
611 | - if(file_exists($category_file)) |
|
611 | + if (file_exists($category_file)) |
|
612 | 612 | { |
613 | 613 | $buff = FileHandler::readFile($category_file); |
614 | 614 | |
@@ -616,14 +616,14 @@ discard block |
||
616 | 616 | $xmlDoc = $this->oXmlParser->loadXmlFile($category_file); |
617 | 617 | |
618 | 618 | $categories = $xmlDoc->items->category; |
619 | - if($categories) |
|
619 | + if ($categories) |
|
620 | 620 | { |
621 | - if(!is_array($categories)) $categories = array($categories); |
|
621 | + if (!is_array($categories)) $categories = array($categories); |
|
622 | 622 | $match_sequence = array(); |
623 | - foreach($categories as $k => $v) |
|
623 | + foreach ($categories as $k => $v) |
|
624 | 624 | { |
625 | 625 | $category = trim(base64_decode($v->body)); |
626 | - if(!$category || $category_titles[$category]) continue; |
|
626 | + if (!$category || $category_titles[$category]) continue; |
|
627 | 627 | |
628 | 628 | $sequence = $v->attrs->sequence; |
629 | 629 | $parent = $v->attrs->parent; |
@@ -631,10 +631,10 @@ discard block |
||
631 | 631 | $obj = null; |
632 | 632 | $obj->title = $category; |
633 | 633 | $obj->module_srl = $module_srl; |
634 | - if($parent) $obj->parent_srl = $match_sequence[$parent]; |
|
634 | + if ($parent) $obj->parent_srl = $match_sequence[$parent]; |
|
635 | 635 | |
636 | 636 | $output = $oDocumentController->insertCategory($obj); |
637 | - if($output->toBool()) $match_sequence[$sequence] = $output->get('category_srl'); |
|
637 | + if ($output->toBool()) $match_sequence[$sequence] = $output->get('category_srl'); |
|
638 | 638 | } |
639 | 639 | $oDocumentController = getController('document'); |
640 | 640 | $oDocumentController->makeCategoryFile($module_srl); |
@@ -644,31 +644,31 @@ discard block |
||
644 | 644 | |
645 | 645 | $category_list = $category_titles = array(); |
646 | 646 | $category_list = $oDocumentModel->getCategoryList($module_srl); |
647 | - if(count($category_list)) foreach($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl; |
|
647 | + if (count($category_list)) foreach ($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl; |
|
648 | 648 | |
649 | 649 | $ek_args->module_srl = $module_srl; |
650 | 650 | $output = executeQueryArray('document.getDocumentExtraKeys', $ek_args); |
651 | - if($output->data) |
|
651 | + if ($output->data) |
|
652 | 652 | { |
653 | - foreach($output->data as $key => $val) $extra_keys[$val->eid] = true; |
|
653 | + foreach ($output->data as $key => $val) $extra_keys[$val->eid] = true; |
|
654 | 654 | } |
655 | 655 | |
656 | - if(!$cur) $cur = 0; |
|
656 | + if (!$cur) $cur = 0; |
|
657 | 657 | // Open an index file |
658 | - $f = fopen($index_file,"r"); |
|
658 | + $f = fopen($index_file, "r"); |
|
659 | 659 | // Pass if already read |
660 | - for($i=0;$i<$cur;$i++) fgets($f, 1024); |
|
660 | + for ($i = 0; $i < $cur; $i++) fgets($f, 1024); |
|
661 | 661 | // Read each line until the condition meets |
662 | - for($idx=$cur;$idx<$cur+$this->unit_count;$idx++) |
|
662 | + for ($idx = $cur; $idx < $cur + $this->unit_count; $idx++) |
|
663 | 663 | { |
664 | - if(feof($f)) break; |
|
664 | + if (feof($f)) break; |
|
665 | 665 | // Find a location |
666 | 666 | $target_file = trim(fgets($f, 1024)); |
667 | 667 | |
668 | - if(!file_exists($target_file)) continue; |
|
668 | + if (!file_exists($target_file)) continue; |
|
669 | 669 | // Importing data from now on |
670 | - $fp = fopen($target_file,"r"); |
|
671 | - if(!$fp) continue; |
|
670 | + $fp = fopen($target_file, "r"); |
|
671 | + if (!$fp) continue; |
|
672 | 672 | |
673 | 673 | $obj = new stdClass; |
674 | 674 | $obj->module_srl = $module_srl; |
@@ -680,51 +680,51 @@ discard block |
||
680 | 680 | $started = false; |
681 | 681 | $buff = array(); |
682 | 682 | // Start from the body data |
683 | - while(!feof($fp)) |
|
683 | + while (!feof($fp)) |
|
684 | 684 | { |
685 | 685 | $str = fgets($fp, 1024); |
686 | 686 | // Prepare an item |
687 | - if(trim($str) == '<post>') |
|
687 | + if (trim($str) == '<post>') |
|
688 | 688 | { |
689 | 689 | $started = true; |
690 | 690 | // Trackback inserted |
691 | 691 | } |
692 | - else if(substr($str,0,11) == '<trackbacks') |
|
692 | + else if (substr($str, 0, 11) == '<trackbacks') |
|
693 | 693 | { |
694 | 694 | $obj->trackback_count = $this->importTrackbacks($fp, $module_srl, $obj->document_srl); |
695 | 695 | continue; |
696 | 696 | // Comments inserted |
697 | 697 | } |
698 | - else if(substr($str,0,9) == '<comments') |
|
698 | + else if (substr($str, 0, 9) == '<comments') |
|
699 | 699 | { |
700 | 700 | $obj->comment_count = $this->importComments($fp, $module_srl, $obj->document_srl); |
701 | 701 | continue; |
702 | 702 | // Attachment inserted |
703 | 703 | } |
704 | - else if(substr($str,0,9) == '<attaches') |
|
704 | + else if (substr($str, 0, 9) == '<attaches') |
|
705 | 705 | { |
706 | 706 | $obj->uploaded_count = $this->importAttaches($fp, $module_srl, $obj->document_srl, $files); |
707 | 707 | continue; |
708 | 708 | // When starting extra variabls |
709 | 709 | } |
710 | - elseif(trim($str) == '<extra_vars>') |
|
710 | + elseif (trim($str) == '<extra_vars>') |
|
711 | 711 | { |
712 | 712 | $extra_vars = $this->importExtraVars($fp); |
713 | 713 | continue; |
714 | 714 | } |
715 | 715 | |
716 | - if($started) $buff[] = $str; |
|
716 | + if ($started) $buff[] = $str; |
|
717 | 717 | } |
718 | 718 | |
719 | 719 | $xmlDoc = $this->oXmlParser->parse(implode('', $buff)); |
720 | 720 | |
721 | 721 | $category = base64_decode($xmlDoc->post->category->body); |
722 | - if($category_titles[$category]) $obj->category_srl = $category_titles[$category]; |
|
722 | + if ($category_titles[$category]) $obj->category_srl = $category_titles[$category]; |
|
723 | 723 | |
724 | 724 | $obj->member_srl = 0; |
725 | 725 | |
726 | - $obj->is_notice = base64_decode($xmlDoc->post->is_notice->body)=='Y'?'Y':'N'; |
|
727 | - $obj->status = base64_decode($xmlDoc->post->is_secret->body)=='Y'?$oDocumentModel->getConfigStatus('secret'):$oDocumentModel->getConfigStatus('public'); |
|
726 | + $obj->is_notice = base64_decode($xmlDoc->post->is_notice->body) == 'Y' ? 'Y' : 'N'; |
|
727 | + $obj->status = base64_decode($xmlDoc->post->is_secret->body) == 'Y' ? $oDocumentModel->getConfigStatus('secret') : $oDocumentModel->getConfigStatus('public'); |
|
728 | 728 | $obj->title = base64_decode($xmlDoc->post->title->body); |
729 | 729 | $obj->content = base64_decode($xmlDoc->post->content->body); |
730 | 730 | $obj->readed_count = base64_decode($xmlDoc->post->readed_count->body); |
@@ -733,39 +733,39 @@ discard block |
||
733 | 733 | $obj->password = base64_decode($xmlDoc->post->password->body); |
734 | 734 | $obj->user_name = base64_decode($xmlDoc->post->user_name->body); |
735 | 735 | $obj->nick_name = base64_decode($xmlDoc->post->nick_name->body); |
736 | - if(!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
736 | + if (!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
737 | 737 | $obj->user_id = base64_decode($xmlDoc->post->user_id->body); |
738 | 738 | $obj->email_address = base64_decode($xmlDoc->post->email->body); |
739 | 739 | $obj->homepage = base64_decode($xmlDoc->post->homepage->body); |
740 | - if($obj->homepage && strncasecmp('http://', $obj->homepage, 7) !== 0 && strncasecmp('https://', $obj->homepage, 8) !== 0) $obj->homepage = 'http://'.$obj->homepage; |
|
740 | + if ($obj->homepage && strncasecmp('http://', $obj->homepage, 7) !== 0 && strncasecmp('https://', $obj->homepage, 8) !== 0) $obj->homepage = 'http://' . $obj->homepage; |
|
741 | 741 | $obj->tags = base64_decode($xmlDoc->post->tags->body); |
742 | 742 | $obj->regdate = base64_decode($xmlDoc->post->regdate->body); |
743 | 743 | $obj->last_update = base64_decode($xmlDoc->post->update->body); |
744 | 744 | $obj->last_updater = base64_decode($xmlDoc->post->last_updater->body); |
745 | - if(!$obj->last_update) $obj->last_update = $obj->regdate; |
|
745 | + if (!$obj->last_update) $obj->last_update = $obj->regdate; |
|
746 | 746 | $obj->ipaddress = base64_decode($xmlDoc->post->ipaddress->body); |
747 | - $obj->list_order = $obj->update_order = $obj->document_srl*-1; |
|
748 | - $obj->commentStatus = base64_decode($xmlDoc->post->allow_comment->body)!='N'?'ALLOW':'DENY'; |
|
749 | - $obj->allow_trackback = base64_decode($xmlDoc->post->allow_trackback->body)!='N'?'Y':'N'; |
|
747 | + $obj->list_order = $obj->update_order = $obj->document_srl * -1; |
|
748 | + $obj->commentStatus = base64_decode($xmlDoc->post->allow_comment->body) != 'N' ? 'ALLOW' : 'DENY'; |
|
749 | + $obj->allow_trackback = base64_decode($xmlDoc->post->allow_trackback->body) != 'N' ? 'Y' : 'N'; |
|
750 | 750 | $obj->notify_message = base64_decode($xmlDoc->post->is_notice->body); |
751 | 751 | // Change content information (attachment) |
752 | - if(count($files)) |
|
752 | + if (count($files)) |
|
753 | 753 | { |
754 | - foreach($files as $key => $val) |
|
754 | + foreach ($files as $key => $val) |
|
755 | 755 | { |
756 | - $obj->content = preg_replace('/(src|href)\=(["\']?)'.preg_quote($key).'(["\']?)/i','$1="'.$val.'"',$obj->content); |
|
757 | - $obj->content = preg_replace('/(["\']?).\/files\/(.+)\/'.preg_quote($key).'([^"\']+)(["\']?)/i','"'.$val.'"',$obj->content); |
|
758 | - $obj->content = preg_replace('/(["\']?)files\/(.+)\/'.preg_quote($key).'([^"\']+)(["\']?)/i','"'.$val.'"',$obj->content); |
|
756 | + $obj->content = preg_replace('/(src|href)\=(["\']?)' . preg_quote($key) . '(["\']?)/i', '$1="' . $val . '"', $obj->content); |
|
757 | + $obj->content = preg_replace('/(["\']?).\/files\/(.+)\/' . preg_quote($key) . '([^"\']+)(["\']?)/i', '"' . $val . '"', $obj->content); |
|
758 | + $obj->content = preg_replace('/(["\']?)files\/(.+)\/' . preg_quote($key) . '([^"\']+)(["\']?)/i', '"' . $val . '"', $obj->content); |
|
759 | 759 | } |
760 | 760 | } |
761 | 761 | |
762 | 762 | $output = executeQuery('document.insertDocument', $obj); |
763 | 763 | |
764 | - if($output->toBool() && $obj->tags) |
|
764 | + if ($output->toBool() && $obj->tags) |
|
765 | 765 | { |
766 | - $tag_list = explode(',',$obj->tags); |
|
766 | + $tag_list = explode(',', $obj->tags); |
|
767 | 767 | $tag_count = count($tag_list); |
768 | - for($i=0;$i<$tag_count;$i++) |
|
768 | + for ($i = 0; $i < $tag_count; $i++) |
|
769 | 769 | { |
770 | 770 | $args = new stdClass; |
771 | 771 | $args->tag_srl = getNextSequence(); |
@@ -773,17 +773,17 @@ discard block |
||
773 | 773 | $args->document_srl = $obj->document_srl; |
774 | 774 | $args->tag = trim($tag_list[$i]); |
775 | 775 | $args->regdate = $obj->regdate; |
776 | - if(!$args->tag) continue; |
|
776 | + if (!$args->tag) continue; |
|
777 | 777 | $output = executeQuery('tag.insertTag', $args); |
778 | 778 | } |
779 | 779 | |
780 | 780 | } |
781 | 781 | // Add extra variables |
782 | - if(count($extra_vars)) |
|
782 | + if (count($extra_vars)) |
|
783 | 783 | { |
784 | - foreach($extra_vars as $key => $val) |
|
784 | + foreach ($extra_vars as $key => $val) |
|
785 | 785 | { |
786 | - if(!$val->value) continue; |
|
786 | + if (!$val->value) continue; |
|
787 | 787 | unset($e_args); |
788 | 788 | $e_args->module_srl = $module_srl; |
789 | 789 | $e_args->document_srl = $obj->document_srl; |
@@ -792,7 +792,7 @@ discard block |
||
792 | 792 | $e_args->lang_code = $val->lang_code; |
793 | 793 | $e_args->eid = $val->eid; |
794 | 794 | // Create a key for extra vars if not exists (except vars for title and content) |
795 | - if(!preg_match('/^(title|content)_(.+)$/i',$e_args->eid) && !$extra_keys[$e_args->eid]) |
|
795 | + if (!preg_match('/^(title|content)_(.+)$/i', $e_args->eid) && !$extra_keys[$e_args->eid]) |
|
796 | 796 | { |
797 | 797 | unset($ek_args); |
798 | 798 | $ek_args->module_srl = $module_srl; |
@@ -816,9 +816,9 @@ discard block |
||
816 | 816 | |
817 | 817 | fclose($f); |
818 | 818 | // Sync category counts |
819 | - if(count($category_list)) foreach($category_list as $key => $val) $oDocumentController->updateCategoryCount($module_srl, $val->category_srl); |
|
819 | + if (count($category_list)) foreach ($category_list as $key => $val) $oDocumentController->updateCategoryCount($module_srl, $val->category_srl); |
|
820 | 820 | |
821 | - return $idx-1; |
|
821 | + return $idx - 1; |
|
822 | 822 | } |
823 | 823 | |
824 | 824 | /** |
@@ -834,17 +834,17 @@ discard block |
||
834 | 834 | $buff = null; |
835 | 835 | $cnt = 0; |
836 | 836 | |
837 | - while(!feof($fp)) |
|
837 | + while (!feof($fp)) |
|
838 | 838 | { |
839 | 839 | $str = fgets($fp, 1024); |
840 | 840 | // If </trackbacks> is, break |
841 | - if(trim($str) == '</trackbacks>') break; |
|
841 | + if (trim($str) == '</trackbacks>') break; |
|
842 | 842 | // If <trackback>, start importing |
843 | - if(trim($str) == '<trackback>') $started = true; |
|
843 | + if (trim($str) == '<trackback>') $started = true; |
|
844 | 844 | |
845 | - if($started) $buff .= $str; |
|
845 | + if ($started) $buff .= $str; |
|
846 | 846 | // If </trackback>, insert to the DB |
847 | - if(trim($str) == '</trackback>') |
|
847 | + if (trim($str) == '</trackback>') |
|
848 | 848 | { |
849 | 849 | $xmlDoc = $this->oXmlParser->parse($buff); |
850 | 850 | |
@@ -858,9 +858,9 @@ discard block |
||
858 | 858 | $obj->excerpt = base64_decode($xmlDoc->trackback->excerpt->body); |
859 | 859 | $obj->regdate = base64_decode($xmlDoc->trackback->regdate->body); |
860 | 860 | $obj->ipaddress = base64_decode($xmlDoc->trackback->ipaddress->body); |
861 | - $obj->list_order = -1*$obj->trackback_srl; |
|
861 | + $obj->list_order = -1 * $obj->trackback_srl; |
|
862 | 862 | $output = executeQuery('trackback.insertTrackback', $obj); |
863 | - if($output->toBool()) $cnt++; |
|
863 | + if ($output->toBool()) $cnt++; |
|
864 | 864 | |
865 | 865 | $buff = null; |
866 | 866 | $started = false; |
@@ -884,13 +884,13 @@ discard block |
||
884 | 884 | |
885 | 885 | $sequences = array(); |
886 | 886 | |
887 | - while(!feof($fp)) |
|
887 | + while (!feof($fp)) |
|
888 | 888 | { |
889 | 889 | $str = fgets($fp, 1024); |
890 | 890 | // If </comments> is, break |
891 | - if(trim($str) == '</comments>') break; |
|
891 | + if (trim($str) == '</comments>') break; |
|
892 | 892 | // If <comment> is, start importing |
893 | - if(trim($str) == '<comment>') |
|
893 | + if (trim($str) == '<comment>') |
|
894 | 894 | { |
895 | 895 | $started = true; |
896 | 896 | $obj = new stdClass; |
@@ -898,15 +898,15 @@ discard block |
||
898 | 898 | $files = array(); |
899 | 899 | } |
900 | 900 | // If <attaches is, start importing attachments |
901 | - if(substr($str,0,9) == '<attaches') |
|
901 | + if (substr($str, 0, 9) == '<attaches') |
|
902 | 902 | { |
903 | 903 | $obj->uploaded_count = $this->importAttaches($fp, $module_srl, $obj->comment_srl, $files); |
904 | 904 | continue; |
905 | 905 | } |
906 | 906 | |
907 | - if($started) $buff .= $str; |
|
907 | + if ($started) $buff .= $str; |
|
908 | 908 | // If </comment> is, insert to the DB |
909 | - if(trim($str) == '</comment>') |
|
909 | + if (trim($str) == '</comment>') |
|
910 | 910 | { |
911 | 911 | $xmlDoc = $this->oXmlParser->parse($buff); |
912 | 912 | |
@@ -916,35 +916,35 @@ discard block |
||
916 | 916 | |
917 | 917 | $obj->module_srl = $module_srl; |
918 | 918 | |
919 | - if($parent) $obj->parent_srl = $sequences[$parent]; |
|
919 | + if ($parent) $obj->parent_srl = $sequences[$parent]; |
|
920 | 920 | else $obj->parent_srl = 0; |
921 | 921 | |
922 | 922 | $obj->document_srl = $document_srl; |
923 | - $obj->is_secret = base64_decode($xmlDoc->comment->is_secret->body)=='Y'?'Y':'N'; |
|
924 | - $obj->notify_message = base64_decode($xmlDoc->comment->notify_message->body)=='Y'?'Y':'N'; |
|
923 | + $obj->is_secret = base64_decode($xmlDoc->comment->is_secret->body) == 'Y' ? 'Y' : 'N'; |
|
924 | + $obj->notify_message = base64_decode($xmlDoc->comment->notify_message->body) == 'Y' ? 'Y' : 'N'; |
|
925 | 925 | $obj->content = base64_decode($xmlDoc->comment->content->body); |
926 | 926 | $obj->voted_count = base64_decode($xmlDoc->comment->voted_count->body); |
927 | 927 | $obj->blamed_count = base64_decode($xmlDoc->comment->blamed_count->body); |
928 | 928 | $obj->password = base64_decode($xmlDoc->comment->password->body); |
929 | - $obj->user_name =base64_decode($xmlDoc->comment->user_name->body); |
|
929 | + $obj->user_name = base64_decode($xmlDoc->comment->user_name->body); |
|
930 | 930 | $obj->nick_name = base64_decode($xmlDoc->comment->nick_name->body); |
931 | - if(!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
931 | + if (!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
932 | 932 | $obj->user_id = base64_decode($xmlDoc->comment->user_id->body); |
933 | 933 | $obj->member_srl = 0; |
934 | 934 | $obj->email_address = base64_decode($xmlDoc->comment->email->body); |
935 | 935 | $obj->homepage = base64_decode($xmlDoc->comment->homepage->body); |
936 | 936 | $obj->regdate = base64_decode($xmlDoc->comment->regdate->body); |
937 | 937 | $obj->last_update = base64_decode($xmlDoc->comment->update->body); |
938 | - if(!$obj->last_update) $obj->last_update = $obj->regdate; |
|
938 | + if (!$obj->last_update) $obj->last_update = $obj->regdate; |
|
939 | 939 | $obj->ipaddress = base64_decode($xmlDoc->comment->ipaddress->body); |
940 | - $obj->status = base64_decode($xmlDoc->comment->status->body)==''?'1':base64_decode($xmlDoc->comment->status->body); |
|
941 | - $obj->list_order = $obj->comment_srl*-1; |
|
940 | + $obj->status = base64_decode($xmlDoc->comment->status->body) == '' ? '1' : base64_decode($xmlDoc->comment->status->body); |
|
941 | + $obj->list_order = $obj->comment_srl * -1; |
|
942 | 942 | // Change content information (attachment) |
943 | - if(count($files)) |
|
943 | + if (count($files)) |
|
944 | 944 | { |
945 | - foreach($files as $key => $val) |
|
945 | + foreach ($files as $key => $val) |
|
946 | 946 | { |
947 | - $obj->content = preg_replace('/(src|href)\=(["\']?)'.preg_quote($key).'(["\']?)/i','$1="'.$val.'"',$obj->content); |
|
947 | + $obj->content = preg_replace('/(src|href)\=(["\']?)' . preg_quote($key) . '(["\']?)/i', '$1="' . $val . '"', $obj->content); |
|
948 | 948 | } |
949 | 949 | } |
950 | 950 | // Comment list first |
@@ -954,7 +954,7 @@ discard block |
||
954 | 954 | $list_args->module_srl = $obj->module_srl; |
955 | 955 | $list_args->regdate = $obj->regdate; |
956 | 956 | // Set data directly if parent comment doesn't exist |
957 | - if(!$obj->parent_srl) |
|
957 | + if (!$obj->parent_srl) |
|
958 | 958 | { |
959 | 959 | $list_args->head = $list_args->arrange = $obj->comment_srl; |
960 | 960 | $list_args->depth = 0; |
@@ -966,25 +966,25 @@ discard block |
||
966 | 966 | $parent_args->comment_srl = $obj->parent_srl; |
967 | 967 | $parent_output = executeQuery('comment.getCommentListItem', $parent_args); |
968 | 968 | // Return if parent comment doesn't exist |
969 | - if(!$parent_output->toBool() || !$parent_output->data) continue; |
|
969 | + if (!$parent_output->toBool() || !$parent_output->data) continue; |
|
970 | 970 | $parent = $parent_output->data; |
971 | 971 | |
972 | 972 | $list_args->head = $parent->head; |
973 | - $list_args->depth = $parent->depth+1; |
|
974 | - if($list_args->depth<2) $list_args->arrange = $obj->comment_srl; |
|
973 | + $list_args->depth = $parent->depth + 1; |
|
974 | + if ($list_args->depth < 2) $list_args->arrange = $obj->comment_srl; |
|
975 | 975 | else |
976 | 976 | { |
977 | 977 | $list_args->arrange = $parent->arrange; |
978 | 978 | $output = executeQuery('comment.updateCommentListArrange', $list_args); |
979 | - if(!$output->toBool()) return $output; |
|
979 | + if (!$output->toBool()) return $output; |
|
980 | 980 | } |
981 | 981 | } |
982 | 982 | |
983 | 983 | $output = executeQuery('comment.insertCommentList', $list_args); |
984 | - if($output->toBool()) |
|
984 | + if ($output->toBool()) |
|
985 | 985 | { |
986 | 986 | $output = executeQuery('comment.insertComment', $obj); |
987 | - if($output->toBool()) $cnt++; |
|
987 | + if ($output->toBool()) $cnt++; |
|
988 | 988 | } |
989 | 989 | |
990 | 990 | $buff = null; |
@@ -1010,13 +1010,13 @@ discard block |
||
1010 | 1010 | $buff = null; |
1011 | 1011 | |
1012 | 1012 | $file_obj = new stdClass; |
1013 | - while(!feof($fp)) |
|
1013 | + while (!feof($fp)) |
|
1014 | 1014 | { |
1015 | 1015 | $str = trim(fgets($fp, 1024)); |
1016 | 1016 | // If it ends with </attaches>, break |
1017 | - if(trim($str) == '</attaches>') break; |
|
1017 | + if (trim($str) == '</attaches>') break; |
|
1018 | 1018 | // If it starts with <attach>, collect attachments |
1019 | - if(trim($str) == '<attach>') |
|
1019 | + if (trim($str) == '<attach>') |
|
1020 | 1020 | { |
1021 | 1021 | $file_obj->file_srl = getNextSequence(); |
1022 | 1022 | $file_obj->upload_target_srl = $upload_target_srl; |
@@ -1026,26 +1026,26 @@ discard block |
||
1026 | 1026 | $buff = null; |
1027 | 1027 | // If it starts with <file>, handle the attachement in xml file |
1028 | 1028 | } |
1029 | - else if(trim($str) == '<file>') |
|
1029 | + else if (trim($str) == '<file>') |
|
1030 | 1030 | { |
1031 | 1031 | $file_obj->file = $this->saveTemporaryFile($fp); |
1032 | 1032 | continue; |
1033 | 1033 | } |
1034 | 1034 | |
1035 | - if($started) $buff .= $str; |
|
1035 | + if ($started) $buff .= $str; |
|
1036 | 1036 | // If it ends with </attach>, handle attachements |
1037 | - if(trim($str) == '</attach>') |
|
1037 | + if (trim($str) == '</attach>') |
|
1038 | 1038 | { |
1039 | - $xmlDoc = $this->oXmlParser->parse($buff.$str); |
|
1039 | + $xmlDoc = $this->oXmlParser->parse($buff . $str); |
|
1040 | 1040 | |
1041 | 1041 | $file_obj->source_filename = base64_decode($xmlDoc->attach->filename->body); |
1042 | 1042 | $file_obj->download_count = base64_decode($xmlDoc->attach->download_count->body); |
1043 | 1043 | |
1044 | - if(!$file_obj->file) |
|
1044 | + if (!$file_obj->file) |
|
1045 | 1045 | { |
1046 | 1046 | $url = base64_decode($xmlDoc->attach->url->body); |
1047 | 1047 | $path = base64_decode($xmlDoc->attach->path->body); |
1048 | - if($path && file_exists($path)) $file_obj->file = $path; |
|
1048 | + if ($path && file_exists($path)) $file_obj->file = $path; |
|
1049 | 1049 | else |
1050 | 1050 | { |
1051 | 1051 | $file_obj->file = $this->getTmpFilename(); |
@@ -1053,10 +1053,10 @@ discard block |
||
1053 | 1053 | } |
1054 | 1054 | } |
1055 | 1055 | |
1056 | - if(file_exists($file_obj->file)) |
|
1056 | + if (file_exists($file_obj->file)) |
|
1057 | 1057 | { |
1058 | 1058 | // Set upload path by checking if the attachement is an image or other kind of file |
1059 | - if(preg_match("/\.(jpe?g|gif|png|wm[va]|mpe?g|avi|swf|flv|mp[1-4]|as[fx]|wav|midi?|moo?v|qt|r[am]{1,2}|m4v)$/i", $file_obj->source_filename)) |
|
1059 | + if (preg_match("/\.(jpe?g|gif|png|wm[va]|mpe?g|avi|swf|flv|mp[1-4]|as[fx]|wav|midi?|moo?v|qt|r[am]{1,2}|m4v)$/i", $file_obj->source_filename)) |
|
1060 | 1060 | { |
1061 | 1061 | // Immediately remove the direct file if it has any kind of extensions for hacking |
1062 | 1062 | $file_obj->source_filename = preg_replace('/\.(php|phtm|phar|html?|cgi|pl|exe|jsp|asp|inc)/i', '$0-x', $file_obj->source_filename); |
@@ -1064,14 +1064,14 @@ discard block |
||
1064 | 1064 | |
1065 | 1065 | $path = sprintf("./files/attach/images/%s/%s", $module_srl, getNumberingPath($upload_target_srl, 3)); |
1066 | 1066 | |
1067 | - $ext = substr(strrchr($file_obj->source_filename,'.'),1); |
|
1068 | - $_filename = md5(crypt(rand(1000000, 900000), rand(0, 100))).'.'.$ext; |
|
1069 | - $filename = $path.$_filename; |
|
1067 | + $ext = substr(strrchr($file_obj->source_filename, '.'), 1); |
|
1068 | + $_filename = md5(crypt(rand(1000000, 900000), rand(0, 100))) . '.' . $ext; |
|
1069 | + $filename = $path . $_filename; |
|
1070 | 1070 | |
1071 | 1071 | $idx = 1; |
1072 | - while(file_exists($filename)) |
|
1072 | + while (file_exists($filename)) |
|
1073 | 1073 | { |
1074 | - $filename = $path.preg_replace('/\.([a-z0-9]+)$/i','_'.$idx.'.$1', $_filename); |
|
1074 | + $filename = $path . preg_replace('/\.([a-z0-9]+)$/i', '_' . $idx . '.$1', $_filename); |
|
1075 | 1075 | $idx++; |
1076 | 1076 | } |
1077 | 1077 | |
@@ -1079,14 +1079,14 @@ discard block |
||
1079 | 1079 | } |
1080 | 1080 | else |
1081 | 1081 | { |
1082 | - $path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl,3)); |
|
1083 | - $filename = $path.md5(crypt(rand(1000000,900000), rand(0,100))); |
|
1082 | + $path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl, 3)); |
|
1083 | + $filename = $path . md5(crypt(rand(1000000, 900000), rand(0, 100))); |
|
1084 | 1084 | $file_obj->direct_download = 'N'; |
1085 | 1085 | } |
1086 | 1086 | // Create a directory |
1087 | - if(!FileHandler::makeDir($path)) continue; |
|
1087 | + if (!FileHandler::makeDir($path)) continue; |
|
1088 | 1088 | |
1089 | - if(strncmp('./files/cache/importer/', $file_obj->file, 23) === 0) |
|
1089 | + if (strncmp('./files/cache/importer/', $file_obj->file, 23) === 0) |
|
1090 | 1090 | { |
1091 | 1091 | FileHandler::rename($file_obj->file, $filename); |
1092 | 1092 | } |
@@ -1097,23 +1097,23 @@ discard block |
||
1097 | 1097 | |
1098 | 1098 | // Insert the file to the DB |
1099 | 1099 | unset($file_obj->file); |
1100 | - if(file_exists($filename)) |
|
1100 | + if (file_exists($filename)) |
|
1101 | 1101 | { |
1102 | 1102 | $file_obj->uploaded_filename = $filename; |
1103 | 1103 | $file_obj->file_size = filesize($filename); |
1104 | 1104 | $file_obj->comment = NULL; |
1105 | 1105 | $file_obj->member_srl = 0; |
1106 | - $file_obj->sid = md5(rand(rand(1111111,4444444),rand(4444445,9999999))); |
|
1106 | + $file_obj->sid = md5(rand(rand(1111111, 4444444), rand(4444445, 9999999))); |
|
1107 | 1107 | $file_obj->isvalid = 'Y'; |
1108 | 1108 | $output = executeQuery('file.insertFile', $file_obj); |
1109 | 1109 | |
1110 | - if($output->toBool()) |
|
1110 | + if ($output->toBool()) |
|
1111 | 1111 | { |
1112 | 1112 | $uploaded_count++; |
1113 | 1113 | $tmp_obj = null; |
1114 | 1114 | $tmp_obj->source_filename = $file_obj->source_filename; |
1115 | - if($file_obj->direct_download == 'Y') $files[$file_obj->source_filename] = $file_obj->uploaded_filename; |
|
1116 | - else $files[$file_obj->source_filename] = getUrl('','module','file','act','procFileDownload','file_srl',$file_obj->file_srl,'sid',$file_obj->sid); |
|
1115 | + if ($file_obj->direct_download == 'Y') $files[$file_obj->source_filename] = $file_obj->uploaded_filename; |
|
1116 | + else $files[$file_obj->source_filename] = getUrl('', 'module', 'file', 'act', 'procFileDownload', 'file_srl', $file_obj->file_srl, 'sid', $file_obj->sid); |
|
1117 | 1117 | } |
1118 | 1118 | } |
1119 | 1119 | } |
@@ -1130,8 +1130,8 @@ discard block |
||
1130 | 1130 | { |
1131 | 1131 | $path = "./files/cache/importer"; |
1132 | 1132 | FileHandler::makeDir($path); |
1133 | - $filename = sprintf("%s/%d", $path, rand(11111111,99999999)); |
|
1134 | - if(file_exists($filename)) $filename .= rand(111,999); |
|
1133 | + $filename = sprintf("%s/%d", $path, rand(11111111, 99999999)); |
|
1134 | + if (file_exists($filename)) $filename .= rand(111, 999); |
|
1135 | 1135 | return $filename; |
1136 | 1136 | } |
1137 | 1137 | |
@@ -1146,14 +1146,14 @@ discard block |
||
1146 | 1146 | $f = fopen($temp_filename, "w"); |
1147 | 1147 | |
1148 | 1148 | $buff = ''; |
1149 | - while(!feof($fp)) |
|
1149 | + while (!feof($fp)) |
|
1150 | 1150 | { |
1151 | 1151 | $str = trim(fgets($fp, 1024)); |
1152 | - if(trim($str) == '</file>') break; |
|
1152 | + if (trim($str) == '</file>') break; |
|
1153 | 1153 | |
1154 | 1154 | $buff .= $str; |
1155 | 1155 | |
1156 | - if(substr($buff,-7)=='</buff>') |
|
1156 | + if (substr($buff, -7) == '</buff>') |
|
1157 | 1157 | { |
1158 | 1158 | fwrite($f, base64_decode(substr($buff, 6, -7))); |
1159 | 1159 | $buff = ''; |
@@ -1172,23 +1172,23 @@ discard block |
||
1172 | 1172 | function importExtraVars($fp) |
1173 | 1173 | { |
1174 | 1174 | $buff = null; |
1175 | - while(!feof($fp)) |
|
1175 | + while (!feof($fp)) |
|
1176 | 1176 | { |
1177 | 1177 | $buff .= $str = trim(fgets($fp, 1024)); |
1178 | - if(trim($str) == '</extra_vars>') break; |
|
1178 | + if (trim($str) == '</extra_vars>') break; |
|
1179 | 1179 | } |
1180 | - if(!$buff) return array(); |
|
1180 | + if (!$buff) return array(); |
|
1181 | 1181 | |
1182 | - $buff = '<extra_vars>'.$buff; |
|
1182 | + $buff = '<extra_vars>' . $buff; |
|
1183 | 1183 | $oXmlParser = new XmlParser(); |
1184 | 1184 | $xmlDoc = $this->oXmlParser->parse($buff); |
1185 | - if(!count($xmlDoc->extra_vars->key)) return array(); |
|
1185 | + if (!count($xmlDoc->extra_vars->key)) return array(); |
|
1186 | 1186 | |
1187 | 1187 | $index = 1; |
1188 | - foreach($xmlDoc->extra_vars->key as $k => $v) |
|
1188 | + foreach ($xmlDoc->extra_vars->key as $k => $v) |
|
1189 | 1189 | { |
1190 | 1190 | unset($vobj); |
1191 | - if($v->var_idx) |
|
1191 | + if ($v->var_idx) |
|
1192 | 1192 | { |
1193 | 1193 | $vobj->var_idx = base64_decode($v->var_idx->body); |
1194 | 1194 | $vobj->lang_code = base64_decode($v->lang_code->body); |
@@ -1196,14 +1196,14 @@ discard block |
||
1196 | 1196 | $vobj->eid = base64_decode($v->eid->body); |
1197 | 1197 | |
1198 | 1198 | } |
1199 | - else if($v->body) |
|
1199 | + else if ($v->body) |
|
1200 | 1200 | { |
1201 | 1201 | $vobj->var_idx = $index; |
1202 | 1202 | $vobj->lang_code = Context::getLangType(); |
1203 | 1203 | $vobj->value = base64_decode($v->body); |
1204 | - $vobj->eid = 'extra_vars'.$index; |
|
1204 | + $vobj->eid = 'extra_vars' . $index; |
|
1205 | 1205 | } |
1206 | - $extra_vars["extra_vars".$index] = $vobj; |
|
1206 | + $extra_vars["extra_vars" . $index] = $vobj; |
|
1207 | 1207 | $index++; |
1208 | 1208 | } |
1209 | 1209 | return $extra_vars; |
@@ -55,24 +55,29 @@ discard block |
||
55 | 55 | { |
56 | 56 | $isExists = 'true'; |
57 | 57 | $type = 'XML'; |
58 | - if(stristr($str, 'tattertools')) $type = 'TTXML'; |
|
58 | + if(stristr($str, 'tattertools')) { |
|
59 | + $type = 'TTXML'; |
|
60 | + } |
|
59 | 61 | |
60 | 62 | $this->add('type', $type); |
61 | 63 | } |
62 | 64 | fclose($fp); |
63 | 65 | $resultMessage = $lang->found_xml_file; |
66 | + } else { |
|
67 | + $resultMessage = $lang->cannot_url_file; |
|
64 | 68 | } |
65 | - else $resultMessage = $lang->cannot_url_file; |
|
69 | + } else { |
|
70 | + $resultMessage = $lang->cannot_allow_fopen_in_phpini; |
|
66 | 71 | } |
67 | - else $resultMessage = $lang->cannot_allow_fopen_in_phpini; |
|
68 | 72 | |
69 | 73 | $this->add('exists', $isExists); |
70 | - } |
|
71 | - else |
|
74 | + } else |
|
72 | 75 | { |
73 | 76 | $realPath = FileHandler::getRealPath($filename); |
74 | 77 | |
75 | - if(file_exists($realPath) && is_file($realPath)) $isExists = 'true'; |
|
78 | + if(file_exists($realPath) && is_file($realPath)) { |
|
79 | + $isExists = 'true'; |
|
80 | + } |
|
76 | 81 | $this->add('exists', $isExists); |
77 | 82 | |
78 | 83 | if($isExists == 'true') |
@@ -81,13 +86,16 @@ discard block |
||
81 | 86 | |
82 | 87 | $fp = fopen($realPath, "r"); |
83 | 88 | $str = fgets($fp, 100); |
84 | - if(stristr($str, 'tattertools')) $type = 'TTXML'; |
|
89 | + if(stristr($str, 'tattertools')) { |
|
90 | + $type = 'TTXML'; |
|
91 | + } |
|
85 | 92 | fclose($fp); |
86 | 93 | |
87 | 94 | $this->add('type', $type); |
88 | 95 | $resultMessage = $lang->found_xml_file; |
96 | + } else { |
|
97 | + $resultMessage = $lang->not_found_xml_file; |
|
89 | 98 | } |
90 | - else $resultMessage = $lang->not_found_xml_file; |
|
91 | 99 | } |
92 | 100 | $this->add('result_message', $resultMessage); |
93 | 101 | } |
@@ -112,8 +120,7 @@ discard block |
||
112 | 120 | { |
113 | 121 | $output = executeQuery('importer.updateDocumentSync'.$postFix); |
114 | 122 | $output = executeQuery('importer.updateCommentSync'.$postFix); |
115 | - } |
|
116 | - else |
|
123 | + } else |
|
117 | 124 | { |
118 | 125 | $output = executeQueryArray ('importer.getDocumentMemberSrlWithUserID'.$postFix); |
119 | 126 | if(is_array ($output->data) && count ($output->data)) |
@@ -129,8 +136,7 @@ discard block |
||
129 | 136 | if($tmp->toBool () === true) |
130 | 137 | { |
131 | 138 | $success_count++; |
132 | - } |
|
133 | - else |
|
139 | + } else |
|
134 | 140 | { |
135 | 141 | $error_count++; |
136 | 142 | } |
@@ -152,8 +158,7 @@ discard block |
||
152 | 158 | if($tmp->toBool () === true) |
153 | 159 | { |
154 | 160 | $success_count++; |
155 | - } |
|
156 | - else |
|
161 | + } else |
|
157 | 162 | { |
158 | 163 | $error_count++; |
159 | 164 | } |
@@ -182,11 +187,15 @@ discard block |
||
182 | 187 | { |
183 | 188 | case 'member' : |
184 | 189 | $output = $oExtract->set($xml_file,'<members ', '</members>', '<member>', '</member>'); |
185 | - if($output->toBool()) $oExtract->saveItems(); |
|
190 | + if($output->toBool()) { |
|
191 | + $oExtract->saveItems(); |
|
192 | + } |
|
186 | 193 | break; |
187 | 194 | case 'message' : |
188 | 195 | $output = $oExtract->set($xml_file,'<messages ', '</messages>', '<message>','</message>'); |
189 | - if($output->toBool()) $oExtract->saveItems(); |
|
196 | + if($output->toBool()) { |
|
197 | + $oExtract->saveItems(); |
|
198 | + } |
|
190 | 199 | break; |
191 | 200 | case 'ttxml' : |
192 | 201 | // Category information |
@@ -204,8 +213,12 @@ discard block |
||
204 | 213 | $started = true; |
205 | 214 | $str = strstr($str, '<category>'); |
206 | 215 | } |
207 | - if(substr($str,0,strlen('<post ')) == '<post ') break; |
|
208 | - if ($started) $buff .= $str; |
|
216 | + if(substr($str,0,strlen('<post ')) == '<post ') { |
|
217 | + break; |
|
218 | + } |
|
219 | + if ($started) { |
|
220 | + $buff .= $str; |
|
221 | + } |
|
209 | 222 | } |
210 | 223 | $buff = '<categories>'.$buff.'</categories>'; |
211 | 224 | $oExtract->closeFile(); |
@@ -242,7 +255,9 @@ discard block |
||
242 | 255 | FileHandler::writeFile($guestbook_filename, $buff); |
243 | 256 | // Individual items |
244 | 257 | $output = $oExtract->set($xml_file,'<blog', '</blog>', '<post ', '</post>'); |
245 | - if($output->toBool()) $oExtract->saveItems(); |
|
258 | + if($output->toBool()) { |
|
259 | + $oExtract->saveItems(); |
|
260 | + } |
|
246 | 261 | } |
247 | 262 | } |
248 | 263 | break; |
@@ -254,7 +269,9 @@ discard block |
||
254 | 269 | $oExtract->mergeItems('category.xml'); |
255 | 270 | // Get each item |
256 | 271 | $output = $oExtract->set($xml_file,'<posts ', '</posts>', '<post>', '</post>'); |
257 | - if($output->toBool()) $oExtract->saveItems(); |
|
272 | + if($output->toBool()) { |
|
273 | + $oExtract->saveItems(); |
|
274 | + } |
|
258 | 275 | } |
259 | 276 | break; |
260 | 277 | } |
@@ -291,19 +308,25 @@ discard block |
||
291 | 308 | $this->unit_count = Context::get('unit_count'); |
292 | 309 | // Check if an index file exists |
293 | 310 | $index_file = './files/cache/importer/'.$key.'/index'; |
294 | - if(!file_exists($index_file)) return new Object(-1, 'msg_invalid_xml_file'); |
|
311 | + if(!file_exists($index_file)) { |
|
312 | + return new Object(-1, 'msg_invalid_xml_file'); |
|
313 | + } |
|
295 | 314 | |
296 | 315 | switch($type) |
297 | 316 | { |
298 | 317 | case 'ttxml' : |
299 | - if(!$target_module) return new Object(-1,'msg_invalid_request'); |
|
318 | + if(!$target_module) { |
|
319 | + return new Object(-1,'msg_invalid_request'); |
|
320 | + } |
|
300 | 321 | |
301 | 322 | $oModuleModel = getModel('module'); |
302 | 323 | $columnList = array('module_srl', 'module'); |
303 | 324 | $target_module_info = $oModuleModel->getModuleInfoByModuleSrl($target_module, $columnList); |
304 | 325 | |
305 | 326 | $ttimporter = FileHandler::exists(_XE_PATH_ . 'modules/importer/ttimport.class.php'); |
306 | - if($ttimporter) require_once($ttimporter); |
|
327 | + if($ttimporter) { |
|
328 | + require_once($ttimporter); |
|
329 | + } |
|
307 | 330 | |
308 | 331 | $oTT = new ttimport(); |
309 | 332 | $cur = $oTT->importModule($key, $cur, $index_file, $this->unit_count, $target_module, $guestbook_target_module, $user_id, $target_module_info->module); |
@@ -316,7 +339,9 @@ discard block |
||
316 | 339 | break; |
317 | 340 | case 'module' : |
318 | 341 | // Check if the target module exists |
319 | - if(!$target_module) return new Object(-1,'msg_invalid_request'); |
|
342 | + if(!$target_module) { |
|
343 | + return new Object(-1,'msg_invalid_request'); |
|
344 | + } |
|
320 | 345 | $cur = $this->importModule($key, $cur, $index_file, $target_module); |
321 | 346 | break; |
322 | 347 | } |
@@ -331,8 +356,9 @@ discard block |
||
331 | 356 | { |
332 | 357 | $this->setMessage( sprintf(Context::getLang('msg_import_finished'), $cur, $total) ); |
333 | 358 | FileHandler::removeDir('./files/cache/importer/'.$key); |
359 | + } else { |
|
360 | + $this->setMessage( sprintf(Context::getLang('msg_importing'), $total, $cur) ); |
|
334 | 361 | } |
335 | - else $this->setMessage( sprintf(Context::getLang('msg_importing'), $total, $cur) ); |
|
336 | 362 | } |
337 | 363 | |
338 | 364 | /** |
@@ -344,7 +370,9 @@ discard block |
||
344 | 370 | */ |
345 | 371 | function importMember($key, $cur, $index_file) |
346 | 372 | { |
347 | - if(!$cur) $cur = 0; |
|
373 | + if(!$cur) { |
|
374 | + $cur = 0; |
|
375 | + } |
|
348 | 376 | // Create the xmlParser object |
349 | 377 | $oXmlParser = new XmlParser(); |
350 | 378 | // Create objects for importing member information |
@@ -359,24 +387,32 @@ discard block |
||
359 | 387 | // Open an index file |
360 | 388 | $f = fopen($index_file,"r"); |
361 | 389 | // Pass if already read |
362 | - for($i=0;$i<$cur;$i++) fgets($f, 1024); |
|
390 | + for($i=0;$i<$cur;$i++) { |
|
391 | + fgets($f, 1024); |
|
392 | + } |
|
363 | 393 | // Read by each line until the condition meets |
364 | 394 | for($idx=$cur;$idx<$cur+$this->unit_count;$idx++) |
365 | 395 | { |
366 | - if(feof($f)) break; |
|
396 | + if(feof($f)) { |
|
397 | + break; |
|
398 | + } |
|
367 | 399 | // Find a given location |
368 | 400 | $target_file = trim(fgets($f, 1024)); |
369 | 401 | // Load and parse the file |
370 | 402 | $xmlObj = $oXmlParser->loadXmlFile($target_file); |
371 | 403 | FileHandler::removeFile($target_file); |
372 | - if(!$xmlObj) continue; |
|
404 | + if(!$xmlObj) { |
|
405 | + continue; |
|
406 | + } |
|
373 | 407 | // List Objects |
374 | 408 | $obj = null; |
375 | 409 | $obj->user_id = base64_decode($xmlObj->member->user_id->body); |
376 | 410 | $obj->password = base64_decode($xmlObj->member->password->body); |
377 | 411 | $obj->user_name = base64_decode($xmlObj->member->user_name->body); |
378 | 412 | $obj->nick_name = base64_decode($xmlObj->member->nick_name->body); |
379 | - if(!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
413 | + if(!$obj->user_name) { |
|
414 | + $obj->user_name = $obj->nick_name; |
|
415 | + } |
|
380 | 416 | $obj->email = base64_decode($xmlObj->member->email->body); |
381 | 417 | $obj->homepage = base64_decode($xmlObj->member->homepage->body); |
382 | 418 | $obj->blog = base64_decode($xmlObj->member->blog->body); |
@@ -394,22 +430,32 @@ discard block |
||
394 | 430 | { |
395 | 431 | foreach($xmlObj->member->extra_vars as $key => $val) |
396 | 432 | { |
397 | - if(in_array($key, array('node_name','attrs','body'))) continue; |
|
433 | + if(in_array($key, array('node_name','attrs','body'))) { |
|
434 | + continue; |
|
435 | + } |
|
398 | 436 | $obj->extra_vars->{$key} = base64_decode($val->body); |
399 | 437 | } |
400 | 438 | } |
401 | 439 | // Create url for homepage and blog |
402 | - if($obj->homepage && strncasecmp('http://', $obj->homepage, 7) !== 0 && strncasecmp('https://', $obj->homepage, 8) !== 0) $obj->homepage = 'http://'.$obj->homepage; |
|
440 | + if($obj->homepage && strncasecmp('http://', $obj->homepage, 7) !== 0 && strncasecmp('https://', $obj->homepage, 8) !== 0) { |
|
441 | + $obj->homepage = 'http://'.$obj->homepage; |
|
442 | + } |
|
403 | 443 | // email address column |
404 | 444 | $obj->email_address = $obj->email; |
405 | 445 | list($obj->email_id, $obj->email_host) = explode('@', $obj->email); |
406 | 446 | // Set the mailing option |
407 | - if($obj->allow_mailing!='Y') $obj->allow_mailing = 'N'; |
|
447 | + if($obj->allow_mailing!='Y') { |
|
448 | + $obj->allow_mailing = 'N'; |
|
449 | + } |
|
408 | 450 | // Set the message option |
409 | 451 | $obj->allow_message = 'Y'; |
410 | - if(!in_array($obj->allow_message, array('Y','N','F'))) $obj->allow_message= 'Y'; |
|
452 | + if(!in_array($obj->allow_message, array('Y','N','F'))) { |
|
453 | + $obj->allow_message= 'Y'; |
|
454 | + } |
|
411 | 455 | // Get member-join date if the last login time is not found |
412 | - if(!$obj->last_login) $obj->last_login = $obj->regdate; |
|
456 | + if(!$obj->last_login) { |
|
457 | + $obj->last_login = $obj->regdate; |
|
458 | + } |
|
413 | 459 | // Get a member_srl |
414 | 460 | $obj->member_srl = getNextSequence(); |
415 | 461 | $obj->list_order = -1 * $obj->member_srl; |
@@ -421,7 +467,9 @@ discard block |
||
421 | 467 | $nick_args = new stdClass; |
422 | 468 | $nick_args->nick_name = $obj->nick_name; |
423 | 469 | $nick_output = executeQuery('member.getMemberSrl', $nick_args); |
424 | - if(!$nick_output->toBool()) $obj->nick_name .= '_'.$obj->member_srl; |
|
470 | + if(!$nick_output->toBool()) { |
|
471 | + $obj->nick_name .= '_'.$obj->member_srl; |
|
472 | + } |
|
425 | 473 | // Add a member |
426 | 474 | $output = executeQuery('member.insertMember', $obj); |
427 | 475 | |
@@ -477,7 +525,9 @@ discard block |
||
477 | 525 | $signature_buff = sprintf('<?php if(!defined("__XE__")) exit();?>%s', $signature); |
478 | 526 | |
479 | 527 | $target_path = sprintf('files/member_extra_info/signature/%s/', getNumberingPath($obj->member_srl)); |
480 | - if(!is_dir($target_path)) FileHandler::makeDir($target_path); |
|
528 | + if(!is_dir($target_path)) { |
|
529 | + FileHandler::makeDir($target_path); |
|
530 | + } |
|
481 | 531 | $target_filename = sprintf('%s%d.signature.php', $target_path, $obj->member_srl); |
482 | 532 | |
483 | 533 | FileHandler::writeFile($target_filename, $signature_buff); |
@@ -499,23 +549,31 @@ discard block |
||
499 | 549 | */ |
500 | 550 | function importMessage($key, $cur, $index_file) |
501 | 551 | { |
502 | - if(!$cur) $cur = 0; |
|
552 | + if(!$cur) { |
|
553 | + $cur = 0; |
|
554 | + } |
|
503 | 555 | // Create the xmlParser object |
504 | 556 | $oXmlParser = new XmlParser(); |
505 | 557 | // Open an index file |
506 | 558 | $f = fopen($index_file,"r"); |
507 | 559 | // Pass if already read |
508 | - for($i=0;$i<$cur;$i++) fgets($f, 1024); |
|
560 | + for($i=0;$i<$cur;$i++) { |
|
561 | + fgets($f, 1024); |
|
562 | + } |
|
509 | 563 | // Read each line until the condition meets |
510 | 564 | for($idx=$cur;$idx<$cur+$this->unit_count;$idx++) |
511 | 565 | { |
512 | - if(feof($f)) break; |
|
566 | + if(feof($f)) { |
|
567 | + break; |
|
568 | + } |
|
513 | 569 | // Find a location |
514 | 570 | $target_file = trim(fgets($f, 1024)); |
515 | 571 | // Load and parse the file |
516 | 572 | $xmlObj = $oXmlParser->loadXmlFile($target_file); |
517 | 573 | FileHandler::removeFile($target_file); |
518 | - if(!$xmlObj) continue; |
|
574 | + if(!$xmlObj) { |
|
575 | + continue; |
|
576 | + } |
|
519 | 577 | // List objects |
520 | 578 | $obj = null; |
521 | 579 | $obj->receiver = base64_decode($xmlObj->message->receiver->body); |
@@ -526,7 +584,9 @@ discard block |
||
526 | 584 | $obj->regdate = base64_decode($xmlObj->message->regdate->body); |
527 | 585 | $obj->readed_date = base64_decode($xmlObj->message->readed_date->body); |
528 | 586 | // Get member_srl of sender/recipient (If not exists, pass) |
529 | - if(!$obj->sender) continue; |
|
587 | + if(!$obj->sender) { |
|
588 | + continue; |
|
589 | + } |
|
530 | 590 | $sender_args->user_id = $obj->sender; |
531 | 591 | $sender_output = executeQuery('member.getMemberInfo',$sender_args); |
532 | 592 | $sender_srl = $sender_output->data->member_srl; |
@@ -537,10 +597,14 @@ discard block |
||
537 | 597 | $sender_output = executeQuery('member.getMemberInfoByEmailAddress',$sender_args); |
538 | 598 | $sender_srl = $sender_output->data->member_srl; |
539 | 599 | } |
540 | - if(!$sender_srl) continue; |
|
600 | + if(!$sender_srl) { |
|
601 | + continue; |
|
602 | + } |
|
541 | 603 | |
542 | 604 | $receiver_args->user_id = $obj->receiver; |
543 | - if(!$obj->receiver) continue; |
|
605 | + if(!$obj->receiver) { |
|
606 | + continue; |
|
607 | + } |
|
544 | 608 | $receiver_output = executeQuery('member.getMemberInfo',$receiver_args); |
545 | 609 | $receiver_srl = $receiver_output->data->member_srl; |
546 | 610 | if(!$receiver_srl) |
@@ -550,7 +614,9 @@ discard block |
||
550 | 614 | $receiver_output = executeQuery('member.getMemberInfoByEmailAddress',$receiver_args); |
551 | 615 | $receiver_srl = $receiver_output->data->member_srl; |
552 | 616 | } |
553 | - if(!$receiver_srl) continue; |
|
617 | + if(!$receiver_srl) { |
|
618 | + continue; |
|
619 | + } |
|
554 | 620 | // Message to save into sender's message box |
555 | 621 | $sender_args->sender_srl = $sender_srl; |
556 | 622 | $sender_args->receiver_srl = $receiver_srl; |
@@ -571,7 +637,9 @@ discard block |
||
571 | 637 | $receiver_args->message_srl = $sender_args->related_srl; |
572 | 638 | $receiver_args->list_order = $sender_args->related_srl*-1; |
573 | 639 | $receiver_args->sender_srl = $sender_srl; |
574 | - if(!$receiver_args->sender_srl) $receiver_args->sender_srl = $receiver_srl; |
|
640 | + if(!$receiver_args->sender_srl) { |
|
641 | + $receiver_args->sender_srl = $receiver_srl; |
|
642 | + } |
|
575 | 643 | $receiver_args->receiver_srl = $receiver_srl; |
576 | 644 | $receiver_args->message_type = 'R'; |
577 | 645 | $receiver_args->title = $obj->title; |
@@ -605,7 +673,9 @@ discard block |
||
605 | 673 | $oDocumentModel = getModel('document'); |
606 | 674 | $category_list = $category_titles = array(); |
607 | 675 | $category_list = $oDocumentModel->getCategoryList($module_srl); |
608 | - if(count($category_list)) foreach($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl; |
|
676 | + if(count($category_list)) { |
|
677 | + foreach($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl; |
|
678 | + } |
|
609 | 679 | // Extract category information |
610 | 680 | $category_file = preg_replace('/index$/i', 'category.xml', $index_file); |
611 | 681 | if(file_exists($category_file)) |
@@ -618,12 +688,16 @@ discard block |
||
618 | 688 | $categories = $xmlDoc->items->category; |
619 | 689 | if($categories) |
620 | 690 | { |
621 | - if(!is_array($categories)) $categories = array($categories); |
|
691 | + if(!is_array($categories)) { |
|
692 | + $categories = array($categories); |
|
693 | + } |
|
622 | 694 | $match_sequence = array(); |
623 | 695 | foreach($categories as $k => $v) |
624 | 696 | { |
625 | 697 | $category = trim(base64_decode($v->body)); |
626 | - if(!$category || $category_titles[$category]) continue; |
|
698 | + if(!$category || $category_titles[$category]) { |
|
699 | + continue; |
|
700 | + } |
|
627 | 701 | |
628 | 702 | $sequence = $v->attrs->sequence; |
629 | 703 | $parent = $v->attrs->parent; |
@@ -631,10 +705,14 @@ discard block |
||
631 | 705 | $obj = null; |
632 | 706 | $obj->title = $category; |
633 | 707 | $obj->module_srl = $module_srl; |
634 | - if($parent) $obj->parent_srl = $match_sequence[$parent]; |
|
708 | + if($parent) { |
|
709 | + $obj->parent_srl = $match_sequence[$parent]; |
|
710 | + } |
|
635 | 711 | |
636 | 712 | $output = $oDocumentController->insertCategory($obj); |
637 | - if($output->toBool()) $match_sequence[$sequence] = $output->get('category_srl'); |
|
713 | + if($output->toBool()) { |
|
714 | + $match_sequence[$sequence] = $output->get('category_srl'); |
|
715 | + } |
|
638 | 716 | } |
639 | 717 | $oDocumentController = getController('document'); |
640 | 718 | $oDocumentController->makeCategoryFile($module_srl); |
@@ -644,31 +722,45 @@ discard block |
||
644 | 722 | |
645 | 723 | $category_list = $category_titles = array(); |
646 | 724 | $category_list = $oDocumentModel->getCategoryList($module_srl); |
647 | - if(count($category_list)) foreach($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl; |
|
725 | + if(count($category_list)) { |
|
726 | + foreach($category_list as $key => $val) $category_titles[$val->title] = $val->category_srl; |
|
727 | + } |
|
648 | 728 | |
649 | 729 | $ek_args->module_srl = $module_srl; |
650 | 730 | $output = executeQueryArray('document.getDocumentExtraKeys', $ek_args); |
651 | 731 | if($output->data) |
652 | 732 | { |
653 | - foreach($output->data as $key => $val) $extra_keys[$val->eid] = true; |
|
733 | + foreach($output->data as $key => $val) { |
|
734 | + $extra_keys[$val->eid] = true; |
|
735 | + } |
|
654 | 736 | } |
655 | 737 | |
656 | - if(!$cur) $cur = 0; |
|
738 | + if(!$cur) { |
|
739 | + $cur = 0; |
|
740 | + } |
|
657 | 741 | // Open an index file |
658 | 742 | $f = fopen($index_file,"r"); |
659 | 743 | // Pass if already read |
660 | - for($i=0;$i<$cur;$i++) fgets($f, 1024); |
|
744 | + for($i=0;$i<$cur;$i++) { |
|
745 | + fgets($f, 1024); |
|
746 | + } |
|
661 | 747 | // Read each line until the condition meets |
662 | 748 | for($idx=$cur;$idx<$cur+$this->unit_count;$idx++) |
663 | 749 | { |
664 | - if(feof($f)) break; |
|
750 | + if(feof($f)) { |
|
751 | + break; |
|
752 | + } |
|
665 | 753 | // Find a location |
666 | 754 | $target_file = trim(fgets($f, 1024)); |
667 | 755 | |
668 | - if(!file_exists($target_file)) continue; |
|
756 | + if(!file_exists($target_file)) { |
|
757 | + continue; |
|
758 | + } |
|
669 | 759 | // Importing data from now on |
670 | 760 | $fp = fopen($target_file,"r"); |
671 | - if(!$fp) continue; |
|
761 | + if(!$fp) { |
|
762 | + continue; |
|
763 | + } |
|
672 | 764 | |
673 | 765 | $obj = new stdClass; |
674 | 766 | $obj->module_srl = $module_srl; |
@@ -688,38 +780,38 @@ discard block |
||
688 | 780 | { |
689 | 781 | $started = true; |
690 | 782 | // Trackback inserted |
691 | - } |
|
692 | - else if(substr($str,0,11) == '<trackbacks') |
|
783 | + } else if(substr($str,0,11) == '<trackbacks') |
|
693 | 784 | { |
694 | 785 | $obj->trackback_count = $this->importTrackbacks($fp, $module_srl, $obj->document_srl); |
695 | 786 | continue; |
696 | 787 | // Comments inserted |
697 | - } |
|
698 | - else if(substr($str,0,9) == '<comments') |
|
788 | + } else if(substr($str,0,9) == '<comments') |
|
699 | 789 | { |
700 | 790 | $obj->comment_count = $this->importComments($fp, $module_srl, $obj->document_srl); |
701 | 791 | continue; |
702 | 792 | // Attachment inserted |
703 | - } |
|
704 | - else if(substr($str,0,9) == '<attaches') |
|
793 | + } else if(substr($str,0,9) == '<attaches') |
|
705 | 794 | { |
706 | 795 | $obj->uploaded_count = $this->importAttaches($fp, $module_srl, $obj->document_srl, $files); |
707 | 796 | continue; |
708 | 797 | // When starting extra variabls |
709 | - } |
|
710 | - elseif(trim($str) == '<extra_vars>') |
|
798 | + } elseif(trim($str) == '<extra_vars>') |
|
711 | 799 | { |
712 | 800 | $extra_vars = $this->importExtraVars($fp); |
713 | 801 | continue; |
714 | 802 | } |
715 | 803 | |
716 | - if($started) $buff[] = $str; |
|
804 | + if($started) { |
|
805 | + $buff[] = $str; |
|
806 | + } |
|
717 | 807 | } |
718 | 808 | |
719 | 809 | $xmlDoc = $this->oXmlParser->parse(implode('', $buff)); |
720 | 810 | |
721 | 811 | $category = base64_decode($xmlDoc->post->category->body); |
722 | - if($category_titles[$category]) $obj->category_srl = $category_titles[$category]; |
|
812 | + if($category_titles[$category]) { |
|
813 | + $obj->category_srl = $category_titles[$category]; |
|
814 | + } |
|
723 | 815 | |
724 | 816 | $obj->member_srl = 0; |
725 | 817 | |
@@ -733,16 +825,22 @@ discard block |
||
733 | 825 | $obj->password = base64_decode($xmlDoc->post->password->body); |
734 | 826 | $obj->user_name = base64_decode($xmlDoc->post->user_name->body); |
735 | 827 | $obj->nick_name = base64_decode($xmlDoc->post->nick_name->body); |
736 | - if(!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
828 | + if(!$obj->user_name) { |
|
829 | + $obj->user_name = $obj->nick_name; |
|
830 | + } |
|
737 | 831 | $obj->user_id = base64_decode($xmlDoc->post->user_id->body); |
738 | 832 | $obj->email_address = base64_decode($xmlDoc->post->email->body); |
739 | 833 | $obj->homepage = base64_decode($xmlDoc->post->homepage->body); |
740 | - if($obj->homepage && strncasecmp('http://', $obj->homepage, 7) !== 0 && strncasecmp('https://', $obj->homepage, 8) !== 0) $obj->homepage = 'http://'.$obj->homepage; |
|
834 | + if($obj->homepage && strncasecmp('http://', $obj->homepage, 7) !== 0 && strncasecmp('https://', $obj->homepage, 8) !== 0) { |
|
835 | + $obj->homepage = 'http://'.$obj->homepage; |
|
836 | + } |
|
741 | 837 | $obj->tags = base64_decode($xmlDoc->post->tags->body); |
742 | 838 | $obj->regdate = base64_decode($xmlDoc->post->regdate->body); |
743 | 839 | $obj->last_update = base64_decode($xmlDoc->post->update->body); |
744 | 840 | $obj->last_updater = base64_decode($xmlDoc->post->last_updater->body); |
745 | - if(!$obj->last_update) $obj->last_update = $obj->regdate; |
|
841 | + if(!$obj->last_update) { |
|
842 | + $obj->last_update = $obj->regdate; |
|
843 | + } |
|
746 | 844 | $obj->ipaddress = base64_decode($xmlDoc->post->ipaddress->body); |
747 | 845 | $obj->list_order = $obj->update_order = $obj->document_srl*-1; |
748 | 846 | $obj->commentStatus = base64_decode($xmlDoc->post->allow_comment->body)!='N'?'ALLOW':'DENY'; |
@@ -773,7 +871,9 @@ discard block |
||
773 | 871 | $args->document_srl = $obj->document_srl; |
774 | 872 | $args->tag = trim($tag_list[$i]); |
775 | 873 | $args->regdate = $obj->regdate; |
776 | - if(!$args->tag) continue; |
|
874 | + if(!$args->tag) { |
|
875 | + continue; |
|
876 | + } |
|
777 | 877 | $output = executeQuery('tag.insertTag', $args); |
778 | 878 | } |
779 | 879 | |
@@ -783,7 +883,9 @@ discard block |
||
783 | 883 | { |
784 | 884 | foreach($extra_vars as $key => $val) |
785 | 885 | { |
786 | - if(!$val->value) continue; |
|
886 | + if(!$val->value) { |
|
887 | + continue; |
|
888 | + } |
|
787 | 889 | unset($e_args); |
788 | 890 | $e_args->module_srl = $module_srl; |
789 | 891 | $e_args->document_srl = $obj->document_srl; |
@@ -816,7 +918,9 @@ discard block |
||
816 | 918 | |
817 | 919 | fclose($f); |
818 | 920 | // Sync category counts |
819 | - if(count($category_list)) foreach($category_list as $key => $val) $oDocumentController->updateCategoryCount($module_srl, $val->category_srl); |
|
921 | + if(count($category_list)) { |
|
922 | + foreach($category_list as $key => $val) $oDocumentController->updateCategoryCount($module_srl, $val->category_srl); |
|
923 | + } |
|
820 | 924 | |
821 | 925 | return $idx-1; |
822 | 926 | } |
@@ -838,11 +942,17 @@ discard block |
||
838 | 942 | { |
839 | 943 | $str = fgets($fp, 1024); |
840 | 944 | // If </trackbacks> is, break |
841 | - if(trim($str) == '</trackbacks>') break; |
|
945 | + if(trim($str) == '</trackbacks>') { |
|
946 | + break; |
|
947 | + } |
|
842 | 948 | // If <trackback>, start importing |
843 | - if(trim($str) == '<trackback>') $started = true; |
|
949 | + if(trim($str) == '<trackback>') { |
|
950 | + $started = true; |
|
951 | + } |
|
844 | 952 | |
845 | - if($started) $buff .= $str; |
|
953 | + if($started) { |
|
954 | + $buff .= $str; |
|
955 | + } |
|
846 | 956 | // If </trackback>, insert to the DB |
847 | 957 | if(trim($str) == '</trackback>') |
848 | 958 | { |
@@ -860,7 +970,9 @@ discard block |
||
860 | 970 | $obj->ipaddress = base64_decode($xmlDoc->trackback->ipaddress->body); |
861 | 971 | $obj->list_order = -1*$obj->trackback_srl; |
862 | 972 | $output = executeQuery('trackback.insertTrackback', $obj); |
863 | - if($output->toBool()) $cnt++; |
|
973 | + if($output->toBool()) { |
|
974 | + $cnt++; |
|
975 | + } |
|
864 | 976 | |
865 | 977 | $buff = null; |
866 | 978 | $started = false; |
@@ -888,7 +1000,9 @@ discard block |
||
888 | 1000 | { |
889 | 1001 | $str = fgets($fp, 1024); |
890 | 1002 | // If </comments> is, break |
891 | - if(trim($str) == '</comments>') break; |
|
1003 | + if(trim($str) == '</comments>') { |
|
1004 | + break; |
|
1005 | + } |
|
892 | 1006 | // If <comment> is, start importing |
893 | 1007 | if(trim($str) == '<comment>') |
894 | 1008 | { |
@@ -904,7 +1018,9 @@ discard block |
||
904 | 1018 | continue; |
905 | 1019 | } |
906 | 1020 | |
907 | - if($started) $buff .= $str; |
|
1021 | + if($started) { |
|
1022 | + $buff .= $str; |
|
1023 | + } |
|
908 | 1024 | // If </comment> is, insert to the DB |
909 | 1025 | if(trim($str) == '</comment>') |
910 | 1026 | { |
@@ -916,8 +1032,11 @@ discard block |
||
916 | 1032 | |
917 | 1033 | $obj->module_srl = $module_srl; |
918 | 1034 | |
919 | - if($parent) $obj->parent_srl = $sequences[$parent]; |
|
920 | - else $obj->parent_srl = 0; |
|
1035 | + if($parent) { |
|
1036 | + $obj->parent_srl = $sequences[$parent]; |
|
1037 | + } else { |
|
1038 | + $obj->parent_srl = 0; |
|
1039 | + } |
|
921 | 1040 | |
922 | 1041 | $obj->document_srl = $document_srl; |
923 | 1042 | $obj->is_secret = base64_decode($xmlDoc->comment->is_secret->body)=='Y'?'Y':'N'; |
@@ -928,14 +1047,18 @@ discard block |
||
928 | 1047 | $obj->password = base64_decode($xmlDoc->comment->password->body); |
929 | 1048 | $obj->user_name =base64_decode($xmlDoc->comment->user_name->body); |
930 | 1049 | $obj->nick_name = base64_decode($xmlDoc->comment->nick_name->body); |
931 | - if(!$obj->user_name) $obj->user_name = $obj->nick_name; |
|
1050 | + if(!$obj->user_name) { |
|
1051 | + $obj->user_name = $obj->nick_name; |
|
1052 | + } |
|
932 | 1053 | $obj->user_id = base64_decode($xmlDoc->comment->user_id->body); |
933 | 1054 | $obj->member_srl = 0; |
934 | 1055 | $obj->email_address = base64_decode($xmlDoc->comment->email->body); |
935 | 1056 | $obj->homepage = base64_decode($xmlDoc->comment->homepage->body); |
936 | 1057 | $obj->regdate = base64_decode($xmlDoc->comment->regdate->body); |
937 | 1058 | $obj->last_update = base64_decode($xmlDoc->comment->update->body); |
938 | - if(!$obj->last_update) $obj->last_update = $obj->regdate; |
|
1059 | + if(!$obj->last_update) { |
|
1060 | + $obj->last_update = $obj->regdate; |
|
1061 | + } |
|
939 | 1062 | $obj->ipaddress = base64_decode($xmlDoc->comment->ipaddress->body); |
940 | 1063 | $obj->status = base64_decode($xmlDoc->comment->status->body)==''?'1':base64_decode($xmlDoc->comment->status->body); |
941 | 1064 | $obj->list_order = $obj->comment_srl*-1; |
@@ -959,24 +1082,28 @@ discard block |
||
959 | 1082 | $list_args->head = $list_args->arrange = $obj->comment_srl; |
960 | 1083 | $list_args->depth = 0; |
961 | 1084 | // Get parent_srl if parent comment exists |
962 | - } |
|
963 | - else |
|
1085 | + } else |
|
964 | 1086 | { |
965 | 1087 | // Get parent comment infomation |
966 | 1088 | $parent_args->comment_srl = $obj->parent_srl; |
967 | 1089 | $parent_output = executeQuery('comment.getCommentListItem', $parent_args); |
968 | 1090 | // Return if parent comment doesn't exist |
969 | - if(!$parent_output->toBool() || !$parent_output->data) continue; |
|
1091 | + if(!$parent_output->toBool() || !$parent_output->data) { |
|
1092 | + continue; |
|
1093 | + } |
|
970 | 1094 | $parent = $parent_output->data; |
971 | 1095 | |
972 | 1096 | $list_args->head = $parent->head; |
973 | 1097 | $list_args->depth = $parent->depth+1; |
974 | - if($list_args->depth<2) $list_args->arrange = $obj->comment_srl; |
|
975 | - else |
|
1098 | + if($list_args->depth<2) { |
|
1099 | + $list_args->arrange = $obj->comment_srl; |
|
1100 | + } else |
|
976 | 1101 | { |
977 | 1102 | $list_args->arrange = $parent->arrange; |
978 | 1103 | $output = executeQuery('comment.updateCommentListArrange', $list_args); |
979 | - if(!$output->toBool()) return $output; |
|
1104 | + if(!$output->toBool()) { |
|
1105 | + return $output; |
|
1106 | + } |
|
980 | 1107 | } |
981 | 1108 | } |
982 | 1109 | |
@@ -984,7 +1111,9 @@ discard block |
||
984 | 1111 | if($output->toBool()) |
985 | 1112 | { |
986 | 1113 | $output = executeQuery('comment.insertComment', $obj); |
987 | - if($output->toBool()) $cnt++; |
|
1114 | + if($output->toBool()) { |
|
1115 | + $cnt++; |
|
1116 | + } |
|
988 | 1117 | } |
989 | 1118 | |
990 | 1119 | $buff = null; |
@@ -1014,7 +1143,9 @@ discard block |
||
1014 | 1143 | { |
1015 | 1144 | $str = trim(fgets($fp, 1024)); |
1016 | 1145 | // If it ends with </attaches>, break |
1017 | - if(trim($str) == '</attaches>') break; |
|
1146 | + if(trim($str) == '</attaches>') { |
|
1147 | + break; |
|
1148 | + } |
|
1018 | 1149 | // If it starts with <attach>, collect attachments |
1019 | 1150 | if(trim($str) == '<attach>') |
1020 | 1151 | { |
@@ -1025,14 +1156,15 @@ discard block |
||
1025 | 1156 | $started = true; |
1026 | 1157 | $buff = null; |
1027 | 1158 | // If it starts with <file>, handle the attachement in xml file |
1028 | - } |
|
1029 | - else if(trim($str) == '<file>') |
|
1159 | + } else if(trim($str) == '<file>') |
|
1030 | 1160 | { |
1031 | 1161 | $file_obj->file = $this->saveTemporaryFile($fp); |
1032 | 1162 | continue; |
1033 | 1163 | } |
1034 | 1164 | |
1035 | - if($started) $buff .= $str; |
|
1165 | + if($started) { |
|
1166 | + $buff .= $str; |
|
1167 | + } |
|
1036 | 1168 | // If it ends with </attach>, handle attachements |
1037 | 1169 | if(trim($str) == '</attach>') |
1038 | 1170 | { |
@@ -1045,8 +1177,9 @@ discard block |
||
1045 | 1177 | { |
1046 | 1178 | $url = base64_decode($xmlDoc->attach->url->body); |
1047 | 1179 | $path = base64_decode($xmlDoc->attach->path->body); |
1048 | - if($path && file_exists($path)) $file_obj->file = $path; |
|
1049 | - else |
|
1180 | + if($path && file_exists($path)) { |
|
1181 | + $file_obj->file = $path; |
|
1182 | + } else |
|
1050 | 1183 | { |
1051 | 1184 | $file_obj->file = $this->getTmpFilename(); |
1052 | 1185 | FileHandler::getRemoteFile($url, $file_obj->file); |
@@ -1076,21 +1209,21 @@ discard block |
||
1076 | 1209 | } |
1077 | 1210 | |
1078 | 1211 | $file_obj->direct_download = 'Y'; |
1079 | - } |
|
1080 | - else |
|
1212 | + } else |
|
1081 | 1213 | { |
1082 | 1214 | $path = sprintf("./files/attach/binaries/%s/%s", $module_srl, getNumberingPath($upload_target_srl,3)); |
1083 | 1215 | $filename = $path.md5(crypt(rand(1000000,900000), rand(0,100))); |
1084 | 1216 | $file_obj->direct_download = 'N'; |
1085 | 1217 | } |
1086 | 1218 | // Create a directory |
1087 | - if(!FileHandler::makeDir($path)) continue; |
|
1219 | + if(!FileHandler::makeDir($path)) { |
|
1220 | + continue; |
|
1221 | + } |
|
1088 | 1222 | |
1089 | 1223 | if(strncmp('./files/cache/importer/', $file_obj->file, 23) === 0) |
1090 | 1224 | { |
1091 | 1225 | FileHandler::rename($file_obj->file, $filename); |
1092 | - } |
|
1093 | - else |
|
1226 | + } else |
|
1094 | 1227 | { |
1095 | 1228 | copy($file_obj->file, $filename); |
1096 | 1229 | } |
@@ -1112,8 +1245,11 @@ discard block |
||
1112 | 1245 | $uploaded_count++; |
1113 | 1246 | $tmp_obj = null; |
1114 | 1247 | $tmp_obj->source_filename = $file_obj->source_filename; |
1115 | - if($file_obj->direct_download == 'Y') $files[$file_obj->source_filename] = $file_obj->uploaded_filename; |
|
1116 | - else $files[$file_obj->source_filename] = getUrl('','module','file','act','procFileDownload','file_srl',$file_obj->file_srl,'sid',$file_obj->sid); |
|
1248 | + if($file_obj->direct_download == 'Y') { |
|
1249 | + $files[$file_obj->source_filename] = $file_obj->uploaded_filename; |
|
1250 | + } else { |
|
1251 | + $files[$file_obj->source_filename] = getUrl('','module','file','act','procFileDownload','file_srl',$file_obj->file_srl,'sid',$file_obj->sid); |
|
1252 | + } |
|
1117 | 1253 | } |
1118 | 1254 | } |
1119 | 1255 | } |
@@ -1131,7 +1267,9 @@ discard block |
||
1131 | 1267 | $path = "./files/cache/importer"; |
1132 | 1268 | FileHandler::makeDir($path); |
1133 | 1269 | $filename = sprintf("%s/%d", $path, rand(11111111,99999999)); |
1134 | - if(file_exists($filename)) $filename .= rand(111,999); |
|
1270 | + if(file_exists($filename)) { |
|
1271 | + $filename .= rand(111,999); |
|
1272 | + } |
|
1135 | 1273 | return $filename; |
1136 | 1274 | } |
1137 | 1275 | |
@@ -1149,7 +1287,9 @@ discard block |
||
1149 | 1287 | while(!feof($fp)) |
1150 | 1288 | { |
1151 | 1289 | $str = trim(fgets($fp, 1024)); |
1152 | - if(trim($str) == '</file>') break; |
|
1290 | + if(trim($str) == '</file>') { |
|
1291 | + break; |
|
1292 | + } |
|
1153 | 1293 | |
1154 | 1294 | $buff .= $str; |
1155 | 1295 | |
@@ -1175,14 +1315,20 @@ discard block |
||
1175 | 1315 | while(!feof($fp)) |
1176 | 1316 | { |
1177 | 1317 | $buff .= $str = trim(fgets($fp, 1024)); |
1178 | - if(trim($str) == '</extra_vars>') break; |
|
1318 | + if(trim($str) == '</extra_vars>') { |
|
1319 | + break; |
|
1320 | + } |
|
1321 | + } |
|
1322 | + if(!$buff) { |
|
1323 | + return array(); |
|
1179 | 1324 | } |
1180 | - if(!$buff) return array(); |
|
1181 | 1325 | |
1182 | 1326 | $buff = '<extra_vars>'.$buff; |
1183 | 1327 | $oXmlParser = new XmlParser(); |
1184 | 1328 | $xmlDoc = $this->oXmlParser->parse($buff); |
1185 | - if(!count($xmlDoc->extra_vars->key)) return array(); |
|
1329 | + if(!count($xmlDoc->extra_vars->key)) { |
|
1330 | + return array(); |
|
1331 | + } |
|
1186 | 1332 | |
1187 | 1333 | $index = 1; |
1188 | 1334 | foreach($xmlDoc->extra_vars->key as $k => $v) |
@@ -1195,8 +1341,7 @@ discard block |
||
1195 | 1341 | $vobj->value = base64_decode($v->value->body); |
1196 | 1342 | $vobj->eid = base64_decode($v->eid->body); |
1197 | 1343 | |
1198 | - } |
|
1199 | - else if($v->body) |
|
1344 | + } else if($v->body) |
|
1200 | 1345 | { |
1201 | 1346 | $vobj->var_idx = $index; |
1202 | 1347 | $vobj->lang_code = Context::getLangType(); |