Fix for inserted codes while registering of extensions, many rewrites/cleanups:
[mailer.git] / inc / reset / reset_daily.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/20/2004 *
4  * ===================                          Last change: 06/20/2010 *
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 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif ((getScriptOutputMode() != 0) || (!isResetModeEnabled())) {
44         // Do not execute when script is in CSS mode or no daily reset
45         return;
46 } elseif (!isExtensionActive('sql_patches')) {
47         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
48         return;
49 }
50
51 // Update user profiles
52 if (isExtensionInstalledAndNewer('order', '0.1.1')) {
53         // Latest version
54         SQL_QUERY('UPDATE
55         `{?_MYSQL_PREFIX?}_user_data`
56 SET
57         `receive_mails`=`max_mails`,
58         `mail_orders`=0
59 WHERE
60         `receive_mails` != `max_mails`', __FILE__, __LINE__);
61 } else {
62         // Obsolete version
63         SQL_QUERY('UPDATE
64         `{?_MYSQL_PREFIX?}_user_data`
65 SET
66         `receive_mails`=`max_mails`
67 WHERE
68         `receive_mails` != `max_mails`', __FILE__, __LINE__);
69 }
70
71 // Transfer points from locked_points to points
72 $result_daily = SQL_QUERY("SELECT
73         `userid`
74 FROM
75         `{?_MYSQL_PREFIX?}_user_data`
76 WHERE
77         `ref_payout`=0 AND
78         `status`='CONFIRMED'
79 ORDER BY
80         `userid` ASC", __FILE__, __LINE__);
81
82 //* DEBUG: */ debugOutput(basename(__FILE__) . ':payout=0;daily|numRows=' . SQL_NUMROWS($result_daily));
83 if (SQL_NUMROWS($result_daily) > 0) {
84         // Init SQLs
85         initSqls();
86
87         // Start checking accounts which are on 0 confirmed-to-go mails
88         while ($content = SQL_FETCHARRAY($result_daily)) {
89                 //* DEBUG: */ debugOutput(basename(__FILE__) . ':' . $content['userid']);
90                 $result_points = SQL_QUERY_ESC("SELECT
91         `ref_depth`,
92         `locked_points`
93 FROM
94         `{?_MYSQL_PREFIX?}_user_points`
95 WHERE
96         `userid`=%s AND
97         `locked_points` != 0.00000
98 ORDER BY
99         `ref_depth` ASC",
100                         array(bigintval($content['userid'])), __FILE__, __LINE__);
101
102                 //* DEBUG: */ debugOutput(basename(__FILE__) . ':payout=0;points|numRows=' . SQL_NUMROWS($result_points));
103                 if (SQL_NUMROWS($result_points) > 0) {
104                         // Ok transfer points
105                         while ($content2 = SQL_FETCHARRAY($result_points)) {
106                                 // Merge both arrays
107                                 $content = merge_array($content, $content2);
108
109                                 //* DEBUG: */ debugOutput(basename(__FILE__) . ':userid=' . $content['userid'].',depth='.$content['ref_depth'].',locked='.$content['locked_points']);
110                                 addSql(SQL_QUERY_ESC("UPDATE
111         `{?_MYSQL_PREFIX?}_user_points`
112 SET
113         `points`=`points`+%s,
114         `locked_points`=0.00000
115 WHERE
116         `userid`=%s AND
117         `ref_depth`=%d
118 LIMIT 1",
119                                         array(
120                                                 $content['locked_points'],
121                                                 bigintval($content['userid']),
122                                                 $content['ref_depth']
123                                         ), __FILE__, __LINE__, false));
124
125                                 // Update mediadata as well
126                                 if (isExtensionInstalledAndNewer('mediadata', '0.0.4')) {
127                                         // Update database
128                                         updateMediadataEntry(array('total_points'), 'add', $content['locked_points']);
129                                 } // END - if
130                         } // END - while
131                 } // END - if
132
133                 // Free memory
134                 SQL_FREERESULT($result_points);
135         } // END - while
136
137         // Run all SQLs
138         runFilterChain('run_sqls');
139 } // END - if
140
141 // Free memory
142 SQL_FREERESULT($result_daily);
143
144 // [EOF]
145 ?>