Another column fix
[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 (!defined('__SECURITY')) {
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) || (!defined('__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 = bigintval($_CONFIG['beg_ranks']);
55
56         // Let's check if there are some points left we can "pay"...
57         if (EXT_IS_ACTIVE("autopurge"))
58         {
59                 // Use last online stamp only when autopurge for inactive members is activated
60                 if (($_CONFIG['ap_inactive_since'] > 0) && ($_CONFIG['beg_active'] == "Y"))
61                 {
62                         // Okay, include last online timestamp
63                         $whereStatement1 = sprintf("AND last_online >= (UNIX_TIMESTAMP() - %s)", bigintval($_CONFIG['ap_inactive_since']));;
64                         $whereStatement2 = bigintval($_CONFIG['beg_ranks']);
65                 }
66         }
67
68         // SQL string to check for accounts
69         $result_main = SQL_QUERY_ESC("SELECT userid, email, beg_points
70 FROM "._MYSQL_PREFIX."_user_data
71 WHERE status='CONFIRMED' ".$whereStatement1." AND beg_points > 0
72 ORDER BY beg_points DESC, userid
73 LIMIT %s",
74                 array($whereStatement2), __FILE__, __LINE__);
75
76         if (SQL_NUMROWS($result_main) > 0) {
77                 // Load our winners...
78                 $UIDs = "";
79                 while(list($uid, $email, $points) = SQL_FETCHROW($result_main)) {
80                         // Add points to user's account directly
81                         $result_data = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points
82 SET points=points+%s WHERE ref_depth=0 AND userid=%s LIMIT 1",
83  array($points, bigintval($uid)), __FILE__, __LINE__);
84
85                         // Update mediadata as well
86                         if (GET_EXT_VERSION("mediadata") >= "0.0.4") {
87                                 // Update database
88                                 MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points);
89                         }
90
91                         // Load email template and email it away
92                         $msg = LOAD_EMAIL_TEMPLATE("member_beg", $points, bigintval($uid));
93                         SEND_EMAIL($email, BEG_MONTHLY_RALLYE, $msg);
94                 }
95
96                 // Remove first commata
97                 $UIDs = substr($UIDs, 1);
98
99                 // Get current month
100                 $curr = date("m", time());
101                 if (strlen($curr) == 1) $curr = "0".$curr;
102                 if ($curr == "00") $curr = "12";
103
104                 // Reset accounts
105                 $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data SET beg_points=0.00000 WHERE beg_points > 0", __FILE__, __LINE__);
106         }
107
108         // Free memory
109         SQL_FREERESULT($result_main);
110 }
111
112 //
113 ?>