Renamed all SQL-related functions to camel-case notation
[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 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://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()) || ((!isDailyResetEnabled()) && (getConfig('holiday_mode') == 'RESET'))) {
42         // Do not execute when script is in non-HTML mode or no daily reset
43         return;
44 } elseif (!isExtensionActive('holiday')) {
45         if (isDebugModeEnabled()) logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension ext-holiday 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 = sqlQuery("SELECT
54         `userid`,
55         `holiday_activated`
56 FROM
57         `{?_MYSQL_PREFIX?}_user_data`
58 WHERE
59         `holiday_activated` > 0 AND
60         `holiday_activated` < UNIX_TIMESTAMP() AND
61         `holiday_active`='N'
62 ORDER BY
63         `holiday_activated` ASC",
64 __FILE__, __LINE__);
65
66 // Entries found?
67 if (!ifSqlHasZeroNums($result_main)) {
68         // Init SQLs
69         initSqls();
70
71         // We have found at least one useraccount so let's check it...
72         while ($content = sqlFetchArray($result_main)) {
73                 // Check if his holiday can be activated
74                 $result_holiday = sqlQueryEscaped("SELECT
75         `holiday_start`,
76         `holiday_end`
77 FROM
78         `{?_MYSQL_PREFIX?}_user_holidays`
79 WHERE
80         `userid`=%s AND
81         `holiday_start` <= UNIX_TIMESTAMP() AND
82         `holiday_end` > UNIX_TIMESTAMP()
83 LIMIT 1",
84                         array(bigintval($content['userid'])), __FILE__, __LINE__);
85
86                 // Is there an entry?
87                 if (sqlNumRows($result_holiday) == 1) {
88                         // Okay, this user can be send away to holiday...
89                         $content = merge_array($content, sqlFetchArray($result_holiday));
90
91                         // Prepare all data for the template
92                         $content = merge_array($content, array(
93                                 'activated' => generateDateTime($content['holiday_activated'], 1),
94                                 'start'     => generateDateTime($content['holiday_start']    , 1),
95                                 'end'       => generateDateTime($content['holiday_end']      , 1)
96                         ));
97
98                         // Send email to user
99                         $message = loadEmailTemplate('member_holiday_activated', $content, $content['userid']);
100                         sendEmail($content['userid'], '{--MEMBER_HOLIDAY_ACTIVATED_SUBJECT--}', $message);
101
102                         // Update account
103                         addSql(sqlQueryEscaped("UPDATE
104         `{?_MYSQL_PREFIX?}_user_data`
105 SET
106         `holiday_active`='Y'
107 WHERE
108         `userid`=%s
109 LIMIT 1",
110                                 array(bigintval($content['userid'])), __FILE__, __LINE__, FALSE));
111                 } // END - if
112
113                 // Free memory
114                 sqlFreeResult($result_holiday);
115         } // END - while
116
117         // Run all SQLs
118         runFilterChain('run_sqls');
119 } // END - if
120
121 // Free memory
122 sqlFreeResult($result_main);
123
124 // Stop currently activated holidays
125 stopHolidays();
126
127 // Debug line
128 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');
129
130 // [EOF]
131 ?>