LAYOUT: fixed user home page a bit
[e-DoKo.git] / update_db.php
1 <?php
2 /* Copyright 2006, 2007, 2008, 2009, 2010 Arun Persaud <arun@nubati.net>
3  *
4  *   This file is part of e-DoKo.
5  *
6  *   e-DoKo is free software: you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation, either version 3 of the License, or
9  *   (at your option) any later version.
10  *
11  *   e-DoKo is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with e-DoKo.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 error_reporting(E_ALL);
22
23 include_once("config.php");                /* needs to be first in list, since other includes use this */
24 include_once("./include/db.php");          /* database only */
25 include_once("./include/functions.php");   /* the rest */
26
27 /* make sure that user has set all variables in config.php */
28 config_check();
29
30 /* open the database */
31 $return = DB_open();
32 if($return<0 && $return != -2) /* -2 = wrong DB version is ok */
33   exit();
34
35 /* only callable via cron or CLI */
36 if(isset($_SERVER['REMOTE_ADDR']))
37   exit();
38
39 $old_version = DB_get_version();
40 $current_version = 2;
41
42 if($old_version < $current_version)
43   echo "Will upgrade your database now:\n";
44 else
45   echo "You are up to date (version ${current_version}), nothing to do.\n";
46
47 switch($old_version)
48   {
49   case 0:
50     /* add database for digesting */
51     DB_query("CREATE TABLE digest_email (".
52              " `id` int(11) NOT NULL auto_increment,".
53              " `email` varchar(255) default null,".
54              " `create_date` timestamp NOT NULL default '0000-00-00 00:00:00',".
55              " `content` text,".
56              " UNIQUE KEY `id` (`id`),".
57              " index (email))");
58     DB_query("UPDATE Version set version=1");
59     echo "Upgraded to version 1.\n";
60   case 1:
61     /* add new rules */
62     DB_query("ALTER TABLE Rulesets".
63              " ADD COLUMN `lowtrump` enum('poverty','cancel','none') default 'poverty' AFTER schweinchen");
64     DB_query("ALTER TABLE Hand".
65              " MODIFY COLUMN `sickness` enum('wedding','nines','poverty','solo','lowtrump') default NULL");
66     DB_query("ALTER TABLE Game".
67              " MODIFY COLUMN `status` enum('pre','play','gameover','cancel-timedout','cancel-nines','cancel-trump','cancel-noplay','cancel-lowtrump') default NULL");
68
69     DB_query("UPDATE Version set version=2");
70     echo "Upgraded to version 2.\n";
71   }
72
73 ?>