2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 09/27/2008 *
4 * =================== Last change: 09/27/2008 *
6 * -------------------------------------------------------------------- *
7 * File : gen_refback.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Generate refback table including all refs *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Refback-Tabelle mit allen Refs generieren *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
43 // Make sure our functions are there
44 loadIncludeOnce('inc/libs/refback_functions.php');
46 // Sanity-check: Do we have ref level 0?
47 $result = SQL_QUERY('SELECT `id` FROM `{?_MYSQL_PREFIX?}_refsystem` WHERE `level`=0', __FILE__, __LINE__);
48 if (!SQL_HASZERONUMS($result)) {
49 // Remove index temporaly
50 SQL_ALTER_TABLE('ALTER TABLE `{?_MYSQL_PREFIX?}_refsystem` DROP INDEX `userid_level`', __FILE__, __LINE__);
52 // Upgrade refsystem, ref-level 0 is silly here
53 SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_refsystem` SET `level`=`level`+1', __FILE__, __LINE__);
56 SQL_ALTER_TABLE('ALTER TABLE `{?_MYSQL_PREFIX?}_refsystem` ADD UNIQUE `userid_level` ( `userid`,`level` )', __FILE__, __LINE__);
59 rebuildCache('refsystem', 'refsystem');
63 SQL_FREERESULT($result);
66 SQL_QUERY('TRUNCATE TABLE `{?_MYSQL_PREFIX?}_user_refs`', __FILE__, __LINE__);
68 // Begin with all users in level one
69 $result_direct = SQL_QUERY('SELECT
72 `{?_MYSQL_PREFIX?}_user_data` AS u
76 u.userid ASC', __FILE__, __LINE__);
78 // Do we have entries?
79 if (!SQL_HASZERONUMS($result_direct)) {
80 // When 'walk' through all users
81 while ($content = SQL_FETCHARRAY($result_direct)) {
83 $GLOBALS['refback_level'] = 1;
85 // Update refback table
86 //* DEBUG: */ debugOutput('userid=' . $content['userid']);
87 updateRefbackTable($content['userid']);
92 SQL_FREERESULT($result_direct);