8
8
// +----------------------------------------------------------------------
9
9
10
10
// 检测环境是否支持可写
11
- define ('IS_WRITE ' ,APP_MODE !== 'sae ' );
11
+ define ('IS_WRITE ' , APP_MODE !== 'sae ' );
12
12
13
13
/**
14
14
* 系统环境检测
15
15
* @return array 系统环境数据
16
16
*/
17
- function check_env (){
17
+ function check_env ()
18
+ {
18
19
$ items = array (
19
- 'os ' => array ('操作系统 ' , '不限制 ' , '类Unix ' , PHP_OS , 'success ' ),
20
- 'php ' => array ('PHP版本 ' , '5.3 ' , '5.3+ ' , PHP_VERSION , 'success ' ),
21
- 'upload ' => array ('附件上传 ' , '不限制 ' , '2M+ ' , '未知 ' , 'success ' ),
22
- 'gd ' => array ('GD库 ' , '2.0 ' , '2.0+ ' , '未知 ' , 'success ' ),
23
- 'disk ' => array ('磁盘空间 ' , '5M ' , '不限制 ' , '未知 ' , 'success ' ),
20
+ 'os ' => array ('操作系统 ' , '不限制 ' , '类Unix ' , PHP_OS , 'success ' ),
21
+ 'php ' => array ('PHP版本 ' , '5.3 ' , '5.3+ ' , PHP_VERSION , 'success ' ),
22
+ 'upload ' => array ('附件上传 ' , '不限制 ' , '2M+ ' , '未知 ' , 'success ' ),
23
+ 'gd ' => array ('GD库 ' , '2.0 ' , '2.0+ ' , '未知 ' , 'success ' ),
24
+ 'disk ' => array ('磁盘空间 ' , '5M ' , '不限制 ' , '未知 ' , 'success ' ),
24
25
);
25
26
26
27
//PHP环境检测
27
- if ($ items ['php ' ][3 ] < $ items ['php ' ][1 ]){
28
+ if ($ items ['php ' ][3 ] < $ items ['php ' ][1 ]) {
28
29
$ items ['php ' ][4 ] = 'error ' ;
29
30
session ('error ' , true );
30
31
}
31
32
32
33
//附件上传检测
33
- if (@ini_get ('file_uploads ' ))
34
+ if (@ini_get ('file_uploads ' )) {
34
35
$ items ['upload ' ][3 ] = ini_get ('upload_max_filesize ' );
36
+ }
35
37
36
38
//GD库检测
37
39
$ tmp = function_exists ('gd_info ' ) ? gd_info () : array ();
38
- if (empty ($ tmp ['GD Version ' ])){
40
+ if (empty ($ tmp ['GD Version ' ])) {
39
41
$ items ['gd ' ][3 ] = '未安装 ' ;
40
42
$ items ['gd ' ][4 ] = 'error ' ;
41
43
session ('error ' , true );
@@ -45,8 +47,8 @@ function check_env(){
45
47
unset($ tmp );
46
48
47
49
//磁盘空间检测
48
- if (function_exists ('disk_free_space ' )) {
49
- $ items ['disk ' ][3 ] = floor (disk_free_space (INSTALL_APP_PATH ) / (1024 * 1024 )). 'M ' ;
50
+ if (function_exists ('disk_free_space ' )) {
51
+ $ items ['disk ' ][3 ] = floor (disk_free_space (INSTALL_APP_PATH ) / (1024 * 1024 )) . 'M ' ;
50
52
}
51
53
52
54
return $ items ;
@@ -56,23 +58,24 @@ function check_env(){
56
58
* 目录,文件读写检测
57
59
* @return array 检测数据
58
60
*/
59
- function check_dirfile (){
61
+ function check_dirfile ()
62
+ {
60
63
$ items = array (
61
- array ('dir ' , '可写 ' , 'success ' , './Uploads/Download ' ),
62
- array ('dir ' , '可写 ' , 'success ' , './Uploads/Picture ' ),
63
- array ('dir ' , '可写 ' , 'success ' , './Uploads/Editor ' ),
64
- array ('dir ' , '可写 ' , 'success ' , './Runtime ' ),
65
- array ('dir ' , '可写 ' , 'success ' , './Data ' ),
64
+ array ('dir ' , '可写 ' , 'success ' , './Uploads/Download ' ),
65
+ array ('dir ' , '可写 ' , 'success ' , './Uploads/Picture ' ),
66
+ array ('dir ' , '可写 ' , 'success ' , './Uploads/Editor ' ),
67
+ array ('dir ' , '可写 ' , 'success ' , './Runtime ' ),
68
+ array ('dir ' , '可写 ' , 'success ' , './Data ' ),
66
69
array ('dir ' , '可写 ' , 'success ' , './Application/User/Conf ' ),
67
70
array ('file ' , '可写 ' , 'success ' , './Application/Common/Conf ' ),
68
71
69
72
);
70
73
71
74
foreach ($ items as &$ val ) {
72
- $ item = INSTALL_APP_PATH . $ val [3 ];
73
- if ('dir ' == $ val [0 ]){
74
- if (!is_writable ($ item )) {
75
- if (is_dir ($ items )) {
75
+ $ item = INSTALL_APP_PATH . $ val [3 ];
76
+ if ('dir ' == $ val [0 ]) {
77
+ if (!is_writable ($ item )) {
78
+ if (is_dir ($ items )) {
76
79
$ val [1 ] = '可读 ' ;
77
80
$ val [2 ] = 'error ' ;
78
81
session ('error ' , true );
@@ -83,14 +86,14 @@ function check_dirfile(){
83
86
}
84
87
}
85
88
} else {
86
- if (file_exists ($ item )) {
87
- if (!is_writable ($ item )) {
89
+ if (file_exists ($ item )) {
90
+ if (!is_writable ($ item )) {
88
91
$ val [1 ] = '不可写 ' ;
89
92
$ val [2 ] = 'error ' ;
90
93
session ('error ' , true );
91
94
}
92
95
} else {
93
- if (!is_writable (dirname ($ item ))) {
96
+ if (!is_writable (dirname ($ item ))) {
94
97
$ val [1 ] = '不存在 ' ;
95
98
$ val [2 ] = 'error ' ;
96
99
session ('error ' , true );
@@ -106,19 +109,20 @@ function check_dirfile(){
106
109
* 函数检测
107
110
* @return array 检测数据
108
111
*/
109
- function check_func (){
112
+ function check_func ()
113
+ {
110
114
$ items = array (
111
- array ('pdo ' ,'支持 ' ,'success ' ,'类 ' ),
112
- array ('pdo_mysql ' ,'支持 ' ,'success ' ,'模块 ' ),
113
- array ('file_get_contents ' , '支持 ' , 'success ' ,'函数 ' ),
114
- array ('mb_strlen ' , '支持 ' , 'success ' ,'函数 ' ),
115
+ array ('pdo ' , '支持 ' , 'success ' , '类 ' ),
116
+ array ('pdo_mysql ' , '支持 ' , 'success ' , '模块 ' ),
117
+ array ('file_get_contents ' , '支持 ' , 'success ' , '函数 ' ),
118
+ array ('mb_strlen ' , '支持 ' , 'success ' , '函数 ' ),
115
119
);
116
120
117
121
foreach ($ items as &$ val ) {
118
- if (('类 ' == $ val [3 ] && !class_exists ($ val [0 ]))
119
- || ('模块 ' == $ val [3 ] && !extension_loaded ($ val [0 ]))
120
- || ('函数 ' == $ val [3 ] && !function_exists ($ val [0 ]))
121
- ) {
122
+ if (('类 ' == $ val [3 ] && !class_exists ($ val [0 ]))
123
+ || ('模块 ' == $ val [3 ] && !extension_loaded ($ val [0 ]))
124
+ || ('函数 ' == $ val [3 ] && !function_exists ($ val [0 ]))
125
+ ) {
122
126
$ val [1 ] = '不支持 ' ;
123
127
$ val [2 ] = 'error ' ;
124
128
session ('error ' , true );
@@ -132,8 +136,9 @@ function check_func(){
132
136
* 写入配置文件
133
137
* @param array $config 配置信息
134
138
*/
135
- function write_config ($ config , $ auth ){
136
- if (is_array ($ config )){
139
+ function write_config ($ config , $ auth )
140
+ {
141
+ if (is_array ($ config )) {
137
142
//读取配置内容
138
143
$ conf = file_get_contents (MODULE_PATH . 'Data/conf.tpl ' );
139
144
$ user = file_get_contents (MODULE_PATH . 'Data/user.tpl ' );
@@ -147,14 +152,14 @@ function write_config($config, $auth){
147
152
$ user = str_replace ('[AUTH_KEY] ' , $ auth , $ user );
148
153
149
154
//写入应用配置文件
150
- if (!IS_WRITE ){
151
- return '由于您的环境不可写,请复制下面的配置文件内容覆盖到相关的配置文件,然后再登录后台。<p> ' . realpath (APP_PATH ). '/Common/Conf/config.php</p>
152
- <textarea name="" style="width:650px;height:185px"> '. $ conf. '</textarea>
153
- <p> '. realpath (APP_PATH ). '/User/Conf/config.php</p>
154
- <textarea name="" style="width:650px;height:125px"> '. $ user. '</textarea> ' ;
155
- }else {
156
- if (file_put_contents (APP_PATH . 'Common/Conf/config.php ' , $ conf ) &&
157
- file_put_contents (APP_PATH . 'User/Conf/config.php ' , $ user )){
155
+ if (!IS_WRITE ) {
156
+ return '由于您的环境不可写,请复制下面的配置文件内容覆盖到相关的配置文件,然后再登录后台。<p> ' . realpath (APP_PATH ) . '/Common/Conf/config.php</p>
157
+ <textarea name="" style="width:650px;height:185px"> ' . $ conf . '</textarea>
158
+ <p> ' . realpath (APP_PATH ) . '/User/Conf/config.php</p>
159
+ <textarea name="" style="width:650px;height:125px"> ' . $ user . '</textarea> ' ;
160
+ } else {
161
+ if (file_put_contents (APP_PATH . 'Common/Conf/config.php ' , $ conf ) &&
162
+ file_put_contents (APP_PATH . 'User/Conf/config.php ' , $ user )) {
158
163
show_msg ('配置文件写入成功 ' );
159
164
} else {
160
165
show_msg ('配置文件写入失败! ' , 'error ' );
@@ -170,25 +175,29 @@ function write_config($config, $auth){
170
175
* 创建数据表
171
176
* @param resource $db 数据库连接资源
172
177
*/
173
- function create_tables ($ db , $ prefix = '' ){
178
+ function create_tables ($ db , $ prefix = '' )
179
+ {
174
180
//读取SQL文件
175
181
$ sql = file_get_contents (MODULE_PATH . 'Data/install.sql ' );
176
182
$ sql = str_replace ("\r" , "\n" , $ sql );
177
183
$ sql = explode ("; \n" , $ sql );
178
184
179
185
//替换表前缀
180
186
$ orginal = C ('ORIGINAL_TABLE_PREFIX ' );
181
- $ sql = str_replace (" ` {$ orginal }" , " ` {$ prefix }" , $ sql );
187
+ $ sql = str_replace (" ` {$ orginal }" , " ` {$ prefix }" , $ sql );
182
188
183
189
//开始安装
184
190
show_msg ('开始安装数据库... ' );
185
191
foreach ($ sql as $ value ) {
186
192
$ value = trim ($ value );
187
- if (empty ($ value )) continue ;
188
- if (substr ($ value , 0 , 12 ) == 'CREATE TABLE ' ) {
193
+ if (empty ($ value )) {
194
+ continue ;
195
+ }
196
+
197
+ if (substr ($ value , 0 , 12 ) == 'CREATE TABLE ' ) {
189
198
$ name = preg_replace ("/^CREATE TABLE `(\w+)` .*/s " , "\\1 " , $ value );
190
199
$ msg = "创建数据表 {$ name }" ;
191
- if (false !== $ db ->execute ($ value )){
200
+ if (false !== $ db ->execute ($ value )) {
192
201
show_msg ($ msg . '...成功 ' );
193
202
} else {
194
203
show_msg ($ msg . '...失败! ' , 'error ' );
@@ -201,21 +210,22 @@ function create_tables($db, $prefix = ''){
201
210
}
202
211
}
203
212
204
- function register_administrator ($ db , $ prefix , $ admin , $ auth ){
213
+ function register_administrator ($ db , $ prefix , $ admin , $ auth )
214
+ {
205
215
show_msg ('开始注册创始人帐号... ' );
206
216
$ sql = "INSERT INTO `[PREFIX]ucenter_member` VALUES " .
207
- "('1', '[NAME]', '[PASS]', '[EMAIL]', '', '[TIME]', '[IP]', 0, 0, '[TIME]', '1') " ;
217
+ "('1', '[NAME]', '[PASS]', '[EMAIL]', '', '[TIME]', '[IP]', 0, 0, '[TIME]', '1') " ;
208
218
209
219
$ password = user_md5 ($ admin ['password ' ], $ auth );
210
- $ sql = str_replace (
220
+ $ sql = str_replace (
211
221
array ('[PREFIX] ' , '[NAME] ' , '[PASS] ' , '[EMAIL] ' , '[TIME] ' , '[IP] ' ),
212
222
array ($ prefix , $ admin ['username ' ], $ password , $ admin ['email ' ], NOW_TIME , get_client_ip (1 )),
213
223
$ sql );
214
224
//执行sql
215
225
$ db ->execute ($ sql );
216
226
217
- $ sql = "INSERT INTO `[PREFIX]member` VALUES " .
218
- "('1', '[NAME]', '0', '0000-00-00', '', '0', '1', '0', '[TIME]', '0', '[TIME]', '1'); " ;
227
+ $ sql = "INSERT INTO `[PREFIX]member` VALUES " .
228
+ "('1', '[NAME]', '0', '0000-00-00', '', '0', '1', '0', '[TIME]', '0', '[TIME]', '1'); " ;
219
229
$ sql = str_replace (
220
230
array ('[PREFIX] ' , '[NAME] ' , '[TIME] ' ),
221
231
array ($ prefix , $ admin ['username ' ], NOW_TIME ),
@@ -229,7 +239,8 @@ function register_administrator($db, $prefix, $admin, $auth){
229
239
* @param resource $db 数据库连接资源
230
240
* @author lyq <605415184@qq.com>
231
241
*/
232
- function update_tables ($ db , $ prefix = '' ){
242
+ function update_tables ($ db , $ prefix = '' )
243
+ {
233
244
//读取SQL文件
234
245
$ sql = file_get_contents (MODULE_PATH . 'Data/update.sql ' );
235
246
$ sql = str_replace ("\r" , "\n" , $ sql );
@@ -242,30 +253,33 @@ function update_tables($db, $prefix = ''){
242
253
show_msg ('开始升级数据库... ' );
243
254
foreach ($ sql as $ value ) {
244
255
$ value = trim ($ value );
245
- if (empty ($ value )) continue ;
246
- if (substr ($ value , 0 , 12 ) == 'CREATE TABLE ' ) {
256
+ if (empty ($ value )) {
257
+ continue ;
258
+ }
259
+
260
+ if (substr ($ value , 0 , 12 ) == 'CREATE TABLE ' ) {
247
261
$ name = preg_replace ("/^CREATE TABLE `(\w+)` .*/s " , "\\1 " , $ value );
248
262
$ msg = "创建数据表 {$ name }" ;
249
- if (false !== $ db ->execute ($ value )){
263
+ if (false !== $ db ->execute ($ value )) {
250
264
show_msg ($ msg . '...成功 ' );
251
265
} else {
252
266
show_msg ($ msg . '...失败! ' , 'error ' );
253
267
session ('error ' , true );
254
268
}
255
269
} else {
256
- if (substr ($ value , 0 , 8 ) == 'UPDATE ` ' ) {
270
+ if (substr ($ value , 0 , 8 ) == 'UPDATE ` ' ) {
257
271
$ name = preg_replace ("/^UPDATE `(\w+)` .*/s " , "\\1 " , $ value );
258
272
$ msg = "更新数据表 {$ name }" ;
259
- } else if (substr ($ value , 0 , 11 ) == 'ALTER TABLE ' ){
273
+ } else if (substr ($ value , 0 , 11 ) == 'ALTER TABLE ' ) {
260
274
$ name = preg_replace ("/^ALTER TABLE `(\w+)` .*/s " , "\\1 " , $ value );
261
275
$ msg = "修改数据表 {$ name }" ;
262
- } else if (substr ($ value , 0 , 11 ) == 'INSERT INTO ' ){
276
+ } else if (substr ($ value , 0 , 11 ) == 'INSERT INTO ' ) {
263
277
$ name = preg_replace ("/^INSERT INTO `(\w+)` .*/s " , "\\1 " , $ value );
264
278
$ msg = "写入数据表 {$ name }" ;
265
279
}
266
- if (($ db ->execute ($ value )) !== false ){
280
+ if (($ db ->execute ($ value )) !== false ) {
267
281
show_msg ($ msg . '...成功 ' );
268
- } else {
282
+ } else {
269
283
show_msg ($ msg . '...失败! ' , 'error ' );
270
284
session ('error ' , true );
271
285
}
@@ -277,7 +291,8 @@ function update_tables($db, $prefix = ''){
277
291
* 及时显示提示信息
278
292
* @param string $msg 提示信息
279
293
*/
280
- function show_msg ($ msg , $ class = '' ){
294
+ function show_msg ($ msg , $ class = '' )
295
+ {
281
296
echo "<script type= \"text/javascript \">showmsg( \"{$ msg }\", \"{$ class }\")</script> " ;
282
297
flush ();
283
298
ob_flush ();
@@ -287,10 +302,11 @@ function show_msg($msg, $class = ''){
287
302
* 生成系统AUTH_KEY
288
303
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
289
304
*/
290
- function build_auth_key (){
291
- $ chars = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ ' ;
305
+ function build_auth_key ()
306
+ {
307
+ $ chars = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ ' ;
292
308
$ chars .= '`~!@#$%^&*()_+-=[]{};:"|,.<>/? ' ;
293
- $ chars = str_shuffle ($ chars );
309
+ $ chars = str_shuffle ($ chars );
294
310
return substr ($ chars , 0 , 40 );
295
311
}
296
312
@@ -299,6 +315,7 @@ function build_auth_key(){
299
315
* @param string $str 要加密的字符串
300
316
* @return string
301
317
*/
302
- function user_md5 ($ str , $ key = '' ){
318
+ function user_md5 ($ str , $ key = '' )
319
+ {
303
320
return '' === $ str ? '' : md5 (sha1 ($ str ) . $ key );
304
321
}
0 commit comments