Skip to content

Commit 930124c

Browse files
committedMar 18, 2016
升级最新版本核心框架
1 parent 0d6106d commit 930124c

File tree

106 files changed

+14580
-11828
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+14580
-11828
lines changed
 

‎README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ OneThink
77

88
### 主要特性:
99

10-
1. 基于ThinkPHP最新3.2版本
10+
1. 基于ThinkPHP最新3.2.3版本
1111
2. 模块化:全新的架构和模块化的开发机制,便于灵活扩展和二次开发。
1212
3. 文档模型/分类体系:通过和文档模型绑定,以及不同的文档类型,不同分类可以实现差异化的功能,轻松实现诸如资讯、下载、讨论和图片等功能。
1313
4. 开源免费:OneThink遵循Apache2开源协议,免费提供使用。
@@ -35,8 +35,8 @@ OneThinkֻ
3535

3636

3737
### [ 最低系统需求 ]
38-
?PHP 5.3.0 或更高版本。
39-
?MySQL 5.0 或更高版本。
38+
* PHP 5.3.0 或更高版本。
39+
* MySQL 5.0 或更高版本。
4040

4141
### [ 安装 ]
4242
1. 将OneThink压缩包解压至一个空文件夹,并上传它。
@@ -60,4 +60,4 @@ OneThink
6060
[ [开发手册](http://document.onethink.cn/) ]
6161

6262
------------------------------
63-
OneThink开发团队 2013-2014
63+
OneThink开发团队 2013-2016

‎wwwroot/Application/Install/Common/function.php

+85-68
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,36 @@
88
// +----------------------------------------------------------------------
99

1010
// 检测环境是否支持可写
11-
define('IS_WRITE',APP_MODE !== 'sae');
11+
define('IS_WRITE', APP_MODE !== 'sae');
1212

1313
/**
1414
* 系统环境检测
1515
* @return array 系统环境数据
1616
*/
17-
function check_env(){
17+
function check_env()
18+
{
1819
$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'),
2425
);
2526

2627
//PHP环境检测
27-
if($items['php'][3] < $items['php'][1]){
28+
if ($items['php'][3] < $items['php'][1]) {
2829
$items['php'][4] = 'error';
2930
session('error', true);
3031
}
3132

3233
//附件上传检测
33-
if(@ini_get('file_uploads'))
34+
if (@ini_get('file_uploads')) {
3435
$items['upload'][3] = ini_get('upload_max_filesize');
36+
}
3537

3638
//GD库检测
3739
$tmp = function_exists('gd_info') ? gd_info() : array();
38-
if(empty($tmp['GD Version'])){
40+
if (empty($tmp['GD Version'])) {
3941
$items['gd'][3] = '未安装';
4042
$items['gd'][4] = 'error';
4143
session('error', true);
@@ -45,8 +47,8 @@ function check_env(){
4547
unset($tmp);
4648

4749
//磁盘空间检测
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';
5052
}
5153

5254
return $items;
@@ -56,23 +58,24 @@ function check_env(){
5658
* 目录,文件读写检测
5759
* @return array 检测数据
5860
*/
59-
function check_dirfile(){
61+
function check_dirfile()
62+
{
6063
$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'),
6669
array('dir', '可写', 'success', './Application/User/Conf'),
6770
array('file', '可写', 'success', './Application/Common/Conf'),
6871

6972
);
7073

7174
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)) {
7679
$val[1] = '可读';
7780
$val[2] = 'error';
7881
session('error', true);
@@ -83,14 +86,14 @@ function check_dirfile(){
8386
}
8487
}
8588
} else {
86-
if(file_exists($item)) {
87-
if(!is_writable($item)) {
89+
if (file_exists($item)) {
90+
if (!is_writable($item)) {
8891
$val[1] = '不可写';
8992
$val[2] = 'error';
9093
session('error', true);
9194
}
9295
} else {
93-
if(!is_writable(dirname($item))) {
96+
if (!is_writable(dirname($item))) {
9497
$val[1] = '不存在';
9598
$val[2] = 'error';
9699
session('error', true);
@@ -106,19 +109,20 @@ function check_dirfile(){
106109
* 函数检测
107110
* @return array 检测数据
108111
*/
109-
function check_func(){
112+
function check_func()
113+
{
110114
$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', '函数'),
115119
);
116120

117121
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+
) {
122126
$val[1] = '不支持';
123127
$val[2] = 'error';
124128
session('error', true);
@@ -132,8 +136,9 @@ function check_func(){
132136
* 写入配置文件
133137
* @param array $config 配置信息
134138
*/
135-
function write_config($config, $auth){
136-
if(is_array($config)){
139+
function write_config($config, $auth)
140+
{
141+
if (is_array($config)) {
137142
//读取配置内容
138143
$conf = file_get_contents(MODULE_PATH . 'Data/conf.tpl');
139144
$user = file_get_contents(MODULE_PATH . 'Data/user.tpl');
@@ -147,14 +152,14 @@ function write_config($config, $auth){
147152
$user = str_replace('[AUTH_KEY]', $auth, $user);
148153

149154
//写入应用配置文件
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)) {
158163
show_msg('配置文件写入成功');
159164
} else {
160165
show_msg('配置文件写入失败!', 'error');
@@ -170,25 +175,29 @@ function write_config($config, $auth){
170175
* 创建数据表
171176
* @param resource $db 数据库连接资源
172177
*/
173-
function create_tables($db, $prefix = ''){
178+
function create_tables($db, $prefix = '')
179+
{
174180
//读取SQL文件
175181
$sql = file_get_contents(MODULE_PATH . 'Data/install.sql');
176182
$sql = str_replace("\r", "\n", $sql);
177183
$sql = explode(";\n", $sql);
178184

179185
//替换表前缀
180186
$orginal = C('ORIGINAL_TABLE_PREFIX');
181-
$sql = str_replace(" `{$orginal}", " `{$prefix}", $sql);
187+
$sql = str_replace(" `{$orginal}", " `{$prefix}", $sql);
182188

183189
//开始安装
184190
show_msg('开始安装数据库...');
185191
foreach ($sql as $value) {
186192
$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') {
189198
$name = preg_replace("/^CREATE TABLE `(\w+)` .*/s", "\\1", $value);
190199
$msg = "创建数据表{$name}";
191-
if(false !== $db->execute($value)){
200+
if (false !== $db->execute($value)) {
192201
show_msg($msg . '...成功');
193202
} else {
194203
show_msg($msg . '...失败!', 'error');
@@ -201,21 +210,22 @@ function create_tables($db, $prefix = ''){
201210
}
202211
}
203212

204-
function register_administrator($db, $prefix, $admin, $auth){
213+
function register_administrator($db, $prefix, $admin, $auth)
214+
{
205215
show_msg('开始注册创始人帐号...');
206216
$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')";
208218

209219
$password = user_md5($admin['password'], $auth);
210-
$sql = str_replace(
220+
$sql = str_replace(
211221
array('[PREFIX]', '[NAME]', '[PASS]', '[EMAIL]', '[TIME]', '[IP]'),
212222
array($prefix, $admin['username'], $password, $admin['email'], NOW_TIME, get_client_ip(1)),
213223
$sql);
214224
//执行sql
215225
$db->execute($sql);
216226

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');";
219229
$sql = str_replace(
220230
array('[PREFIX]', '[NAME]', '[TIME]'),
221231
array($prefix, $admin['username'], NOW_TIME),
@@ -229,7 +239,8 @@ function register_administrator($db, $prefix, $admin, $auth){
229239
* @param resource $db 数据库连接资源
230240
* @author lyq <605415184@qq.com>
231241
*/
232-
function update_tables($db, $prefix = ''){
242+
function update_tables($db, $prefix = '')
243+
{
233244
//读取SQL文件
234245
$sql = file_get_contents(MODULE_PATH . 'Data/update.sql');
235246
$sql = str_replace("\r", "\n", $sql);
@@ -242,30 +253,33 @@ function update_tables($db, $prefix = ''){
242253
show_msg('开始升级数据库...');
243254
foreach ($sql as $value) {
244255
$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') {
247261
$name = preg_replace("/^CREATE TABLE `(\w+)` .*/s", "\\1", $value);
248262
$msg = "创建数据表{$name}";
249-
if(false !== $db->execute($value)){
263+
if (false !== $db->execute($value)) {
250264
show_msg($msg . '...成功');
251265
} else {
252266
show_msg($msg . '...失败!', 'error');
253267
session('error', true);
254268
}
255269
} else {
256-
if(substr($value, 0, 8) == 'UPDATE `') {
270+
if (substr($value, 0, 8) == 'UPDATE `') {
257271
$name = preg_replace("/^UPDATE `(\w+)` .*/s", "\\1", $value);
258272
$msg = "更新数据表{$name}";
259-
} else if(substr($value, 0, 11) == 'ALTER TABLE'){
273+
} else if (substr($value, 0, 11) == 'ALTER TABLE') {
260274
$name = preg_replace("/^ALTER TABLE `(\w+)` .*/s", "\\1", $value);
261275
$msg = "修改数据表{$name}";
262-
} else if(substr($value, 0, 11) == 'INSERT INTO'){
276+
} else if (substr($value, 0, 11) == 'INSERT INTO') {
263277
$name = preg_replace("/^INSERT INTO `(\w+)` .*/s", "\\1", $value);
264278
$msg = "写入数据表{$name}";
265279
}
266-
if(($db->execute($value)) !== false){
280+
if (($db->execute($value)) !== false) {
267281
show_msg($msg . '...成功');
268-
} else{
282+
} else {
269283
show_msg($msg . '...失败!', 'error');
270284
session('error', true);
271285
}
@@ -277,7 +291,8 @@ function update_tables($db, $prefix = ''){
277291
* 及时显示提示信息
278292
* @param string $msg 提示信息
279293
*/
280-
function show_msg($msg, $class = ''){
294+
function show_msg($msg, $class = '')
295+
{
281296
echo "<script type=\"text/javascript\">showmsg(\"{$msg}\", \"{$class}\")</script>";
282297
flush();
283298
ob_flush();
@@ -287,10 +302,11 @@ function show_msg($msg, $class = ''){
287302
* 生成系统AUTH_KEY
288303
* @author 麦当苗儿 <zuojiazi@vip.qq.com>
289304
*/
290-
function build_auth_key(){
291-
$chars = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
305+
function build_auth_key()
306+
{
307+
$chars = 'abcdefghijklmnopqrstuvwxyz0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ';
292308
$chars .= '`~!@#$%^&*()_+-=[]{};:"|,.<>/?';
293-
$chars = str_shuffle($chars);
309+
$chars = str_shuffle($chars);
294310
return substr($chars, 0, 40);
295311
}
296312

@@ -299,6 +315,7 @@ function build_auth_key(){
299315
* @param string $str 要加密的字符串
300316
* @return string
301317
*/
302-
function user_md5($str, $key = ''){
318+
function user_md5($str, $key = '')
319+
{
303320
return '' === $str ? '' : md5(sha1($str) . $key);
304321
}

0 commit comments

Comments
 (0)
Please sign in to comment.