set default margins to 5
[openemr.git] / sql_upgrade.php
blob8409d573cf331a385d29ff91f99e9d7aaaa8835c
1 <?php
2 // Copyright (C) 2008-2009 Rod Roark <rod@sunsetsystems.com>
3 //
4 // This program is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU General Public License
6 // as published by the Free Software Foundation; either version 2
7 // of the License, or (at your option) any later version.
8 //
9 // This may be run after an upgraded OpenEMR has been installed.
10 // Its purpose is to upgrade the MySQL OpenEMR database as needed
11 // for the new release.
13 // Disable PHP timeout. This will not work in safe mode.
14 ini_set('max_execution_time', '0');
16 $ignoreAuth = true; // no login required
18 require_once('interface/globals.php');
19 require_once('library/sql.inc');
21 function tableExists($tblname) {
22 $row = sqlQuery("SHOW TABLES LIKE '$tblname'");
23 if (empty($row)) return false;
24 return true;
27 function columnExists($tblname, $colname) {
28 $row = sqlQuery("SHOW COLUMNS FROM $tblname LIKE '$colname'");
29 if (empty($row)) return false;
30 return true;
33 function columnHasType($tblname, $colname, $coltype) {
34 $row = sqlQuery("SHOW COLUMNS FROM $tblname LIKE '$colname'");
35 if (empty($row)) return true;
36 return (strcasecmp($row['Type'], $coltype) == 0);
39 function tableHasRow($tblname, $colname, $value) {
40 $row = sqlQuery("SELECT COUNT(*) AS count FROM $tblname WHERE " .
41 "$colname LIKE '$value'");
42 return $row['count'] ? true : false;
45 function tableHasRow2D($tblname, $colname, $value, $colname2, $value2) {
46 $row = sqlQuery("SELECT COUNT(*) AS count FROM $tblname WHERE " .
47 "$colname LIKE '$value' AND $colname2 LIKE '$value2'");
48 return $row['count'] ? true : false;
51 function upgradeFromSqlFile($filename) {
52 global $webserver_root;
54 flush();
55 echo "<font color='green'>Processing $filename ...</font><br />\n";
57 $fullname = "$webserver_root/sql/$filename";
59 $fd = fopen($fullname, 'r');
60 if ($fd == FALSE) {
61 echo "ERROR. Could not open '$fullname'.\n";
62 flush();
63 break;
66 $query = "";
67 $line = "";
68 $skipping = false;
70 while (!feof ($fd)){
71 $line = fgets($fd, 2048);
72 $line = rtrim($line);
74 if (preg_match('/^\s*--/', $line)) continue;
75 if ($line == "") continue;
77 if (preg_match('/^#IfNotTable\s+(\S+)/', $line, $matches)) {
78 $skipping = tableExists($matches[1]);
79 if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
81 else if (preg_match('/^#IfTable\s+(\S+)/', $line, $matches)) {
82 $skipping = ! tableExists($matches[1]);
83 if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
85 else if (preg_match('/^#IfMissingColumn\s+(\S+)\s+(\S+)/', $line, $matches)) {
86 if (tableExists($matches[1])) {
87 $skipping = columnExists($matches[1], $matches[2]);
89 else {
90 // If no such table then the column is deemed not "missing".
91 $skipping = true;
93 if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
95 else if (preg_match('/^#IfNotColumnType\s+(\S+)\s+(\S+)\s+(\S+)/', $line, $matches)) {
96 if (tableExists($matches[1])) {
97 $skipping = columnHasType($matches[1], $matches[2], $matches[3]);
99 else {
100 // If no such table then the column type is deemed not "missing".
101 $skipping = true;
103 if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
105 else if (preg_match('/^#IfNotRow\s+(\S+)\s+(\S+)\s+(\S+)/', $line, $matches)) {
106 if (tableExists($matches[1])) {
107 $skipping = tableHasRow($matches[1], $matches[2], $matches[3]);
109 else {
110 // If no such table then the row is deemed not "missing".
111 $skipping = true;
113 if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
115 else if (preg_match('/^#IfNotRow2D\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)\s+(\S+)/', $line, $matches)) {
116 if (tableExists($matches[1])) {
117 $skipping = tableHasRow2D($matches[1], $matches[2], $matches[3], $matches[4], $matches[5]);
119 else {
120 // If no such table then the row is deemed not "missing".
121 $skipping = true;
123 if ($skipping) echo "<font color='green'>Skipping section $line</font><br />\n";
126 else if (preg_match('/^#EndIf/', $line)) {
127 $skipping = false;
130 if (preg_match('/^\s*#/', $line)) continue;
131 if ($skipping) continue;
133 $query = $query . $line;
134 if (substr($query, -1) == ';') {
135 $query = rtrim($query, ';');
136 echo "$query<br />\n";
137 if (!sqlStatement($query)) {
138 echo "<font color='red'>The above statement failed: " .
139 mysql_error() . "<br />Upgrading will continue.<br /></font>\n";
141 $query = '';
144 flush();
145 } // end function
147 $versions = array();
148 $sqldir = "$webserver_root/sql";
149 $dh = opendir($sqldir);
150 if (! $dh) die("Cannot read $sqldir");
151 while (false !== ($sfname = readdir($dh))) {
152 if (substr($sfname, 0, 1) == '.') continue;
153 if (preg_match('/^(\d+)_(\d+)_(\d+)-to-\d+_\d+_\d+_upgrade.sql$/', $sfname, $matches)) {
154 $version = $matches[1] . '.' . $matches[2] . '.' . $matches[3];
155 $versions[$version] = $sfname;
158 closedir($dh);
159 ksort($versions);
161 <html>
162 <head>
163 <title>OpenEMR Database Upgrade</title>
164 <link rel='STYLESHEET' href='interface/themes/style_blue.css'>
165 </head>
166 <body>
167 <center>
168 <span class='title'>OpenEMR Database Upgrade</span>
169 <br>
170 </center>
171 <?php
172 if (!empty($_POST['form_submit'])) {
173 $form_old_version = $_POST['form_old_version'];
175 foreach ($versions as $version => $filename) {
176 if (strcmp($version, $form_old_version) < 0) continue;
177 upgradeFromSqlFile($filename);
180 if (!empty($GLOBALS['ippf_specific'])) {
181 // Upgrade custom stuff for IPPF.
182 upgradeFromSqlFile('ippf_upgrade.sql');
185 echo "<p><font color='green'>Database upgrade finished.</font></p>\n";
186 echo "</body></html>\n";
187 exit();
191 <center>
192 <form method='post' action='sql_upgrade.php'>
193 <p>Please select the prior release you are converting from:
194 <select name='form_old_version'>
195 <?php
196 foreach ($versions as $version => $filename) {
197 echo " <option value='$version'";
198 // Defaulting to 2.8.3 only because it was out there for a long time,
199 // and nothing should go wrong if that's too old.
200 if ($version === '2.8.3') echo " selected";
201 echo ">$version</option>\n";
204 </select>
205 </p>
206 <p>If you are unsure or were using a development version between two
207 releases, then choose the older of possible releases.</p>
208 <p><input type='submit' name='form_submit' value='Upgrade Database' /></p>
209 </form>
210 </center>
211 </body>
212 </html>