Fix for rewrite
[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  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif ((getOutputMode() == 1) || (!isResetModeEnabled())) {
44         // Do not execute when script is in CSS mode or no daily reset
45         return;
46 } elseif ((!isExtensionActive('beg')) || (getConfig('beg_rallye') != 'Y')) {
47         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
48         return;
49 }
50
51 // Get current month (2 digits)
52 $curr = date('m', time());
53
54 // Check if month is done
55 if (($curr != getConfig('last_month')) && (getConfig('last_month') > 0) && (getConfig('beg_ranks') > 0) && (getOutputMode() != 1)) {
56         // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated
57         $whereStatement1 = '';
58
59         // Shall we exclude webmaster's own userid?
60         if ((getConfig('beg_include_own') != 'Y') && (getConfig('beg_userid') > 0)) {
61                 // Exclude it
62                 $whereStatement1 = " AND `userid` != {?beg_userid?}";
63         } // END - if
64
65         // Let's check if there are some points left we can 'pay'...
66         if (isExtensionActive('autopurge')) {
67                 // Use last online stamp only when autopurge for inactive members is activated
68                 if ((getConfig('ap_inactive_since') > 0) && (getConfig('beg_active') == 'Y')) {
69                         // Okay, include last online timestamp
70                         $whereStatement1 .= " AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})";
71                 } // END - if
72         } // END - if
73
74         // SQL string to check for accounts
75         $result_main = SQL_QUERY("SELECT
76         `userid`, `email`, `gender`, `surname`, `family`, `beg_points` AS points
77 FROM
78         `{?_MYSQL_PREFIX?}_user_data`
79 WHERE
80         `status`='CONFIRMED'" . $whereStatement1 . " AND
81         `beg_points` > 0
82 ORDER BY
83         `beg_points` DESC,
84         `userid` ASC
85 LIMIT {?beg_ranks?}", __FILE__, __LINE__);
86
87         if (SQL_NUMROWS($result_main) > 0) {
88                 // Load our winners...
89                 while ($content = SQL_FETCHARRAY($result_main)) {
90                         // Add points to user's account directly
91                         addPointsDirectly('monthly_beg', $content['userid'], $content['points']);
92
93                         // Load email template and email it away
94                         $message = loadEmailTemplate('member_beg', $content, bigintval($content['userid']));
95                         sendEmail($content['email'], getMessage('BEG_MONTHLY_RALLYE'), $message);
96                 } // END - while
97
98                 // Reset accounts
99                 $result = SQL_QUERY("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=0.00000 WHERE `beg_points` > 0", __FILE__, __LINE__);
100         } // END - if
101
102         // Free memory
103         SQL_FREERESULT($result_main);
104 } // END - if
105
106 // [EOF]
107 ?>