37662440bf62c5a087b32d8a50084a725a5be654
[mailer.git] / inc / reset / reset_holiday.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 12/10/2005 *
4  * ===================                          Last change: 12/10/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : reset_holiday.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Things to be done on daily reset                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Dinge, die beim taeglichen Reset erledigt werden *
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('holiday')) {
43         return;
44 }
45
46 // Do not execute when script is in CSS mode or no daily reset
47 if ((getOutputMode() != 0) || ((!isResetModeEnabled()) && (getConfig('holiday_mode') == 'RESET'))) return;
48 //* DEBUG: */ outputHtml(basename(__FILE__)."<br />");
49
50 // Check for holidays we need to enable and send email to user
51 $result_main = SQL_QUERY("SELECT userid, holiday_activated
52 FROM `{?_MYSQL_PREFIX?}_user_data`
53 WHERE holiday_activated > 0 AND holiday_activated < UNIX_TIMESTAMP() AND `holiday_active`='N'
54 ORDER BY holiday_activated",
55 __FILE__, __LINE__);
56
57 // Entries found?
58 if (SQL_NUMROWS($result_main) > 0) {
59         // Init SQLs
60         initSqls();
61
62         // We have found at least one useraccount so let's check it...
63         while ($content = SQL_FETCHARRAY($result_main)) {
64                 // Check if his holiday can be activated
65                 $result_holiday = SQL_QUERY_ESC("SELECT holiday_start, holiday_end
66 FROM `{?_MYSQL_PREFIX?}_user_holidays`
67 WHERE `userid`=%s AND holiday_start <= UNIX_TIMESTAMP() AND holiday_end > UNIX_TIMESTAMP()
68 LIMIT 1",
69                 array(bigintval($content['userid'])), __FILE__, __LINE__);
70                 if (SQL_NUMROWS($result_holiday) == 1) {
71                         // Okay, this user can be send away to holiday...
72                         $content = merge_array($content, SQL_FETCHARRAY($result_holiday));
73
74                         // Prepare all data for the template
75                         $content = array(
76                                 'activated' => generateDateTime($content['holiday_activated'], 1),
77                                 'start'     => generateDateTime($content['holiday_start']    , 1),
78                                 'end'       => generateDateTime($content['holiday_end']      , 1)
79                         );
80
81                         // Send email to user
82                         $message = loadEmailTemplate('member_holiday_activated', $content, $content['userid']);
83                         sendEmail($content['userid'], getMessage('HOLIDAY_MEMBER_ACTIVATED_SUBJ'), $message);
84
85                         // Update account
86                         addSql(SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data`
87 SET `holiday_active`='Y'
88 WHERE `userid`=%s
89 LIMIT 1",
90                                 array(bigintval($content['userid'])), __FILE__, __LINE__, false));
91                 } // END - if
92
93                 // Free memory
94                 SQL_FREERESULT($result_holiday);
95         } // END - while
96
97         // Run all SQLs
98         runFilterChain('run_sqls');
99 }
100
101 // Free memory
102 SQL_FREERESULT($result_main);
103
104 // Stop currently activated holidays
105 stopHolidays();
106
107 // [EOF]
108 ?>