Support all extensions in link, too
[mailer.git] / inc / fix_refsystem.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/13/2011 *
4  * ===================                          Last change: 07/13/2011 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : fix_refsystem.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Generate refback table including all refs        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Refback-Tabelle mit allen Refs generieren        *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Sanity-check: Is there ref level 0? If so, this must be fixed to NULL and `level` must be increased by one
44 $result = sqlQuery('SELECT `id` FROM `{?_MYSQL_PREFIX?}_refsystem` WHERE `level`=0', __FILE__, __LINE__);
45 if (!ifSqlHasZeroNums($result)) {
46         // Remove index temporaly
47         sqlQueryAlterTable('ALTER TABLE `{?_MYSQL_PREFIX?}_refsystem` DROP INDEX `userid_level`', __FILE__, __LINE__);
48
49         // Upgrade refsystem
50         sqlQuery('UPDATE `{?_MYSQL_PREFIX?}_refsystem` SET `level`=`level`+1', __FILE__, __LINE__);
51
52         // Add it again
53         sqlQueryAlterTable('ALTER TABLE `{?_MYSQL_PREFIX?}_refsystem` ADD UNIQUE INDEX `userid_level` (`userid`, `level`)', __FILE__, __LINE__);
54
55         // Rebuild cache
56         rebuildCache('refsystem', 'refsystem');
57 } // END - if
58
59 // Free result
60 sqlFreeResult($result);
61
62 // Reset the table
63 sqlQuery('TRUNCATE TABLE `{?_MYSQL_PREFIX?}_user_refs`', __FILE__, __LINE__);
64
65 // Begin with all users in level one
66 $result_direct = sqlQuery('SELECT
67         `userid`
68 FROM
69         `{?_MYSQL_PREFIX?}_user_data`
70 WHERE
71         `refid`=0 OR
72         `refid` IS NULL
73 ORDER BY
74         `userid` ASC', __FILE__, __LINE__);
75
76 // Are there entries?
77 if (!ifSqlHasZeroNums($result_direct)) {
78         // When 'walk' through all users
79         while ($content = sqlFetchArray($result_direct)) {
80                 // Update refback table
81                 /* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'userid=' . $content['userid'] . ' - BEFORE!');
82                 updateReferralTable($content['userid']);
83                 /* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'userid=' . $content['userid'] . ' - AFTER!');
84         } // END - while
85 } // END - if
86
87 // Free result
88 sqlFreeResult($result_direct);
89
90 // [EOF]
91 ?>