2 /************************************************************************
3 * MXChange v0.2.1 Start: 10/22/2005 *
4 * =============== Last change: 10/22/2005 *
6 * -------------------------------------------------------------------- *
7 * File : monthly_beg.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Monthly begging rallye *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Monatliche Bettelrallye *
12 * -------------------------------------------------------------------- *
14 * -------------------------------------------------------------------- *
15 * Copyright (c) 2003 - 2008 by Roland Haeder *
16 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
32 ************************************************************************/
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
37 $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
40 elseif ((!EXT_IS_ACTIVE("beg")) && (!IS_ADMIN()))
42 ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "beg");
46 // Do not execute when script is in CSS mode or no daily reset
47 if (($CSS == 1) || (!defined('__DAILY_RESET'))) return;
49 // Get current month (2 digits)
50 $curr = date("m", time());
52 // Check if month is done
53 if (($curr != $CONFIG['beg_month']) && ($CONFIG['beg_month'] > 0) && ($CONFIG['beg_ranks'] > 0) && ($CSS != 1))
55 // Extension "autopurge" is inactive or purging of inactive accounts is deactivated
58 $WHERE3 = bigintval($CONFIG['beg_ranks']);
60 // Let's check if there are some points left we can "pay"...
61 if (EXT_IS_ACTIVE("autopurge"))
63 // Use last online stamp only when autopurge for inactive members is activated
64 if (($CONFIG['ap_in_since'] > 0) && ($CONFIG['beg_active'] == 'Y'))
66 // Okay, include last online timestamp
67 $WHERE1 = "AND last_online >=";
68 $WHERE2 = bigintval(time() - $CONFIG['ap_in_since']);
69 $WHERE3 = bigintval($CONFIG['beg_ranks']);
73 // SQL string to check for accounts
74 $result_main = SQL_QUERY_ESC("SELECT userid, email, beg_points
75 FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED' ".$WHERE1." %s AND beg_points > 0 ORDER BY beg_points DESC, userid LIMIT %s",
76 array($WHERE2, $WHERE3), __FILE__, __LINE__);
78 if (SQL_NUMROWS($result_main) > 0)
80 // Load our winners...
82 while(list($uid, $email, $points) = SQL_FETCHROW($result_main))
84 // Add points to user's account directly
85 $result_data = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_points
86 SET points=points+%s WHERE ref_depth=0 AND userid=%d LIMIT 1",
87 array($points, bigintval($uid)), __FILE__, __LINE__);
89 // Update mediadata as well
90 if (GET_EXT_VERSION("mediadata") >= "0.0.4")
93 MEDIA_UPDATE_ENTRY(array("total_points"), "add", $points);
96 // Load email template and email it away
97 $msg = LOAD_EMAIL_TEMPLATE("member_beg", $points, bigintval($uid));
98 SEND_EMAIL($email, BEG_MONTHLY_RALLYE, $msg);
101 // Remove first commata
102 $UIDs = substr($UIDs, 1);
105 $curr = date("m", time());
106 if (strlen($curr) == 1) $curr = "0".$curr;
107 if ($curr == "00") $curr = "12";
110 $result = SQL_QUERY("UPDATE "._MYSQL_PREFIX."_user_data SET beg_points=0.00000 WHERE beg_points > 0",
115 SQL_FREERESULT($result_main);
117 // Finally update database and config array
118 $CONFIG['beg_month'] = $curr;
119 $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_config SET beg_month='%s' WHERE config='0' LIMIT 1",
120 array($curr), __FILE__, __LINE__);