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