- Daily/weekly/monthly reset completely rewritten
[mailer.git] / inc / monthly / monthly_beg.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/22/2005 *
4  * ===============                              Last change: 10/22/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : monthly_beg.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Monthly begging rallye                           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Monatliche Bettelrallye                          *
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         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif ((!EXT_IS_ACTIVE("beg")) && (!IS_ADMIN())) {
39         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "beg");
40         return;
41 }
42
43 // Do not execute when script is in CSS mode or no daily reset
44 if (($CSS == 1) || (!isBooleanConstantAndTrue('__DAILY_RESET')) || ($_CONFIG['beg_rallye'] == "N")) return;
45
46 // Get current month (2 digits)
47 $curr = date("m", time());
48
49 // Check if month is done
50 if (($curr != $_CONFIG['last_month']) && ($_CONFIG['last_month'] > 0) && ($_CONFIG['beg_ranks'] > 0) && ($CSS != 1))
51 {
52         // Extension "autopurge" is inactive or purging of inactive accounts is deactivated
53         $whereStatement1 = "";
54         $whereStatement2 = 0;
55         $whereStatement3 = bigintval($_CONFIG['beg_ranks']);
56
57         // Let's check if there are some points left we can "pay"...
58         if (EXT_IS_ACTIVE("autopurge"))
59         {
60                 // Use last online stamp only when autopurge for inactive members is activated
61                 if (($_CONFIG['ap_in_since'] > 0) && ($_CONFIG['beg_active'] == "Y"))
62                 {
63                         // Okay, include last online timestamp
64                         $whereStatement1 = "AND last_online >=";
65                         $whereStatement2 = bigintval(time() - $_CONFIG['ap_in_since']);
66                         $whereStatement3 = bigintval($_CONFIG['beg_ranks']);
67                 }
68         }
69
70         // SQL string to check for accounts
71         $result_main = SQL_QUERY_ESC("SELECT userid, email, beg_points
72 FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED' ".$whereStatement1." %s AND beg_points > 0 ORDER BY beg_points DESC, userid LIMIT %s",
73  array($whereStatement2, $whereStatement3), __FILE__, __LINE__);
74
75         if (SQL_NUMROWS($result_main) > 0)
76         {
77                 // Load our winners...
78                 $UIDs = "";
79                 while(list($uid, $email, $points) = SQL_FETCHROW($result_main))
80                 {
81                         // Add points to user's account directly
82                         $result_data = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points
83 SET points=points+%s WHERE ref_depth=0 AND userid=%s LIMIT 1",
84  array($points, bigintval($uid)), __FILE__, __LINE__);
85
86                         // Update mediadata as well
87                         if (GET_EXT_VERSION("mediadata") >= "0.0.4")
88                         {
89                                 // Update database
90                                 MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points);
91                         }
92
93                         // Load email template and email it away
94                         $msg = LOAD_EMAIL_TEMPLATE("member_beg", $points, bigintval($uid));
95                         SEND_EMAIL($email, BEG_MONTHLY_RALLYE, $msg);
96                 }
97
98                 // Remove first commata
99                 $UIDs = substr($UIDs, 1);
100
101                 // Get current month
102                 $curr = date("m", time());
103                 if (strlen($curr) == 1) $curr = "0".$curr;
104                 if ($curr == "00") $curr = "12";
105
106                 // Reset accounts
107                 $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data SET beg_points=0.00000 WHERE beg_points > 0",
108                  __FILE__, __LINE__);
109         }
110
111         // Free memory
112         SQL_FREERESULT($result_main);
113 }
114
115 //
116 ?>