Next wave of lesser getMessage()
[mailer.git] / inc / reset / reset_100_bonus.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/25/2009 *
4  * ===================                          Last change: 06/20/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : reset_100_bonus.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Check for 100% clickrate order                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Nach Mailbestaetigungen mit 100% Klickrate s.    *
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() != 0) || (!isResetModeEnabled())) {
44         // Do not execute when script is in CSS mode or no daily reset
45         return;
46 } elseif (!isExtensionActive('bonus')) {
47         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
48         return;
49 }
50
51 // Check for 100% klickrate mails
52 $result_bonus = SQL_QUERY("SELECT
53         `id`, `userid`, `subject`, `timestamp_ordered`, `clicks`, `url`
54 FROM
55         `{?_MYSQL_PREFIX?}_user_stats`
56 WHERE
57         `max_rec`=`clicks` AND
58         `clicks` > 0 AND
59         `bonus_stats_active`='N'
60 ORDER BY
61         `userid` ASC", __FILE__, __LINE__);
62
63 if (SQL_NUMROWS($result_bonus) > 0) {
64         // We found some mail orders...
65         while ($content = SQL_FETCHARRAY($result_bonus)) {
66                 // Add points
67                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `bonus_stats`=`bonus_stats`+{?bonus_stats?} WHERE `userid`=%s LIMIT 1",
68                         array(bigintval($content['userid'])), __FILE__, __LINE__);
69
70                 // Translate some data
71                 $content['timestamp'] = generateDateTime($content['timestamp_ordered'], 2);
72
73                 // Load email template and send email
74                 $message = loadEmailTemplate('member_stats_bonus', $content, bigintval($content['userid']));
75                 sendEmail($content['userid'], '{--BONUS_MEMBER_STATS_SUBJECT--}', $message);
76
77                 // Update database
78                 $result_update = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_stats` SET `bonus_stats_active`='Y' WHERE `id`=%s LIMIT 1",
79                         array(bigintval($content['id'])), __FILE__, __LINE__);
80         } // END - while
81
82         // Handle bonus points
83         handleBonusPoints(getConfig('bonus_stats'));
84 } // END - if
85
86 // Free memory
87 SQL_FREERESULT($result_bonus);
88
89 // [EOF]
90 ?>