File renamed to naming convention, ext-repair continued:
[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 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.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: Do we have ref level 0?
44 $result = SQL_QUERY('SELECT `id` FROM `{?_MYSQL_PREFIX?}_refsystem` WHERE `level`=0 OR `level` IS NULL', __FILE__, __LINE__);
45 if (!SQL_HASZERONUMS($result)) {
46         // Remove index temporaly
47         SQL_ALTER_TABLE('ALTER TABLE `{?_MYSQL_PREFIX?}_refsystem` DROP INDEX `userid_level`', __FILE__, __LINE__);
48
49         // Upgrade refsystem, ref-level 0 is silly here
50         SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_refsystem` SET `level`=`level`+1', __FILE__, __LINE__);
51
52         // Add it again
53         SQL_ALTER_TABLE('ALTER TABLE `{?_MYSQL_PREFIX?}_refsystem` ADD UNIQUE `userid_level` ( `userid`, `level` )', __FILE__, __LINE__);
54
55         // Rebuild cache
56         rebuildCache('refsystem', 'refsystem');
57 } // END - if
58
59 // Free result
60 SQL_FREERESULT($result);
61
62 // Reset the table
63 SQL_QUERY('TRUNCATE TABLE `{?_MYSQL_PREFIX?}_user_refs`', __FILE__, __LINE__);
64
65 // Begin with all users in level one
66 $result_direct = SQL_QUERY('SELECT
67         `userid`
68 FROM
69         `{?_MYSQL_PREFIX?}_user_data`
70 WHERE
71         `refid`=0 OR `refid` IS NULL
72 ORDER BY
73         `userid` ASC', __FILE__, __LINE__);
74
75 // Do we have entries?
76 if (!SQL_HASZERONUMS($result_direct)) {
77         // When 'walk' through all users
78         while ($content = SQL_FETCHARRAY($result_direct)) {
79                 // Update refback table
80                 //* DEBUG: */ debugOutput('userid=' . $content['userid']);
81                 updateReferalTable($content['userid']);
82         } // END - while
83 } // END - if
84
85 // Free result
86 SQL_FREERESULT($result_direct);
87
88 // [EOF]
89 ?>