ab015cec0019a378e7d3b40aa3e77776d9a2e19c
[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 (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 // Update user profiles
42 if (GET_EXT_VERSION("order") >= "0.1.1") {
43         // Latest version
44         $result_daily = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data SET receive_mails=max_mails, mail_orders='0' WHERE receive_mails != max_mails", __FILE__, __LINE__);
45 } else {
46         // Obsolete version
47         $result_daily = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data SET receive_mails=max_mails WHERE receive_mails != max_mails", __FILE__, __LINE__);
48 }
49
50 // Transfer points from locked_points to points
51 $result_daily = SQL_QUERY("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE ref_payout='0' AND status='CONFIRMED' ORDER BY userid", __FILE__, __LINE__);
52
53 if (SQL_NUMROWS($result_daily) > 0)
54 {
55         // Start checking accounts which are on 0 confirmed-to-go mails
56         while (list($uid) = SQL_FETCHROW($result_daily))
57         {
58                 $result_points = SQL_QUERY_ESC("SELECT ref_depth, locked_points FROM "._MYSQL_PREFIX."_user_points
59 WHERE userid=%d AND locked_points != 0.00000 ORDER BY ref_depth",
60                  array(bigintval($uid)), __FILE__, __LINE__);
61                 if (SQL_NUMROWS($result_points) > 0)
62                 {
63                         // Ok transfer points
64                         while (list($dep, $locked) = SQL_FETCHROW($result_points))
65                         {
66                                 $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET points=points+%s, locked_points=0.00000
67 WHERE userid=%d AND ref_depth=%d LIMIT 1",
68                                  array($locked, bigintval($uid), $dep), __FILE__, __LINE__);
69
70                                 // Update mediadata as well
71                                 if (GET_EXT_VERSION("mediadata") >= "0.0.4")
72                                 {
73                                         // Update database
74                                         MEDIA_UPDATE_ENTRY(array("total_points"), "add", $locked);
75                                 }
76                         }
77                 }
78
79                 // Free memory
80                 SQL_FREERESULT($result_points);
81         }
82 }
83
84 // Free memory
85 SQL_FREERESULT($result_daily);
86
87 // Save config value for later references
88 $CONFIG['last_update'] = time();
89
90 // Update database
91 $result_daily = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_config SET last_update=UNIX_TIMESTAMP()
92 WHERE config='0' AND last_update != UNIX_TIMESTAMP() LIMIT 1", __FILE__, __LINE__);
93
94 // Destroy cache
95 if ((GET_EXT_VERSION("cache") >= "0.1.2") && (SQL_AFFECTEDROWS() == 1))
96 {
97         if ($CACHE->cache_file("config", true))
98         {
99                 $CACHE->cache_replace("last_update", time(), "0", $CFG_CACHE);
100         }
101 }
102
103 //
104 ?>