4c8058d083b12461e99be2ec84e6b92f4cf1266c
[mailer.git] / inc / daily / daily_holiday.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 12/10/2005 *
4  * ===================                          Last change: 06/20/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : daily_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  * -------------------------------------------------------------------- *
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 ((!isHtmlOutputMode()) || ((!isResetModeEnabled()) && (getConfig('holiday_mode') == 'RESET'))) {
42         // Do not execute when script is in CSS mode or no daily reset
43         return;
44 } elseif (!isExtensionActive('holiday')) {
45         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
46         return;
47 }
48
49 // Debug line
50 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.');
51
52 // Check for holidays we need to enable and send email to user
53 $result_main = SQL_QUERY("SELECT
54         `userid`, `holiday_activated`
55 FROM
56         `{?_MYSQL_PREFIX?}_user_data`
57 WHERE
58         `holiday_activated` > 0 AND
59         `holiday_activated` < UNIX_TIMESTAMP() AND
60         `holiday_active`='N'
61 ORDER BY
62         `holiday_activated` ASC",
63 __FILE__, __LINE__);
64
65 // Entries found?
66 if (!SQL_HASZERONUMS($result_main)) {
67         // Init SQLs
68         initSqls();
69
70         // We have found at least one useraccount so let's check it...
71         while ($content = SQL_FETCHARRAY($result_main)) {
72                 // Check if his holiday can be activated
73                 $result_holiday = SQL_QUERY_ESC("SELECT
74         `holiday_start`, `holiday_end`
75 FROM
76         `{?_MYSQL_PREFIX?}_user_holidays`
77 WHERE
78         `userid`=%s AND
79         `holiday_start` <= UNIX_TIMESTAMP() AND
80         `holiday_end` > UNIX_TIMESTAMP()
81 LIMIT 1",
82                         array(bigintval($content['userid'])), __FILE__, __LINE__);
83
84                 // Do we have an entry?
85                 if (SQL_NUMROWS($result_holiday) == 1) {
86                         // Okay, this user can be send away to holiday...
87                         $content = merge_array($content, SQL_FETCHARRAY($result_holiday));
88
89                         // Prepare all data for the template
90                         $content = merge_array($content, array(
91                                 'activated' => generateDateTime($content['holiday_activated'], 1),
92                                 'start'     => generateDateTime($content['holiday_start']    , 1),
93                                 'end'       => generateDateTime($content['holiday_end']      , 1)
94                         ));
95
96                         // Send email to user
97                         $message = loadEmailTemplate('member_holiday_activated', $content, $content['userid']);
98                         sendEmail($content['userid'], '{--MEMBER_HOLIDAY_ACTIVATED_SUBJECT--}', $message);
99
100                         // Update account
101                         addSql(SQL_QUERY_ESC("UPDATE
102         `{?_MYSQL_PREFIX?}_user_data`
103 SET
104         `holiday_active`='Y'
105 WHERE
106         `userid`=%s
107 LIMIT 1",
108                                 array(bigintval($content['userid'])), __FILE__, __LINE__, false));
109                 } // END - if
110
111                 // Free memory
112                 SQL_FREERESULT($result_holiday);
113         } // END - while
114
115         // Run all SQLs
116         runFilterChain('run_sqls');
117 } // END - if
118
119 // Free memory
120 SQL_FREERESULT($result_main);
121
122 // Stop currently activated holidays
123 stopHolidays();
124
125 // Debug line
126 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');
127
128 // [EOF]
129 ?>