@@ -39,20 +39,20 @@ function console($item, $result, $err = '')
39
39
40
40
// MySQL 连接
41
41
try {
42
- $ err = '' ;
42
+ $ dberr = '' ;
43
43
$ dsn = "mysql:host= {$ env ['DB_HOST ' ]}: {$ env ['DB_PORT ' ]};dbname= {$ env ['DB_DATABASE ' ]}" ;
44
44
$ db = new PDO ($ dsn , $ env ['DB_USERNAME ' ], $ env ['DB_PASSWORD ' ], [PDO ::ATTR_TIMEOUT => 3 ]);
45
45
} catch (Exception $ e ) {
46
- $ err = $ e ->getMessage ();
46
+ $ dberr = $ e ->getMessage ();
47
47
}
48
- console ('MySQL 连接 ' , $ err ? '失败 ' : '成功 ' , $ err );
48
+ console ('MySQL 连接 ' , $ dberr ? '失败 ' : '成功 ' , $ dberr );
49
49
50
50
// MySQL 数据表
51
51
try {
52
- if ($ err ) {
53
- throw new Exception ($ err );
52
+ if ($ dberr ) {
53
+ throw new Exception ($ dberr );
54
54
}
55
- $ err = '' ;
55
+ $ err = false ;
56
56
$ tables = $ db ->query ("show tables like 'code_leak' " )->fetchAll (PDO ::FETCH_ASSOC )[0 ];
57
57
if (!count ($ tables )) {
58
58
throw new Exception ('请执行 php artisan migrate 导入数据表 ' );
@@ -62,7 +62,34 @@ function console($item, $result, $err = '')
62
62
}
63
63
console ('MySQL 数据表 ' , $ err ? '未导入 ' : '已导入 ' , $ err );
64
64
65
- echo DIVIDER ."[ 其他信息 ] \n" ;
65
+ // GitHub API
66
+ try {
67
+ $ apierr = false ;
68
+ $ url = 'https://api.github.com ' ;
69
+ $ ch = curl_init ($ url );
70
+ curl_setopt ($ ch , CURLOPT_HEADER , 0 );
71
+ curl_setopt ($ ch , CURLOPT_RETURNTRANSFER , 1 );
72
+ curl_setopt ($ ch , CURLOPT_TIMEOUT , 5 );
73
+ curl_setopt ($ ch , CURLOPT_USERAGENT , 'code6 ' );
74
+ $ result = json_decode (curl_exec ($ ch ), true );
75
+ if (empty ($ result )) {
76
+ throw new Exception ("请求 $ url 错误 " );
77
+ }
78
+ curl_close ($ ch );
79
+ } catch (Exception $ e ) {
80
+ $ apierr = $ e ->getMessage ();
81
+ }
82
+ console ('GitHub API ' , $ apierr ? '请求错误 ' : '请求成功 ' , $ apierr );
83
+
84
+ // PHP 禁用函数
85
+ $ disFuns = get_cfg_var ('disable_functions ' ) ?: '无 ' ;
86
+ echo "PHP 禁用函数: $ disFuns \n" ;
87
+
88
+ // PHP 已编译模块
89
+ $ exts = implode (', ' , get_loaded_extensions ());
90
+ echo "PHP 已编译模块: $ exts \n" ;
91
+
92
+ echo DIVIDER ."[ 系统信息 ] \n" ;
66
93
67
94
// 码小六版本
68
95
$ version = trim (file_get_contents (ROOT .'/version ' ));
@@ -76,12 +103,4 @@ function console($item, $result, $err = '')
76
103
$ appDebug = $ env ['APP_DEBUG ' ] ?? '无 ' ;
77
104
echo "框架调试开关: $ appDebug \n" ;
78
105
79
- // PHP 禁用函数
80
- $ disFuns = get_cfg_var ('disable_functions ' ) ?: '无 ' ;
81
- echo "PHP 禁用函数: $ disFuns \n" ;
82
-
83
- // PHP 已编译模块
84
- $ exts = implode (', ' , get_loaded_extensions ());
85
- echo "PHP 已编译模块: $ exts \n" ;
86
-
87
106
echo DIVIDER ."\n有任何问题和建议请联系-> https://github.com/4x99/code6/issues \n\n" ;
0 commit comments