source: temp/trunk/html/install/index.php @ 6304

Revision 6304, 19.2 KB checked in by naka, 20 years ago (diff)

* empty log message *

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1<?php
2/*
3 * Copyright(c) 2000-2006 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7require_once("../require.php");
8$INSTALL_DIR = realpath(dirname( __FILE__));
9
10class LC_Page {
11    function LC_Page() {
12        $this->arrDB_TYPE = array(
13            'pgsql' => 'PostgreSQL',
14            'mysql' => 'MySQL' 
15        );
16        $this->arrDB_PORT = array(
17            'pgsql' => '',
18            'mysql' => ''   
19        );
20    }
21}
22
23$objPage = new LC_Page();
24
25// ¥Æ¥ó¥×¥ì¡¼¥È¥³¥ó¥Ñ¥¤¥ë¥Ç¥£¥ì¥¯¥È¥ê¤Î½ñ¹þ¤ß¸¢¸Â¥Á¥§¥Ã¥¯
26$temp_dir = $INSTALL_DIR . '/temp';
27$mode = lfGetFileMode($temp_dir);
28
29if($mode != '777') {
30    sfErrorHeader($temp_dir . "¤Ë¥æ¡¼¥¶½ñ¹þ¤ß¸¢¸Â(777)¤òÉÕÍ¿¤·¤Æ²¼¤µ¤¤¡£", true);
31    exit;
32}
33
34$objView = new SC_InstallView($INSTALL_DIR . '/templates', $INSTALL_DIR . '/temp');
35
36// ¥Ñ¥é¥á¡¼¥¿´ÉÍý¥¯¥é¥¹
37$objWebParam = new SC_FormParam();
38$objDBParam = new SC_FormParam();
39// ¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½
40$objWebParam = lfInitWebParam($objWebParam);
41$objDBParam = lfInitDBParam($objDBParam);
42
43//¥Õ¥©¡¼¥àÇÛÎó¤Î¼èÆÀ
44$objWebParam->setParam($_POST);
45$objDBParam->setParam($_POST);
46
47switch($_POST['mode']) {
48// ¤è¤¦¤³¤½
49case 'welcome':
50    $objPage = lfDispStep0($objPage);
51    break;
52// ¥¢¥¯¥»¥¹¸¢¸Â¤Î¥Á¥§¥Ã¥¯
53case 'step0':
54    $objPage = lfDispStep0_1($objPage);
55    break; 
56// ¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼
57case 'step0_1':
58    $objPage = lfDispStep1($objPage);
59    break; 
60// WEB¥µ¥¤¥È¤ÎÀßÄê
61case 'step1':
62    //ÆþÎÏÃͤΥ¨¥é¡¼¥Á¥§¥Ã¥¯
63    $objPage->arrErr = lfCheckWEBError($objWebParam);
64    if(count($objPage->arrErr) == 0) {
65        $objPage = lfDispStep2($objPage);
66    } else {
67        $objPage = lfDispStep1($objPage);
68    }
69    break;
70// ¥Ç¡¼¥¿¥Ù¡¼¥¹¤ÎÀßÄê
71case 'step2':
72    //ÆþÎÏÃͤΥ¨¥é¡¼¥Á¥§¥Ã¥¯
73    $objPage->arrErr = lfCheckDBError($objDBParam);
74    if(count($objPage->arrErr) == 0) {
75        $objPage = lfDispStep3($objPage);
76    } else {
77        $objPage = lfDispStep2($objPage);
78    }
79    break;
80// ¥Æ¡¼¥Ö¥ë¤ÎºîÀ®
81case 'step3':
82    // ÆþÎϥǡ¼¥¿¤òÅϤ¹¡£
83    $arrRet =  $objDBParam->getHashArray();
84    $dsn = $arrRet['db_type']."://".$arrRet['db_user'].":".$arrRet['db_password']."@".$arrRet['db_server'].":".$arrRet['db_port']."/".$arrRet['db_name'];
85   
86    /*
87        lfAddTable¤Ï¡¢¥Ð¡¼¥¸¥ç¥ó¥¢¥Ã¥×Åù¤ÇÄɲåơ¼¥Ö¥ë¤¬È¯À¸¤·¤¿¾ì¹ç¤Ë¼Â¹Ô¤¹¤ë¡£
88        ¡Ê£Ä£Â¹½À®¤Î²¼°Ì¸ß´¹¤Î¤¿¤á¥¹¥­¥Ã¥×»þ¤â¶¯À©¡Ë
89    */
90    // ¥Æ¡¼¥Ö¥ë¤¬Â¸ºß¤·¤Ê¤¤¾ì¹ç¤ËÄɲ䵤ì¤ë¡£
91    $objPage->arrErr = lfAddTable("dtb_session", $dsn); // ¥»¥Ã¥·¥ç¥ó´ÉÍý¥Æ¡¼¥Ö¥ë
92       
93    if(count($objPage->arrErr) == 0) {
94        // ¥¹¥­¥Ã¥×¤¹¤ë¾ì¹ç¤Ë¤Ï´°Î»²èÌ̤ØÁ«°Ü
95        $skip = $_POST["db_skip"];
96        if ($skip == "on") {
97            // ÀßÄê¥Õ¥¡¥¤¥ë¤ÎÀ¸À®
98            lfMakeConfigFile();
99            $objPage = lfDispComplete($objPage);
100            break;
101        }
102    }
103   
104    // ¥Æ¡¼¥Ö¥ë¤ÎºîÀ®
105    $objPage->arrErr = lfExecuteSQL("./sql/create_table_".$arrRet['db_type'].".sql", $dsn);
106    if(count($objPage->arrErr) == 0) {
107        $objPage->tpl_message.="¡û¡§¥Æ¡¼¥Ö¥ë¤ÎºîÀ®¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>";
108    } else {
109        $objPage->tpl_message.="¡ß¡§¥Æ¡¼¥Ö¥ë¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£<br>";       
110    }
111
112    // ¥Ó¥å¡¼¤ÎºîÀ®
113    if(count($objPage->arrErr) == 0 and $arrRet['db_type'] == 'pgsql') {
114        // ¥Ó¥å¡¼¤ÎºîÀ®
115        $objPage->arrErr = lfExecuteSQL("./sql/create_view.sql", $dsn);
116        if(count($objPage->arrErr) == 0) {
117            $objPage->tpl_message.="¡û¡§¥Ó¥å¡¼¤ÎºîÀ®¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>";
118        } else {
119            $objPage->tpl_message.="¡ß¡§¥Ó¥å¡¼¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£<br>";     
120        }
121    }   
122   
123    // ½é´ü¥Ç¡¼¥¿¤ÎºîÀ®
124    if(count($objPage->arrErr) == 0) {
125        $objPage->arrErr = lfExecuteSQL("./sql/insert_data.sql", $dsn);
126        if(count($objPage->arrErr) == 0) {
127            $objPage->tpl_message.="¡û¡§½é´ü¥Ç¡¼¥¿¤ÎºîÀ®¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>";
128        } else {
129            $objPage->tpl_message.="¡ß¡§½é´ü¥Ç¡¼¥¿¤ÎºîÀ®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£<br>";     
130        }
131    }   
132   
133    // ¥«¥é¥à¥³¥á¥ó¥È¤Î½ñ¹þ¤ß
134    if(count($objPage->arrErr) == 0) {
135        $objPage->arrErr = lfExecuteSQL("./sql/column_comment.sql", $dsn);
136        if(count($objPage->arrErr) == 0) {
137            $objPage->tpl_message.="¡û¡§¥«¥é¥à¥³¥á¥ó¥È¤Î½ñ¹þ¤ß¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>";
138        } else {
139            $objPage->tpl_message.="¡ß¡§¥«¥é¥à¥³¥á¥ó¥È¤Î½ñ¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£<br>";       
140        }
141    }   
142   
143    // ¥Æ¡¼¥Ö¥ë¥³¥á¥ó¥È¤Î½ñ¹þ¤ß
144    if(count($objPage->arrErr) == 0) {
145        $objPage->arrErr = lfExecuteSQL("./sql/table_comment.sql", $dsn);
146        if(count($objPage->arrErr) == 0) {
147            $objPage->tpl_message.="¡û¡§¥Æ¡¼¥Ö¥ë¥³¥á¥ó¥È¤Î½ñ¹þ¤ß¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>";
148        } else {
149            $objPage->tpl_message.="¡ß¡§¥Æ¡¼¥Ö¥ë¥³¥á¥ó¥È¤Î½ñ¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£<br>";     
150        }
151    }
152
153    if(count($objPage->arrErr) == 0) {
154        // ÀßÄê¥Õ¥¡¥¤¥ë¤ÎÀ¸À®
155        lfMakeConfigFile();
156        $objPage = lfDispStep3($objPage);
157        $objPage->tpl_mode = 'complete';
158    } else {
159        $objPage = lfDispStep3($objPage);
160    }
161    break;
162// ¥Æ¡¼¥Ö¥ëÎàºï½ü
163case 'drop':
164    // ÆþÎϥǡ¼¥¿¤òÅϤ¹¡£
165    $arrRet =  $objDBParam->getHashArray();
166    $dsn = $arrRet['db_type']."://".$arrRet['db_user'].":".$arrRet['db_password']."@".$arrRet['db_server'].":".$arrRet['db_port']."/".$arrRet['db_name'];
167       
168    if ($arrRet['db_type'] == 'pgsql'){
169        // ¥Ó¥å¡¼¤Îºï½ü
170        $objPage->arrErr = lfExecuteSQL("./sql/drop_view.sql", $dsn, false);
171        if(count($objPage->arrErr) == 0) {
172            $objPage->tpl_message.="¡û¡§¥Ó¥å¡¼¤Îºï½ü¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>";
173        } else {
174            $objPage->tpl_message.="¡ß¡§¥Ó¥å¡¼¤Îºï½ü¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£<br>";     
175        }
176    }
177
178    // ¥Æ¡¼¥Ö¥ë¤Îºï½ü
179    if(count($objPage->arrErr) == 0) {
180        $objPage->arrErr = lfExecuteSQL("./sql/drop_table.sql", $dsn, false);
181        if(count($objPage->arrErr) == 0) {
182            $objPage->tpl_message.="¡û¡§¥Æ¡¼¥Ö¥ë¤Îºï½ü¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>";
183        } else {
184            $objPage->tpl_message.="¡ß¡§¥Æ¡¼¥Ö¥ë¤Îºï½ü¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£<br>";       
185        }
186    }
187    $objPage = lfDispStep3($objPage);
188    break;
189// ´°Î»²èÌÌ
190case 'complete':
191
192    // ¥·¥ç¥Ã¥×¥Þ¥¹¥¿¾ðÊó¤Î½ñ¤­¹þ¤ß
193    $arrRet =  $objDBParam->getHashArray();
194   
195    $dsn = $arrRet['db_type']."://".$arrRet['db_user'].":".$arrRet['db_password']."@".$arrRet['db_server'].":".$arrRet['db_port']."/".$arrRet['db_name'];
196    $sqlval['shop_name'] = $objWebParam->getValue('shop_name');
197    $sqlval['email01'] = $objWebParam->getValue('admin_mail');
198    $sqlval['email02'] = $objWebParam->getValue('admin_mail');
199    $sqlval['email03'] = $objWebParam->getValue('admin_mail');
200    $sqlval['email04'] = $objWebParam->getValue('admin_mail');
201    $sqlval['email05'] = $objWebParam->getValue('admin_mail');
202    $sqlval['top_tpl'] = "default1";
203    $sqlval['product_tpl'] = "default1";
204    $sqlval['detail_tpl'] = "default1";
205    $sqlval['mypage_tpl'] = "default1";
206    $objQuery = new SC_Query($dsn);
207    $cnt = $objQuery->count("dtb_baseinfo");
208    if($cnt > 0) {
209        $objQuery->update("dtb_baseinfo", $sqlval);
210    } else {       
211        $objQuery->insert("dtb_baseinfo", $sqlval);     
212    }
213    global $GLOBAL_ERR;
214    $GLOBAL_ERR = "";
215    $objPage = lfDispComplete($objPage);
216    break;
217case 'return_step0':
218    $objPage = lfDispStep0($objPage);
219    break; 
220case 'return_step1':
221    $objPage = lfDispStep1($objPage);
222    break;
223case 'return_step2':
224    $objPage = lfDispStep2($objPage);
225    break;
226case 'return_welcome':
227default:
228    $objPage = lfDispWelcome($objPage);
229    break;
230}
231
232//¥Õ¥©¡¼¥àÍѤΥѥé¥á¡¼¥¿¤òÊÖ¤¹
233$objPage->arrForm = $objWebParam->getFormParamList();
234$objPage->arrForm = array_merge($objPage->arrForm, $objDBParam->getFormParamList());
235
236// SiteInfo¤òÆÉ¤ß¹þ¤Þ¤Ê¤¤
237$objView->assignobj($objPage);
238$objView->display('install_frame.tpl');
239//-----------------------------------------------------------------------------------------------------------------------------------
240// ¤è¤¦¤³¤½²èÌ̤Îɽ¼¨
241function lfDispWelcome($objPage) {
242    global $objWebParam;
243    global $objDBParam;
244    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
245    $objPage->arrHidden = $objWebParam->getHashArray();
246    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
247    $objPage->arrHidden = array_merge($objPage->arrHidden, $objDBParam->getHashArray());
248    $objPage->arrHidden['db_skip'] = $_POST['db_skip'];
249    $objPage->tpl_mainpage = 'welcome.tpl';
250    $objPage->tpl_mode = 'welcome';
251    return $objPage;
252}
253
254// STEP0²èÌ̤Îɽ¼¨(¥Õ¥¡¥¤¥ë¸¢¸Â¥Á¥§¥Ã¥¯)
255function lfDispStep0($objPage) {
256    global $objWebParam;
257    global $objDBParam;
258    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
259    $objPage->arrHidden = $objWebParam->getHashArray();
260    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
261    $objPage->arrHidden = array_merge($objPage->arrHidden, $objDBParam->getHashArray());
262    $objPage->arrHidden['db_skip'] = $_POST['db_skip'];
263    $objPage->tpl_mainpage = 'step0.tpl';
264    $objPage->tpl_mode = 'step0';
265   
266    // ¥×¥í¥°¥é¥à¤Ç½ñ¹þ¤ß¤µ¤ì¤ë¥Õ¥¡¥¤¥ë¡¦¥Ç¥£¥ì¥¯¥È¥ê
267    $arrWriteFile = array(
268        "../../data/install.inc",
269        "../user_data",
270        "../upload",
271        "../../data/Smarty/templates_c",       
272        "../../data/update",
273        "../../data/logs",
274    );
275   
276    $mess = "";
277    $err_file = false;
278    foreach($arrWriteFile as $val) {
279        if(file_exists($val)) {
280            $mode = lfGetFileMode($val);
281            $real_path = realpath($val);
282                       
283            // ¥Ç¥£¥ì¥¯¥È¥ê¤Î¾ì¹ç
284            if(is_dir($val)) {
285                if($mode == "777") {
286                    $mess.= ">> ¡û¡§$real_path($mode) <br>¥¢¥¯¥»¥¹¸¢¸Â¤ÏÀµ¾ï¤Ç¤¹¡£<br>";                   
287                } else {
288                    $mess.= ">> ¡ß¡§$real_path($mode) <br>¥æ¡¼¥¶½ñ¹þ¤ß¸¢¸Â(777)¤òÉÕÍ¿¤·¤Æ²¼¤µ¤¤¡£<br>";
289                    $err_file = true;                                       
290                }
291            } else {
292                if($mode == "666") {
293                    $mess.= ">> ¡û¡§$real_path($mode) <br>¥¢¥¯¥»¥¹¸¢¸Â¤ÏÀµ¾ï¤Ç¤¹¡£<br>";                   
294                } else {
295                    $mess.= ">> ¡ß¡§$real_path($mode) <br>¥æ¡¼¥¶½ñ¹þ¤ß¸¢¸Â(666)¤òÉÕÍ¿¤·¤Æ²¼¤µ¤¤¡£<br>";
296                    $err_file = true;                           
297                }
298            }           
299        } else {
300            $mess.= ">> ¡ß¡§$val ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£<br>";
301            $err_file = true;
302        }
303    }
304   
305    // ¸¢¸Â¥¨¥é¡¼Åù¤¬È¯À¸¤·¤Æ¤¤¤Ê¤¤¾ì¹ç
306    if(!$err_file) {
307        $path = "../../data/Smarty/templates_c/admin";
308        if(!file_exists($path)) {
309            mkdir($path);
310        }
311        $path = "../upload/save_image";
312        if(!file_exists($path)) {
313            mkdir($path);
314        }
315        $path = "../upload/temp_image";
316        if(!file_exists($path)) {
317            mkdir($path);
318        }
319        $path = "../upload/graph_image";
320        if(!file_exists($path)) {
321            mkdir($path);
322        }
323        $path = "../upload/csv";
324        if(!file_exists($path)) {
325            mkdir($path);
326        }
327    }
328   
329    $objPage->mess = $mess;
330    $objPage->err_file = $err_file;
331
332    return $objPage;
333}
334
335
336// STEP0_1²èÌ̤Îɽ¼¨(¥Õ¥¡¥¤¥ë¤Î¥³¥Ô¡¼)
337function lfDispStep0_1($objPage) {
338    global $objWebParam;
339    global $objDBParam;
340    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
341    $objPage->arrHidden = $objWebParam->getHashArray();
342    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
343    $objPage->arrHidden = array_merge($objPage->arrHidden, $objDBParam->getHashArray());
344    $objPage->arrHidden['db_skip'] = $_POST['db_skip'];
345    $objPage->tpl_mainpage = 'step0_1.tpl';
346    $objPage->tpl_mode = 'step0_1';
347    // ¥Õ¥¡¥¤¥ë¥³¥Ô¡¼
348    $objPage->copy_mess = sfCopyDir("./user_data/", "../user_data/", $objPage->copy_mess);
349    $objPage->copy_mess = sfCopyDir("./save_image/", "../upload/save_image/", $objPage->copy_mess);
350    return $objPage;
351}
352
353function lfGetFileMode($path) {
354    $mode = substr(sprintf('%o', fileperms($path)), -3);
355    return $mode;
356}
357
358// STEP1²èÌ̤Îɽ¼¨
359function lfDispStep1($objPage) {
360    global $objDBParam;
361    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
362    $objPage->arrHidden = $objDBParam->getHashArray();
363    $objPage->arrHidden['db_skip'] = $_POST['db_skip'];
364    $objPage->tpl_mainpage = 'step1.tpl';
365    $objPage->tpl_mode = 'step1';
366    return $objPage;
367}
368
369// STEP2²èÌ̤Îɽ¼¨
370function lfDispStep2($objPage) {
371    global $objWebParam;
372    global $objDBParam;
373    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
374    $objPage->arrHidden = $objWebParam->getHashArray();
375    $objPage->arrHidden['db_skip'] = $_POST['db_skip'];
376    $objPage->tpl_mainpage = 'step2.tpl';
377    $objPage->tpl_mode = 'step2';
378    return $objPage;
379}
380
381// STEP3²èÌ̤Îɽ¼¨
382function lfDispStep3($objPage) {
383    global $objWebParam;
384    global $objDBParam;
385    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
386    $objPage->arrHidden = $objWebParam->getHashArray();
387    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
388    $objPage->arrHidden = array_merge($objPage->arrHidden, $objDBParam->getHashArray());
389    $objPage->tpl_db_skip = $_POST['db_skip'];
390    $objPage->tpl_mainpage = 'step3.tpl';
391    $objPage->tpl_mode = 'step3';
392    return $objPage;
393}
394
395// ´°Î»²èÌ̤Îɽ¼¨
396function lfDispComplete($objPage) {
397    global $objWebParam;
398    global $objDBParam;
399    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
400    $objPage->arrHidden = $objWebParam->getHashArray();
401    // hidden¤ËÆþÎÏÃͤòÊÝ»ý
402    $objPage->arrHidden = array_merge($objPage->arrHidden, $objDBParam->getHashArray());
403    $objPage->arrHidden['db_skip'] = $_POST['db_skip'];
404    $objPage->tpl_mainpage = 'complete.tpl';
405    $objPage->tpl_mode = 'complete';
406   
407    $secure_url = $objWebParam->getValue('secure_url');
408    // ¸ìÈø¤Ë'/'¤ò¤Ä¤±¤ë
409    if (!ereg("/$", $secure_url)) {
410        $secure_url = $secure_url . "/";
411    }
412    $objPage->tpl_sslurl = $secure_url;     
413    return $objPage;
414}
415
416// WEB¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½
417function lfInitWebParam($objWebParam) {
418   
419    if(defined('HTML_PATH')) {
420        $install_dir = HTML_PATH;
421    } else {
422        $install_dir = realpath(dirname( __FILE__) . "/../") . "/";
423    }
424   
425    if(defined('SITE_URL')) {
426        $normal_url = SITE_URL;
427    } else {
428        $dir = ereg_replace("install/.*$", "", $_SERVER['REQUEST_URI']);
429        $normal_url = "http://" . $_SERVER['HTTP_HOST'] . $dir;
430    }
431   
432    if(defined('SSL_URL')) {
433        $secure_url = SSL_URL;
434    } else {
435        $dir = ereg_replace("install/.*$", "", $_SERVER['REQUEST_URI']);
436        $secure_url = "http://" . $_SERVER['HTTP_HOST'] . $dir;
437    }
438
439    // Ź̾¡¢´ÉÍý¼Ô¥á¡¼¥ë¥¢¥É¥ì¥¹¤ò¼èÆÀ¤¹¤ë¡£(ºÆ¥¤¥ó¥¹¥È¡¼¥ë»þ)
440    if(defined('DEFAULT_DSN')) {
441        $ret = sfTabaleExists("dtb_baseinfo", DEFAULT_DSN);
442        if($ret) {
443            $objQuery = new SC_Query();
444            $arrRet = $objQuery->select("shop_name, email01", "dtb_baseinfo");
445            $shop_name = $arrRet[0]['shop_name'];
446            $admin_mail = $arrRet[0]['email01'];
447        }
448    }
449
450    $objWebParam->addParam("Ź̾", "shop_name", MTEXT_LEN, "", array("EXIST_CHECK","MAX_LENGTH_CHECK"), $shop_name);
451    $objWebParam->addParam("´ÉÍý¼Ô¥á¡¼¥ë¥¢¥É¥ì¥¹", "admin_mail", MTEXT_LEN, "", array("EXIST_CHECK","EMAIL_CHECK","EMAIL_CHAR_CHECK","MAX_LENGTH_CHECK"), $admin_mail);
452    $objWebParam->addParam("¥¤¥ó¥¹¥È¡¼¥ë¥Ç¥£¥ì¥¯¥È¥ê", "install_dir", MTEXT_LEN, "", array("EXIST_CHECK","MAX_LENGTH_CHECK"), $install_dir);
453    $objWebParam->addParam("URL(Ä̾ï)", "normal_url", MTEXT_LEN, "", array("EXIST_CHECK","URL_CHECK","MAX_LENGTH_CHECK"), $normal_url);
454    $objWebParam->addParam("URL(¥»¥­¥å¥¢)", "secure_url", MTEXT_LEN, "", array("EXIST_CHECK","URL_CHECK","MAX_LENGTH_CHECK"), $secure_url);
455    $objWebParam->addParam("¥É¥á¥¤¥ó", "domain", MTEXT_LEN, "", array("MAX_LENGTH_CHECK"));
456
457    return $objWebParam;
458}
459
460// DB¥Ñ¥é¥á¡¼¥¿¾ðÊó¤Î½é´ü²½
461function lfInitDBParam($objDBParam) {
462       
463    if(defined('DB_SERVER')) {
464        $db_server = DB_SERVER;
465    } else {
466        $db_server = "127.0.0.1";
467    }
468   
469    if(defined('DB_TYPE')) {
470        $db_type = DB_TYPE;
471    } else {
472        $db_type = "";
473    }
474   
475    if(defined('DB_PORT')) {
476        $db_port = DB_PORT;
477    } else {
478        $db_port = "";
479    }
480       
481    if(defined('DB_NAME')) {
482        $db_name = DB_NAME;
483    } else {
484        $db_name = "eccube_db";
485    }
486       
487    if(defined('DB_USER')) {
488        $db_user = DB_USER;
489    } else {
490        $db_user = "eccube_db_user";               
491    }
492           
493    $objDBParam->addParam("DB¤Î¼ïÎà", "db_type", INT_LEN, "", array("EXIST_CHECK","MAX_LENGTH_CHECK"), $db_type);
494    $objDBParam->addParam("DB¥µ¡¼¥Ð", "db_server", MTEXT_LEN, "", array("EXIST_CHECK","MAX_LENGTH_CHECK"), $db_server);
495    $objDBParam->addParam("DB¥Ý¡¼¥È", "db_port", INT_LEN, "", array("MAX_LENGTH_CHECK"), $db_port);
496    $objDBParam->addParam("DB̾", "db_name", MTEXT_LEN, "", array("EXIST_CHECK","MAX_LENGTH_CHECK"), $db_name);
497    $objDBParam->addParam("DB¥æ¡¼¥¶", "db_user", MTEXT_LEN, "", array("EXIST_CHECK","MAX_LENGTH_CHECK"), $db_user);
498    $objDBParam->addParam("DB¥Ñ¥¹¥ï¡¼¥É", "db_password", MTEXT_LEN, "", array("EXIST_CHECK","MAX_LENGTH_CHECK"));   
499       
500    return $objDBParam;
501}
502
503// ÆþÎÏÆâÍÆ¤Î¥Á¥§¥Ã¥¯
504function lfCheckWebError($objFormParam) {
505    // ÆþÎϥǡ¼¥¿¤òÅϤ¹¡£
506    $arrRet =  $objFormParam->getHashArray();
507    $objErr = new SC_CheckError($arrRet);
508    $objErr->arrErr = $objFormParam->checkError();
509   
510    // ¥Ç¥£¥ì¥¯¥È¥ê̾¤Î¤ß¼èÆÀ¤¹¤ë
511    $normal_dir = ereg_replace("^https?://[a-zA-Z0-9_~=&\?\.\-]+", "", $arrRet['normal_url']);
512    $secure_dir = ereg_replace("^https?://[a-zA-Z0-9_~=&\?\.\-]+", "", $arrRet['secure_url']);
513   
514    if($normal_dir != $secure_dir) {
515        $objErr->arrErr['normal_url'] = "URL¤Ë°Û¤Ê¤ë³¬Áؤò»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£";
516        $objErr->arrErr['secure_url'] = "URL¤Ë°Û¤Ê¤ë³¬Áؤò»ØÄꤹ¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó¡£";     
517    }
518   
519    return $objErr->arrErr;
520}
521
522// ÆþÎÏÆâÍÆ¤Î¥Á¥§¥Ã¥¯
523function lfCheckDBError($objFormParam) {
524    global $objPage;
525   
526    // ÆþÎϥǡ¼¥¿¤òÅϤ¹¡£
527    $arrRet =  $objFormParam->getHashArray();
528   
529    $objErr = new SC_CheckError($arrRet);
530    $objErr->arrErr = $objFormParam->checkError();
531   
532    if(count($objErr->arrErr) == 0) {
533        // Àܳ³Îǧ
534        $dsn = $arrRet['db_type']."://".$arrRet['db_user'].":".$arrRet['db_password']."@".$arrRet['db_server'].":".$arrRet['db_port']."/".$arrRet['db_name'];
535        // Debug¥â¡¼¥É»ØÄê
536        $options['debug'] = PEAR_DB_DEBUG;
537        $objDB = DB::connect($dsn, $options);
538        // ÀܳÀ®¸ù
539        if(!PEAR::isError($objDB)) {
540            // ¥Ç¡¼¥¿¥Ù¡¼¥¹¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤Î¼èÆÀ
541            $objPage->tpl_db_version = sfGetDBVersion($dsn);           
542        } else {
543            $objErr->arrErr['all'] = ">> " . $objDB->message . "<br>";
544            // ¥¨¥é¡¼Ê¸¤ò¼èÆÀ¤¹¤ë
545            ereg("\[(.*)\]", $objDB->userinfo, $arrKey);
546            $objErr->arrErr['all'].= $arrKey[0] . "<br>";
547            gfPrintLog($objDB->userinfo, "./temp/install.log");
548        }
549    }
550    return $objErr->arrErr;
551}
552
553// SQLʸ¤Î¼Â¹Ô
554function lfExecuteSQL($filepath, $dsn, $disp_err = true) {
555    $arrErr = array();
556   
557    if(!file_exists($filepath)) {
558        $arrErr['all'] = ">> ¥¹¥¯¥ê¥×¥È¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó";
559    } else {
560        if($fp = fopen($filepath,"r")) {
561            $sql = fread($fp, filesize($filepath));
562            fclose($fp);
563        }
564        // Debug¥â¡¼¥É»ØÄê
565        $options['debug'] = PEAR_DB_DEBUG;
566        $objDB = DB::connect($dsn, $options);
567        // Àܳ¥¨¥é¡¼
568        if(!PEAR::isError($objDB)) {
569            // ²þ¹Ô¡¢¥¿¥Ö¤ò1¥¹¥Ú¡¼¥¹¤ËÊÑ´¹
570            $sql = preg_replace("/[\r\n\t]/"," ",$sql);
571            $sql_split = split(";",$sql);
572            foreach($sql_split as $key => $val){
573                if (trim($val) != "") {
574                    $ret = $objDB->query($val);
575                    if(PEAR::isError($ret) && $disp_err) {
576                        $arrErr['all'] = ">> " . $ret->message . "<br>";
577                        // ¥¨¥é¡¼Ê¸¤ò¼èÆÀ¤¹¤ë
578                        ereg("\[(.*)\]", $ret->userinfo, $arrKey);
579                        $arrErr['all'].= $arrKey[0] . "<br>";
580                        $objPage->update_mess.=">> ¥Æ¡¼¥Ö¥ë¹½À®¤ÎÊѹ¹¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£<br>";
581                        gfPrintLog($ret->userinfo, "./temp/install.log");
582                    }
583                }
584            }           
585        } else {
586            $arrErr['all'] = ">> " . $objDB->message;
587            gfPrintLog($objDB->userinfo, "./temp/install.log");
588        }
589    }
590    return $arrErr;
591}
592
593// ÀßÄê¥Õ¥¡¥¤¥ë¤ÎºîÀ®
594function lfMakeConfigFile() {
595    global $objWebParam;
596    global $objDBParam;
597       
598    $root_dir = $objWebParam->getValue('install_dir');
599    // ¸ìÈø¤Ë'/'¤ò¤Ä¤±¤ë
600    if (!ereg("/$", $root_dir)) {
601        $root_dir = $root_dir . "/";
602    }
603   
604    $normal_url = $objWebParam->getValue('normal_url');
605    // ¸ìÈø¤Ë'/'¤ò¤Ä¤±¤ë
606    if (!ereg("/$", $normal_url)) {
607        $normal_url = $normal_url . "/";
608    }
609   
610    $secure_url = $objWebParam->getValue('secure_url');
611    // ¸ìÈø¤Ë'/'¤ò¤Ä¤±¤ë
612    if (!ereg("/$", $secure_url)) {
613        $secure_url = $secure_url . "/";
614    }
615   
616    // ¥Ç¥£¥ì¥¯¥È¥ê¤Î¼èÆÀ
617    $url_dir = ereg_replace("^https?://[a-zA-Z0-9_~=&\?\.\-]+", "", $normal_url);
618   
619    $data_path = $root_dir . "../data/";
620    $filepath = $data_path . "install.inc";
621   
622    $config_data =
623    "<?php\n".
624    "    define ('ECCUBE_INSTALL', 'ON');\n" .
625    "    define ('HTML_PATH', '" . $root_dir . "');\n" .     
626    "    define ('SITE_URL', '" . $normal_url . "');\n" .
627    "    define ('SSL_URL', '" . $secure_url . "');\n" .
628    "    define ('URL_DIR', '" . $url_dir . "');\n" .   
629    "    define ('DOMAIN_NAME', '" . $objWebParam->getValue('domain') . "');\n" .
630    "    define ('DB_TYPE', '" . $objDBParam->getValue('db_type') . "');\n" .
631    "    define ('DB_USER', '" . $objDBParam->getValue('db_user') . "');\n" .
632    "    define ('DB_PASSWORD', '" . $objDBParam->getValue('db_password') . "');\n" .
633    "    define ('DB_SERVER', '" . $objDBParam->getValue('db_server') . "');\n" .
634    "    define ('DB_NAME', '" . $objDBParam->getValue('db_name') . "');\n" .
635    "    define ('DB_PORT', '" . $objDBParam->getValue('db_port') .  "');\n" .
636    "    define('DATA_PATH', '".$data_path."');\n" .
637    "?>";
638   
639    if($fp = fopen($filepath,"w")) {
640        fwrite($fp, $config_data);
641        fclose($fp);
642    }
643}
644
645// ¥Æ¡¼¥Ö¥ë¤ÎÄɲáʴû¤Ë¥Æ¡¼¥Ö¥ë¤¬Â¸ºß¤¹¤ë¾ì¹ç¤ÏºîÀ®¤·¤Ê¤¤¡Ë
646function lfAddTable($table_name, $dsn) {
647    $arrErr = array();
648    if(!sfTabaleExists($table_name, $dsn)) {
649        list($db_type) = split(":", $dsn);
650        $sql_path = "./sql/add/". $table_name . "_" .$db_type .".sql";
651        $arrErr = lfExecuteSQL($sql_path, $dsn);
652    }
653    return $arrErr;
654}
655?>
Note: See TracBrowser for help on using the repository browser.