1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Piwigo - a PHP based picture gallery | |
---|
4 | // +-----------------------------------------------------------------------+ |
---|
5 | // | Copyright(C) 2008-2010 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 | |
---|
24 | if (!defined('PHPWG_ROOT_PATH')) |
---|
25 | { |
---|
26 | die('Hacking attempt!'); |
---|
27 | } |
---|
28 | |
---|
29 | $upgrade_description = 'Reduce length of #_user_mail_notification.check_key'; |
---|
30 | |
---|
31 | include_once(PHPWG_ROOT_PATH.'include/constants.php'); |
---|
32 | |
---|
33 | include_once(PHPWG_ROOT_PATH.'admin/include/functions.php'); |
---|
34 | include_once(PHPWG_ROOT_PATH.'admin/include/functions_notification_by_mail.inc.php'); |
---|
35 | |
---|
36 | // +-----------------------------------------------------------------------+ |
---|
37 | // | Upgrade content | |
---|
38 | // +-----------------------------------------------------------------------+ |
---|
39 | echo "Compute new check_key"; |
---|
40 | $query = ' |
---|
41 | select |
---|
42 | user_id |
---|
43 | from |
---|
44 | '.USER_MAIL_NOTIFICATION_TABLE.' |
---|
45 | ;'; |
---|
46 | $result = pwg_query($query); |
---|
47 | |
---|
48 | $datas = array(); |
---|
49 | |
---|
50 | while ($row = pwg_db_fetch_assoc($result)) |
---|
51 | { |
---|
52 | array_push( |
---|
53 | $datas, |
---|
54 | array( |
---|
55 | 'user_id' => $row['user_id'], |
---|
56 | 'check_key' => find_available_check_key() |
---|
57 | ) |
---|
58 | ); |
---|
59 | } |
---|
60 | |
---|
61 | mass_updates( |
---|
62 | USER_MAIL_NOTIFICATION_TABLE, |
---|
63 | array( |
---|
64 | 'primary' => array('user_id'), |
---|
65 | 'update' => array('check_key') |
---|
66 | ), |
---|
67 | $datas |
---|
68 | ); |
---|
69 | |
---|
70 | echo "Alter table ".USER_MAIL_NOTIFICATION_TABLE; |
---|
71 | $query = " |
---|
72 | alter table ".USER_MAIL_NOTIFICATION_TABLE." |
---|
73 | modify column `check_key` varchar(16) binary NOT NULL default '' |
---|
74 | ;"; |
---|
75 | pwg_query($query); |
---|
76 | |
---|
77 | |
---|
78 | // +-----------------------------------------------------------------------+ |
---|
79 | // | End notification | |
---|
80 | // +-----------------------------------------------------------------------+ |
---|
81 | |
---|
82 | echo |
---|
83 | "\n" |
---|
84 | .'Column '.USER_MAIL_NOTIFICATION_TABLE.'.check_key changed' |
---|
85 | ."\n" |
---|
86 | ; |
---|
87 | |
---|
88 | ?> |
---|