Fix for 'No resource given' message
[mailer.git] / inc / gen_sql_patches.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/08/2005 *
4  * ===================                          Last change: 01/01/2006 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : gen_sql_patches.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Patch password system after upgrading            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Patcht das Passwort-System nach DB-Update        *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 // Check if there is no scrambling string
46 if (getConfig('pass_scramble') == '') {
47         // Generate 40 chars long scramble string
48         $scrambleString = genScrambleString(40);
49
50         // ... and store it there for future usage
51         updateConfiguration('pass_scramble', $scrambleString);
52
53         // Remove dummy string
54         unset($scrambleString);
55 } // END - if
56
57 // Check if there is no master salt string
58 if (getConfig('master_salt') == '') {
59         // Generate the master salt which is the first chars minus 40 chars of this random hash
60         // We do an extra scrambling here...
61         $masterSalt = scrambleString(sha1(generatePassword(mt_rand(128, 256))));
62
63         // ... and store it there for future usage
64         updateConfiguration('master_salt', $masterSalt);
65
66         // Remove dummy string
67         unset($masterSalt);
68 } // END - if
69
70 if (getConfig('file_hash') == '') {
71         // Create filename from hashed random string
72         $fileHash = sha1(generatePassword(mt_rand(128, 256)));
73         $FQFN = sprintf("%sinc/.secret/.%s",
74                 getConfig('PATH'),
75                 $fileHash
76         );
77
78         // Generate secret key from a randomized string
79         $secretKey = sha1(generateHash(mt_rand(128, 256)));
80
81         // File hash was never created
82         writeToFile($FQFN, $secretKey);
83
84         // Is the file there?
85         if (isFileReadable($FQFN)) {
86                 //* DEBUG: */ removeFile($FQFN);
87                 //* DEBUG: */ $test = hexdec(getSession('u_hash')) / hexdec($secretKey);
88                 //* DEBUG: */ $test = generateHash(str_replace('.', '', $test));
89                 //* DEBUG: */ die("Secret-Key: ".$secretKey."<br />Cookie: ".getSession('u_hash')."<br />Test: ".$test);
90
91                 // Write $fileHash to database
92                 updateConfiguration('file_hash', $fileHash);
93
94                 // Generate FQFN for .htaccess file
95                 $FQFN = sprintf("%sinc/.secret/.htaccess",
96                         getConfig('PATH')
97                 );
98
99                 // Is the .htaccess file there?
100                 if (!isFileReadable($FQFN)) {
101                         // Also create .htaccess file
102                         writeToFile($FQFN, "Deny from all\n");
103                 } // END - if
104
105                 // Also update configuration
106                 setConfigEntry('secret_key', $secretKey);
107
108                 // Remove variables
109                 unset($secretKey);
110                 unset($fileHash);
111         } // END - if
112 } // END - if
113
114 // [EOF]
115 ?>