www is out-dated
[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://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`,
57         `email`,
58         `last_update`,
59         `joined`
60 FROM
61         `{?_MYSQL_PREFIX?}_user_data`
62 WHERE
63         `status`='CONFIRMED' AND (
64                 (
65                         (UNIX_TIMESTAMP() - `last_update`) >= {?profile_update?} AND
66                         `last_update` > 0 AND
67                         (UNIX_TIMESTAMP() - `last_profile_sent`) >= {?resend_profile_update?}
68                 ) OR (
69                         `last_update` = 0 AND
70                         `last_profile_sent` = 0 AND
71                         (UNIX_TIMESTAMP() - `joined`) >= {?profile_update?}
72                 )
73         )
74 ORDER BY
75         `userid` ASC", __FILE__, __LINE__);
76
77         // Do we have some notifications to sent?
78         if (!SQL_HASZERONUMS($result)) {
79                 // We need to send-out notifications...
80                 while ($content = SQL_FETCHARRAY($result)) {
81                         // Translate timestamp
82                         $content['joined'] = generateDateTime($content['joined'], '0');
83
84                         if (round($content['last_update']) == '0') {
85                                 // Has never changed his accont
86                                 $content['last_update'] = '{--MEMBER_PROFILE_NEVER_CHANGED--}';
87                         } else {
88                                 // Has changed his account
89                                 $content['last_update'] = generateDateTime($content['last_update'], '0');
90                         }
91
92                         // Load email template and send mail away
93                         $message = loadEmailTemplate('member_profile', $content, bigintval($content['userid']));
94                         sendEmail($content['userid'], '{--MEMBER_PROFILE_OUTDATED_SUBJECT--}', $message);
95
96                         // Update profile data
97                         SQL_QUERY_ESC("UPDATE
98         `{?_MYSQL_PREFIX?}_user_data`
99 SET
100         `last_profile_sent`=UNIX_TIMESTAMP(),
101         `notified`='Y'
102 WHERE
103         `userid`=%s
104 LIMIT 1",
105                                 array(bigintval($content['userid'])), __FILE__, __LINE__);
106                 } // END - while
107         } // END - if
108
109         // Free result
110         SQL_FREERESULT($result);
111 } // END - if
112
113 // Debug line
114 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');
115
116 // [EOF]
117 ?>