Extension ext-coupon continued, a lot improvements applied:
[mailer.git] / inc / daily / daily_profile.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/24/2009 *
4  * ===================                          Last change: 06/20/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : daily_profile.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Sends out notifications to keep profiles updated *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Sendet Erinnerngen aus, damit die Profile        *
12  *                     von den Mitgliedern aktuell gehalten werden      *
13  * -------------------------------------------------------------------- *
14  * $Revision::                                                        $ *
15  * $Date::                                                            $ *
16  * $Tag:: 0.2.1-FINAL                                                 $ *
17  * $Author::                                                          $ *
18  * -------------------------------------------------------------------- *
19  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
20  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
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 ((!isHtmlOutputMode()) || (!isResetModeEnabled())) {
43         // Do not execute when script is in CSS mode or no daily reset
44         return;
45 } elseif (!isExtensionActive('profile')) {
46         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
47         return;
48 }
49
50 // Debug line
51 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.');
52
53 if ((isSendProfileUpdateEnabled()) && (getProfileUpdate() > 0) && (getResendProfileUpdate() > 0)) {
54         // Load personal data
55         $result = SQL_QUERY("SELECT
56         `userid`, `email`, `last_update`, `joined`
57 FROM
58         `{?_MYSQL_PREFIX?}_user_data`
59 WHERE
60         `status`='CONFIRMED' AND (
61                 (
62                         (UNIX_TIMESTAMP() - `last_update`) >= {?profile_update?} AND
63                         `last_update` > 0 AND
64                         (UNIX_TIMESTAMP() - `last_profile_sent`) >= {?resend_profile_update?}
65                 ) OR (
66                         `last_update` = 0 AND
67                         `last_profile_sent` = 0 AND
68                         (UNIX_TIMESTAMP() - `joined`) >= {?profile_update?}
69                 )
70         )
71 ORDER BY
72         `userid` ASC", __FILE__, __LINE__);
73
74         // Do we have some notifications to sent?
75         if (!SQL_HASZERONUMS($result)) {
76                 // We need to send-out notifications...
77                 while ($content = SQL_FETCHARRAY($result)) {
78                         // Translate timestamp
79                         $content['joined'] = generateDateTime($content['joined'], 0);
80
81                         if (round($content['last_update']) == '0') {
82                                 // Has never changed his accont
83                                 $content['last_update'] = '{--MEMBER_PROFILE_NEVER_CHANGED--}';
84                         } else {
85                                 // Has changed his account
86                                 $content['last_update'] = generateDateTime($content['last_update'], 0);
87                         }
88
89                         // Load email template and send mail away
90                         $message = loadEmailTemplate('member_profile', $content, bigintval($content['userid']));
91                         sendEmail($content['email'], '{--MEMBER_PROFILE_OUTDATED_SUBJECT--}', $message);
92
93                         // Update profile data
94                         SQL_QUERY_ESC("UPDATE
95         `{?_MYSQL_PREFIX?}_user_data`
96 SET
97         `last_profile_sent`=UNIX_TIMESTAMP(),
98         `notified`='Y'
99 WHERE
100         `userid`=%s
101 LIMIT 1",
102                                 array(bigintval($content['userid'])), __FILE__, __LINE__);
103                 } // END - while
104         } // END - if
105
106         // Free result
107         SQL_FREERESULT($result);
108 } // END - if
109
110 // Debug line
111 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');
112
113 // [EOF]
114 ?>