A lot while() conditions rewritten to SQL_FETCHARRAY(), see bug #107, @TODO tags...
[mailer.git] / inc / reset / reset_daily.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/20/2004 *
4  * ===============                              Last change: 01/07/2006 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : reset_daily.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Things to do on daily reset                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Dinge, die beim taeglichen Reset erledigt werden *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!EXT_IS_ACTIVE("sql_patches")) {
39         return;
40 }
41
42 // Do not execute when script is in CSS mode or no daily reset
43 if (($GLOBALS['output_mode'] == 1) || (!isResetModeEnabled())) return;
44 //* DEBUG: */ echo basename(__FILE__)."<br />\n";
45
46 // Update user profiles
47 if (GET_EXT_VERSION("order") >= "0.1.1") {
48         // Latest version
49         $result_daily = SQL_QUERY("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET receive_mails=max_mails, mail_orders=0 WHERE receive_mails != max_mails", __FILE__, __LINE__);
50 } else {
51         // Obsolete version
52         $result_daily = SQL_QUERY("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET receive_mails=max_mails WHERE receive_mails != max_mails", __FILE__, __LINE__);
53 }
54
55 // Transfer points from locked_points to points
56 $result_daily = SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE ref_payout=0 AND `status`='CONFIRMED' ORDER BY userid", __FILE__, __LINE__);
57
58 //* DEBUG: */ echo basename(__FILE__).":payout=0;daily|numRows=".SQL_NUMROWS($result_daily)."<br />\n";
59 if (SQL_NUMROWS($result_daily) > 0) {
60         // Init SQLs
61         INIT_SQLS();
62
63         // Start checking accounts which are on 0 confirmed-to-go mails
64         while ($content = SQL_FETCHARRAY($result_daily)) {
65                 //* DEBUG: */ echo basename(__FILE__).":uid={$content['userid']}<br />\n";
66                 $result_points = SQL_QUERY_ESC("SELECT ref_depth, locked_points FROM `{!_MYSQL_PREFIX!}_user_points`
67 WHERE userid=%s AND locked_points != 0.00000 ORDER BY ref_depth",
68                         array(bigintval($content['userid'])), __FILE__, __LINE__);
69
70                 //* DEBUG: */ echo basename(__FILE__).":payout=0;points|numRows=".SQL_NUMROWS($result_points)."<br />\n";
71                 if (SQL_NUMROWS($result_points) > 0) {
72                         // Ok transfer points
73                         while ($content2 = SQL_FETCHARRAY($result_points)) {
74                                 // Merge both arrays
75                                 $content = merge_array($content, $content2);
76
77                                 //* DEBUG: */ echo basename(__FILE__).":uid={$content['userid']},depth={$content['ref_depth']},locked={$content['locked_points']}<br />\n";
78                                 ADD_SQL(SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_points` SET points=points+%s, locked_points=0.00000
79 WHERE userid=%s AND ref_depth=%d
80 LIMIT 1",
81                                         array($content['locked_points'], bigintval($content['userid']), $content['ref_depth']), __FILE__, __LINE__, false));
82
83                                 // Update mediadata as well
84                                 if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
85                                         // Update database
86                                         MEDIA_UPDATE_ENTRY(array("total_points"), "add", $content['locked_points']);
87                                 } // END - if
88                         } // END - while
89                 } // END - if
90
91                 // Free memory
92                 SQL_FREERESULT($result_points);
93         } // END - while
94
95         // Run all SQLs
96         runFilterChain('run_sqls');
97 } // END - if
98
99 // Free memory
100 SQL_FREERESULT($result_daily);
101
102 //
103 ?>