common.php
5.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<?php
// +----------------------------------------------------------------------
// | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
// +----------------------------------------------------------------------
// | Copyright (c) 2013-2019 http://www.thinkcmf.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: 老猫 <thinkcmf@126.com>
// +----------------------------------------------------------------------
function sp_testwrite($d)
{
$tfile = "_test.txt";
$fp = @fopen($d . "/" . $tfile, "w");
if (!$fp) {
return false;
}
fclose($fp);
$rs = @unlink($d . "/" . $tfile);
if ($rs) {
return true;
}
return false;
}
function sp_dir_create($path, $mode = 0777)
{
if (is_dir($path))
return true;
$ftp_enable = 0;
$path = sp_dir_path($path);
$temp = explode('/', $path);
$cur_dir = '';
$max = count($temp) - 1;
for ($i = 0; $i < $max; $i++) {
$cur_dir .= $temp[$i] . '/';
if (@is_dir($cur_dir))
continue;
@mkdir($cur_dir, 0777, true);
@chmod($cur_dir, 0777);
}
return is_dir($path);
}
function sp_dir_path($path)
{
$path = str_replace('\\', '/', $path);
if (substr($path, -1) != '/')
$path = $path . '/';
return $path;
}
function sp_execute_sql($db, $sql)
{
$sql = trim($sql);
preg_match('/CREATE TABLE .+ `([^ ]*)`/', $sql, $matches);
if ($matches) {
$table_name = $matches[1];
$msg = "创建数据表{$table_name}";
try {
$db->execute($sql);
return [
'error' => 0,
'message' => $msg . ' 成功!'
];
} catch (\Exception $e) {
return [
'error' => 1,
'message' => $msg . ' 失败!',
'exception' => $e->getTraceAsString()
];
}
} else {
try {
$db->execute($sql);
return [
'error' => 0,
'message' => 'SQL执行成功!'
];
} catch (\Exception $e) {
return [
'error' => 1,
'message' => 'SQL执行失败!',
'exception' => $e->getTraceAsString()
];
}
}
}
/**
* 显示提示信息
* @param string $msg 提示信息
*/
function sp_show_msg($msg, $class = '')
{
echo "<script type=\"text/javascript\">showmsg(\"{$msg}\", \"{$class}\")</script>";
flush();
ob_flush();
}
function sp_update_site_configs($db, $table_prefix)
{
$sitename = I("post.sitename");
$email = I("post.manager_email");
$siteurl = I("post.siteurl");
$seo_keywords = I("post.sitekeywords");
$seo_description = I("post.siteinfo");
$site_options = <<<helllo
{
"site_name":"$sitename",
"site_host":"$siteurl",
"site_root":"",
"site_icp":"",
"site_admin_email":"$email",
"site_tongji":"",
"site_copyright":"",
"site_seo_title":"$sitename",
"site_seo_keywords":"$seo_keywords",
"site_seo_description":"$seo_description"
}
helllo;
$sql = "INSERT INTO `{$table_prefix}options` (option_value,option_name) VALUES ('$site_options','site_options')";
$db->execute($sql);
sp_show_msg("网站信息配置成功!");
}
function sp_create_admin_account($db, $table_prefix, $authcode)
{
$username = I("post.manager");
$password = sp_password(I("post.manager_pwd"), $authcode);
$email = I("post.manager_email");
$create_date = date("Y-m-d h:i:s");
$ip = get_client_ip(0, true);
$sql = <<<hello
INSERT INTO `{$table_prefix}users`
(id,user_login,user_pass,user_nicename,user_email,user_url,create_time,user_activation_key,user_status,last_login_ip,last_login_time) VALUES
('1', '{$username}', '{$password}', 'admin', '{$email}', '', '{$create_date}', '', '1', '{$ip}','{$create_date}');;
hello;
$db->execute($sql);
sp_show_msg("管理员账号创建成功!");
}
function sp_create_db_config($config)
{
if (is_array($config)) {
//读取配置内容
$conf = file_get_contents(APP_PATH . 'install/data/config.php');
//替换配置项
foreach ($config as $key => $value) {
$conf = str_replace("#{$key}#", $value, $conf);
}
if (strpos(cmf_version(), '5.0.') === false) {
$confDir = CMF_ROOT . 'data/config/'; // 5.1
} else {
$confDir = CMF_ROOT . 'data/conf/'; // 5.0
}
try {
if (!file_exists($confDir)) {
mkdir($confDir, 0777, true);
}
file_put_contents($confDir . 'database.php', $conf);
} catch (\Exception $e) {
return false;
}
return true;
}
}