A lot more wrapper functions introduced, TODOs.txt updated
[mailer.git] / inc / monthly / monthly_beg.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/22/2005 *
4  * ===================                          Last change: 06/20/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : monthly_beg.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Monthly begging rallye                           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Monatliche Bettelrallye                          *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } elseif ((isCssOutputMode()) || (!isResetModeEnabled())) {
42         // Do not execute when script is in CSS mode or no daily reset
43         return;
44 } elseif ((!isExtensionActive('beg')) || (!isBegRallyeEnabled())) {
45         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
46         return;
47 }
48
49 // Debug line
50 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset started.');
51
52 // Check if month is done
53 if ((getBegRanks() > 0) && (!isCssOutputMode())) {
54         // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated
55         $whereStatement1 = '';
56
57         // Shall we exclude webmaster's own userid?
58         if ((!isBegIncludeOwnEnabled()) && (isValidUserId(getBegUserid()))) {
59                 // Exclude it
60                 $whereStatement1 = " AND `userid` != {?beg_userid?}";
61         } // END - if
62
63         // Let's check if there are some points left we can pay...
64         if (isExtensionActive('autopurge')) {
65                 // Use last online stamp only when autopurge for inactive members is activated
66                 if ((getApInactiveSince() > 0) && (isBegActiveEnabled()) {
67                         // Okay, include last online timestamp
68                         $whereStatement1 .= " AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})";
69                 } // END - if
70         } // END - if
71
72         // SQL string to check for accounts
73         $result_main = SQL_QUERY("SELECT
74         `userid`, `email`, `gender`, `surname`, `family`, `beg_points` AS points
75 FROM
76         `{?_MYSQL_PREFIX?}_user_data`
77 WHERE
78         `status`='CONFIRMED'" . $whereStatement1 . " AND
79         `beg_points` > 0
80 ORDER BY
81         `beg_points` DESC,
82         `userid` ASC
83 LIMIT {?beg_ranks?}", __FILE__, __LINE__);
84
85         if (!SQL_HASZERONUMS($result_main)) {
86                 // Load our winners...
87                 while ($content = SQL_FETCHARRAY($result_main)) {
88                         // Add points to user's account directly
89                         addPointsDirectly('monthly_beg', $content['userid'], $content['points']);
90
91                         // Load email template and email it away
92                         $message = loadEmailTemplate('member_beg', $content, bigintval($content['userid']));
93                         sendEmail($content['email'], '{--BEG_MONTHLY_RALLYE--}', $message);
94                 } // END - while
95
96                 // Reset accounts
97                 $result = SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=0.00000 WHERE `beg_points` > 0', __FILE__, __LINE__);
98         } // END - if
99
100         // Free memory
101         SQL_FREERESULT($result_main);
102 } // END - if
103
104 // Debug line
105 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset ended.');
106
107 // [EOF]
108 ?>