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