84ff6f6722c0bd506b44c04cb54fd77a2a3c9c2f
[mailer.git] / inc / reset / reset_profile.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/24/2009 *
4  * ===================                          Last change: 10/24/2009 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : reset_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  * Needs to be in all Files and every File needs "svn propset           *
19  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
20  * -------------------------------------------------------------------- *
21  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
22  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
23  * For more information visit: http://www.mxchange.org                  *
24  *                                                                      *
25  * This program is free software; you can redistribute it and/or modify *
26  * it under the terms of the GNU General Public License as published by *
27  * the Free Software Foundation; either version 2 of the License, or    *
28  * (at your option) any later version.                                  *
29  *                                                                      *
30  * This program is distributed in the hope that it will be useful,      *
31  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
32  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
33  * GNU General Public License for more details.                         *
34  *                                                                      *
35  * You should have received a copy of the GNU General Public License    *
36  * along with this program; if not, write to the Free Software          *
37  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
38  * MA  02110-1301  USA                                                  *
39  ************************************************************************/
40
41 // Some security stuff...
42 if (!defined('__SECURITY')) {
43         die();
44 } elseif (!isExtensionActive('profile')) {
45         return;
46 }
47
48 // Do not execute when script is in CSS mode or no daily reset
49 if ((getOutputMode() != 0) || (!isResetModeEnabled())) return;
50 //* DEBUG: */ outputHtml(basename(__FILE__)."<br />");
51
52 if ((getConfig('send_prof_update') == 'Y') && (getConfig('profile_update') > 0) && (getConfig('resend_profile_update'))) {
53         // Load personal data
54         $result = SQL_QUERY_ESC("SELECT `userid`, `email`, `last_update`, `joined`
55 FROM
56         `{?_MYSQL_PREFIX?}_user_data`
57 WHERE
58         (`last_update` < (UNIX_TIMESTAMP() - %s) AND `last_update` != 0 AND `last_profile_sent` < (UNIX_TIMESTAMP() - %s))
59 OR
60         (`last_update` = '0' AND `last_profile_sent` = '0' AND `joined` < (UNIX_TIMESTAMP() - %s))
61 ORDER BY
62         `userid` ASC",
63                 array(
64                         getConfig('profile_update'),
65                         getConfig('resend_profile_update'),
66                         getConfig('profile_update')
67                 ), __FILE__, __LINE__);
68
69         // Do we have some notifications to sent?
70         if (SQL_NUMROWS($result) > 0) {
71                 // We need to send-out notifications...
72                 while ($content = SQL_FETCHARRAY($result)) {
73                         // Translate timestamp
74                         $content['joined'] = generateDateTime($content['joined'], 0);
75
76                         if (round($content['last_update']) == '0') {
77                                 // Has never changed his accont
78                                 $content['last_update'] = getMessage('PROFILE_NEVER_CHANGED');
79                         } else {
80                                 // Has changed his account
81                                 $content['last_update'] = generateDateTime($content['last_update'], 0);
82                         }
83
84                         // Load email template and send mail away
85                         $message = loadEmailTemplate('profile-updte', $content, bigintval($content['userid']));
86                         sendEmail($content['email'], getMessage('PROFILE_OUTDATED'), $message);
87
88                         // Update profile data
89                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `last_profile_sent`=UNIX_TIMESTAMP(), `notified`='Y' WHERE `userid`=%s LIMIT 1",
90                                 array(bigintval($content['userid'])), __FILE__, __LINE__);
91                 } // END - while
92         } // END - if
93
94         // Free result
95         SQL_FREERESULT($result);
96 }
97
98 // [EOF]
99 ?>