最新服务器上的版本,以后用这个
zhangmeng
2023-04-19 e3f5aa12f58d986098a9de0f5cb38060e403036d
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
<?php
error_reporting(E_ALL & ~E_NOTICE);
defined('IN_IA') or exit('Access Denied');
require __DIR__ . '/vendor/jdorn/sql-formatter/lib/SqlFormatter.php';
ini_set('max_execution_time', 1800);
 
/***
 * 记录日志
 * @param $content
 * @return bool
 */
function upgrade_log($content)
{
    $logFile = __DIR__ . '/upgrade.log';
    $handle = fopen($logFile, 'a');
    if (!$handle) {
        return false;
    }
    $nowDateTime = date('Y-m-d H:i:s');
    $string = <<<EOF
{$nowDateTime}: 
--------->
{$content}
<---------
 
 
EOF;
    $result = fwrite($handle, $string);
    fclose($handle);
    return $result ? true : false;
}
 
/**
 * 执行SQL
 * @param string $sql 要运行的SQL
 * @param bool $split 自动拆分SQL
 * @param bool $continueOnError 遇到错误继续执行
 * @throws Exception
 */
function sql_execute($sql, $split = true, $continueOnError = true)
{
    if ($split) {
        $list = SqlFormatter::splitQuery($sql);
    } else {
        $list = [$sql];
    }
    foreach ($list as $item) {
        try {
            set_error_handler(function ($errno, $errstr) {
                upgrade_log($errstr);
            });
            pdo_run($item);
            restore_error_handler();
        } catch (Exception $exception) {
            upgrade_log($exception->getMessage());
            if (!$continueOnError) {
                throw $exception;
            }
        }
    }
}
 
/**
 * 检查数据表是否存在
 * @param $tableName
 * @return bool
 */
function sql_table_exists($tableName)
{
    $sql = "SHOW TABLES LIKE '{$tableName}';";
    $result = pdo_fetch($sql);
    if (is_array($result) && count($result)) {
        return true;
    } else {
        return false;
    }
}
 
$dbConfigFile = __DIR__ . '/config/db.php';
if (!file_exists($dbConfigFile)) {
    file_put_contents($dbConfigFile, <<<EOF
<?php
function getWe7DbConfig()
{
    require __DIR__ . '/../../../data/config.php';
    if (!empty(\$config['db']['master'])) {
        \$we7DbConfig = \$config['db']['master'];
    } else {
        \$we7DbConfig = \$config['db'];
    }
    return [
        'host' => \$we7DbConfig['host'],
        'port' => \$we7DbConfig['port'],
        'dbname' => \$we7DbConfig['database'],
        'username' => \$we7DbConfig['username'],
        'password' => \$we7DbConfig['password'],
    ];
}
 
\$we7DbConfig = getWe7DbConfig();
return [
    'host' => \$we7DbConfig['host'],
    'port' => \$we7DbConfig['port'],
    'dbname' => \$we7DbConfig['dbname'],
    'username' => \$we7DbConfig['username'],
    'password' => \$we7DbConfig['password'],
    'tablePrefix' => 'zjhj_bd_',
];
 
EOF
    );
}
 
$optionTableName = 'zjhj_bd_option';
 
try {
    if (sql_table_exists($optionTableName)) {
        $result = pdo_fetch("SELECT * FROM `{$optionTableName}`  WHERE `name`='version' ORDER BY `id` DESC LIMIT 1;");
        if (is_array($result) && count($result)) {
            $currentVersion = isset($result['value']) ? json_decode($result['value']) : null;
        } else {
            $currentVersion = null;
        }
    } else {
        $currentVersion = null;
    }
} catch (Exception $exception) {
    $currentVersion = null;
}
$isNewInstall = $currentVersion ? false : true;
$currentVersion = $currentVersion ? $currentVersion : '0.0.0';
$lastVersion = $currentVersion;
 
// 运行各个版本的升级脚本
$versions = require __DIR__ . '/versions.php';
foreach ($versions as $v => $f) {
    $lastVersion = $v;
    if (version_compare($v, $currentVersion) > 0) {
        if ($f instanceof \Closure) {
            $f();
        }
    }
}
 
if (sql_table_exists($optionTableName)) { // 结束,更新数据库标记的版本号
    $nowDateTime = date('Y-m-d H:i:s');
    if ($isNewInstall) {
        $updateVersionSql = <<<EOF
INSERT INTO `{$optionTableName}` (`mall_id`, `mch_id`, `group`, `name`, `value`, `created_at`, `updated_at`) VALUES
(0,    0,    '',    'version',    '\"{$lastVersion}\"',    '{$nowDateTime}',    '{$nowDateTime}');
EOF;
    } else {
        $updateVersionSql = <<<EOF
UPDATE `{$optionTableName}` SET
`value` = '\"{$lastVersion}\"',
`updated_at` = '{$nowDateTime}'
WHERE `name` = 'version';
EOF;
    }
    sql_execute($updateVersionSql);
}