source: trunk/upgrade_feed.php @ 2625

Last change on this file since 2625 was 2625, checked in by plg, 16 years ago

bug 861 completed: r2544 was not enoough, PHPWG_IN_UPGRADE must not be
checked in upgrade_feed.php neither.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.9 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008      Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24define('PHPWG_ROOT_PATH', './');
25
26include_once(PHPWG_ROOT_PATH.'include/functions.inc.php');
27include_once(PHPWG_ROOT_PATH.'admin/include/functions.php');
28include_once(PHPWG_ROOT_PATH.'admin/include/functions_upgrade.php');
29include(PHPWG_ROOT_PATH.'include/mysql.inc.php');
30
31// +-----------------------------------------------------------------------+
32// | Check Access and exit when it is not ok                               |
33// +-----------------------------------------------------------------------+
34
35prepare_conf_upgrade();
36
37define('PREFIX_TABLE', $prefixeTable);
38define('UPGRADES_PATH', PHPWG_ROOT_PATH.'install/db');
39
40// +-----------------------------------------------------------------------+
41// |                         Database connection                           |
42// +-----------------------------------------------------------------------+
43
44mysql_connect($cfgHote, $cfgUser, $cfgPassword) or die("Could not connect to database server");
45mysql_select_db($cfgBase) or die("Could not connect to database");
46if ( version_compare(mysql_get_server_info(), '4.1.0', '>=')
47    and defined('DB_CHARSET') and DB_CHARSET!='' )
48{
49  pwg_query('SET NAMES "'.DB_CHARSET.'"');
50}
51
52
53// +-----------------------------------------------------------------------+
54// |                              Upgrades                                 |
55// +-----------------------------------------------------------------------+
56
57// retrieve already applied upgrades
58$query = '
59SELECT id
60  FROM '.PREFIX_TABLE.'upgrade
61;';
62$applied = array_from_query($query, 'id');
63
64// retrieve existing upgrades
65$existing = get_available_upgrade_ids();
66
67// which upgrades need to be applied?
68$to_apply = array_diff($existing, $applied);
69
70echo '<pre>';
71echo count($to_apply).' upgrades to apply';
72
73foreach ($to_apply as $upgrade_id)
74{
75  unset($upgrade_description);
76
77  echo "\n\n";
78  echo '=== upgrade '.$upgrade_id."\n";
79
80  // include & execute upgrade script. Each upgrade script must contain
81  // $upgrade_description variable which describe briefly what the upgrade
82  // script does.
83  include(UPGRADES_PATH.'/'.$upgrade_id.'-database.php');
84
85  // notify upgrade
86  $query = '
87INSERT INTO '.PREFIX_TABLE.'upgrade
88  (id, applied, description)
89  VALUES
90  (\''.$upgrade_id.'\', NOW(), \''.$upgrade_description.'\')
91;';
92  pwg_query($query);
93}
94
95echo '</pre>';
96?>
Note: See TracBrowser for help on using the repository browser.