forked from sahilsinha/openemr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sql_upgrade.php
251 lines (225 loc) · 8 KB
/
sql_upgrade.php
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?php
// Copyright (C) 2008-2010 Rod Roark <rod@sunsetsystems.com>
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This may be run after an upgraded OpenEMR has been installed.
// Its purpose is to upgrade the MySQL OpenEMR database as needed
// for the new release.
// Disable PHP timeout. This will not work in safe mode.
ini_set('max_execution_time', '0');
$ignoreAuth = true; // no login required
require_once('interface/globals.php');
require_once('library/sql.inc');
// Force logging off
$GLOBALS["enable_auditlog"]=0;
function tableExists($tblname) {
$row = sqlQuery("SHOW TABLES LIKE '$tblname'");
if (empty($row)) return false;
return true;
}
function columnExists($tblname, $colname) {
$row = sqlQuery("SHOW COLUMNS FROM $tblname LIKE '$colname'");
if (empty($row)) return false;
return true;
}
function columnHasType($tblname, $colname, $coltype) {
$row = sqlQuery("SHOW COLUMNS FROM $tblname LIKE '$colname'");
if (empty($row)) return true;
return (strcasecmp($row['Type'], $coltype) == 0);
}
function tableHasRow($tblname, $colname, $value) {
$row = sqlQuery("SELECT COUNT(*) AS count FROM $tblname WHERE " .
"$colname LIKE '$value'");
return $row['count'] ? true : false;
}
function tableHasRow2D($tblname, $colname, $value, $colname2, $value2) {
$row = sqlQuery("SELECT COUNT(*) AS count FROM $tblname WHERE " .
"$colname LIKE '$value' AND $colname2 LIKE '$value2'");
return $row['count'] ? true : false;
}
function upgradeFromSqlFile($filename) {
global $webserver_root;
flush();
echo "<font color='green'>Processing $filename ...</font><br />\n";
$fullname = "$webserver_root/sql/$filename";
$fd = fopen($fullname, 'r');
if ($fd == FALSE) {
echo "ERROR. Could not open '$fullname'.\n";
flush();
break;
}
$query = "";
$line = "";
$skipping = false;
while (!feof ($fd)){
$line = fgets($fd, 2048);
$line = rtrim($line);
if (preg_match('/^\s*--/', $line)) continue;
if ($line == "") continue;
if (preg_match('/^#IfNotTable\s+(\S+)/', $line, $matches)) {
$skipping = tableExists($matches[1]);
if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
}
else if (preg_match('/^#IfTable\s+(\S+)/', $line, $matches)) {
$skipping = ! tableExists($matches[1]);
if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
}
else if (preg_match('/^#IfMissingColumn\s+(\S+)\s+(\S+)/', $line, $matches)) {
if (tableExists($matches[1])) {
$skipping = columnExists($matches[1], $matches[2]);
}
else {
// If no such table then the column is deemed not "missing".
$skipping = true;
}
if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
}
else if (preg_match('/^#IfNotColumnType\s+(\S+)\s+(\S+)\s+(\S+)/', $line, $matches)) {
if (tableExists($matches[1])) {
$skipping = columnHasType($matches[1], $matches[2], $matches[3]);
}
else {
// If no such table then the column type is deemed not "missing".
$skipping = true;
}
if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
}
else if (preg_match('/^#IfNotRow\s+(\S+)\s+(\S+)\s+(.+)/', $line, $matches)) {
if (tableExists($matches[1])) {
$skipping = tableHasRow($matches[1], $matches[2], $matches[3]);
}
else {
// If no such table then the row is deemed not "missing".
$skipping = true;
}
if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
}
else if (preg_match('/^#IfNotRow2D\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(.+)/', $line, $matches)) {
if (tableExists($matches[1])) {
$skipping = tableHasRow2D($matches[1], $matches[2], $matches[3], $matches[4], $matches[5]);
}
else {
// If no such table then the row is deemed not "missing".
$skipping = true;
}
if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
}
else if (preg_match('/^#IfNotRow2Dx2\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(.+)/', $line, $matches)) {
if (tableExists($matches[1])) {
// If either check exist, then will skip
$firstCheck = tableHasRow2D($matches[1], $matches[2], $matches[3], $matches[4], $matches[5]);
$secondCheck = tableHasRow2D($matches[1], $matches[2], $matches[3], $matches[6], $matches[7]);
if ($firstCheck || $secondCheck) {
$skipping = true;
}
else {
$skipping = false;
}
}
else {
// If no such table then the row is deemed not "missing".
$skipping = true;
}
if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
}
else if (preg_match('/^#EndIf/', $line)) {
$skipping = false;
}
if (preg_match('/^\s*#/', $line)) continue;
if ($skipping) continue;
$query = $query . $line;
if (substr($query, -1) == ';') {
$query = rtrim($query, ';');
echo "$query<br />\n";
if (!sqlStatement($query)) {
echo "<font color='red'>The above statement failed: " .
mysql_error() . "<br />Upgrading will continue.<br /></font>\n";
}
$query = '';
}
}
flush();
} // end function
$versions = array();
$sqldir = "$webserver_root/sql";
$dh = opendir($sqldir);
if (! $dh) die("Cannot read $sqldir");
while (false !== ($sfname = readdir($dh))) {
if (substr($sfname, 0, 1) == '.') continue;
if (preg_match('/^(\d+)_(\d+)_(\d+)-to-\d+_\d+_\d+_upgrade.sql$/', $sfname, $matches)) {
$version = $matches[1] . '.' . $matches[2] . '.' . $matches[3];
$versions[$version] = $sfname;
}
}
closedir($dh);
ksort($versions);
?>
<html>
<head>
<title>OpenEMR Database Upgrade</title>
<link rel='STYLESHEET' href='interface/themes/style_blue.css'>
</head>
<body>
<center>
<span class='title'>OpenEMR Database Upgrade</span>
<br>
</center>
<?php
if (!empty($_POST['form_submit'])) {
$form_old_version = $_POST['form_old_version'];
foreach ($versions as $version => $filename) {
if (strcmp($version, $form_old_version) < 0) continue;
upgradeFromSqlFile($filename);
}
if (!empty($GLOBALS['ippf_specific'])) {
// Upgrade custom stuff for IPPF.
upgradeFromSqlFile('ippf_upgrade.sql');
}
flush();
echo "<font color='green'>Updating global configuration defaults...</font><br />\n";
require_once("library/globals.inc.php");
foreach ($GLOBALS_METADATA as $grpname => $grparr) {
foreach ($grparr as $fldid => $fldarr) {
list($fldname, $fldtype, $flddef, $flddesc) = $fldarr;
if (substr($fldtype, 0, 2) !== 'm_') {
$row = sqlQuery("SELECT count(*) AS count FROM globals WHERE gl_name = '$fldid'");
if (empty($row['count'])) {
sqlStatement("INSERT INTO globals ( gl_name, gl_index, gl_value ) " .
"VALUES ( '$fldid', '0', '$flddef' )");
}
}
}
}
echo "<font color='green'>Updating version indicators...</font><br />\n";
sqlStatement("UPDATE version SET v_major = '$v_major', v_minor = '$v_minor', " .
"v_patch = '$v_patch', v_tag = '$v_tag', v_database = '$v_database'");
echo "<p><font color='green'>Database upgrade finished.</font></p>\n";
echo "</body></html>\n";
exit();
}
?>
<center>
<form method='post' action='sql_upgrade.php'>
<p>Please select the prior release you are converting from:
<select name='form_old_version'>
<?php
foreach ($versions as $version => $filename) {
echo " <option value='$version'";
// Defaulting to most recent version, which is now 4.0.0.
if ($version === '4.0.0') echo " selected";
echo ">$version</option>\n";
}
?>
</select>
</p>
<p>If you are unsure or were using a development version between two
releases, then choose the older of possible releases.</p>
<p><input type='submit' name='form_submit' value='Upgrade Database' /></p>
</form>
</center>
</body>
</html>