Code rewritings, load base config improved and many minor fixes...
[mailer.git] / 0.2.1 / inc / reset / reset_daily.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 04/20/2004 *\r
4  * ===============                              Last change: 01/07/2006 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : reset_daily.php                                  *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : Things to do on daily reset                      *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Dinge, die beim taeglichen Reset erledigt werden *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Some security stuff...\r
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))\r
36 {\r
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
38         require($INC);\r
39 }\r
40 \r
41 // Update user profiles\r
42 if (GET_EXT_VERSION("order") >= "0.1.1") {\r
43         // Latest version\r
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__);\r
45 } else {\r
46         // Obsolete version\r
47         $result_daily = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data SET receive_mails=max_mails WHERE receive_mails != max_mails", __FILE__, __LINE__);\r
48 }\r
49 \r
50 // Transfer points from locked_points to points\r
51 $result_daily = SQL_QUERY("SELECT userid FROM "._MYSQL_PREFIX."_user_data WHERE ref_payout='0' AND status='CONFIRMED' ORDER BY userid", __FILE__, __LINE__);\r
52 \r
53 if (SQL_NUMROWS($result_daily) > 0)\r
54 {\r
55         // Start checking accounts which are on 0 confirmed-to-go mails\r
56         while (list($uid) = SQL_FETCHROW($result_daily))\r
57         {\r
58                 $result_points = SQL_QUERY_ESC("SELECT ref_depth, locked_points FROM "._MYSQL_PREFIX."_user_points\r
59 WHERE userid=%d AND locked_points != '0.00000' ORDER BY ref_depth",\r
60                  array(bigintval($uid)), __FILE__, __LINE__);\r
61                 if (SQL_NUMROWS($result_points) > 0)\r
62                 {\r
63                         // Ok transfer points\r
64                         while (list($dep, $locked) = SQL_FETCHROW($result_points))\r
65                         {\r
66                                 $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points SET points=points+%s, locked_points='0.00000'\r
67 WHERE userid=%d AND ref_depth='%s' LIMIT 1",\r
68                                  array($locked, bigintval($uid), $dep), __FILE__, __LINE__);\r
69 \r
70                                 // Update mediadata as well\r
71                                 if (GET_EXT_VERSION("mediadata") >= "0.0.4")\r
72                                 {\r
73                                         // Update database\r
74                                         MEDIA_UPDATE_ENTRY(array("total_points"), "add", $locked);\r
75                                 }\r
76                         }\r
77                 }\r
78 \r
79                 // Free memory\r
80                 SQL_FREERESULT($result_points);\r
81         }\r
82 }\r
83 \r
84 // Free memory\r
85 SQL_FREERESULT($result_daily);\r
86 \r
87 // Save config value for later references\r
88 $CONFIG['last_update'] = time();\r
89 \r
90 // Update database\r
91 $result_daily = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_config SET last_update=UNIX_TIMESTAMP()\r
92 WHERE config='0' AND last_update != UNIX_TIMESTAMP() LIMIT 1", __FILE__, __LINE__);\r
93 \r
94 // Destroy cache\r
95 if ((GET_EXT_VERSION("cache") >= "0.1.2") && (SQL_AFFECTEDROWS() == 1))\r
96 {\r
97         if ($CACHE->cache_file("config", true))\r
98         {\r
99                 $CACHE->cache_replace("last_update", time(), "0", $CFG_CACHE);\r
100         }\r
101 }\r
102 \r
103 //\r
104 ?>\r