17a435539a2faba819d62c536e24445c9687b91c
[mailer.git] / inc / modules / member / what-mydata.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/16/2003 *
4  * ===============                              Last change: 06/30/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-mydata.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Members can edit their profile data here         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mitglieder koennen hier ihre Profildaten aendern *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
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 (!isMember()) {
43         redirectToIndexMemberOnlyModule();
44 }
45
46 // Add description as navigation point
47 addMenuDescription('member', __FILE__);
48
49 if ((!isExtensionActive('mydata')) && (!isAdmin())) {
50         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('mydata'));
51         return;
52 } // END - if
53
54 // Add userid
55 $content = array(
56         'userid' => getUserId()
57 );
58
59 // Init variable to prevent notices
60 $URL = '';
61
62 // Detect what the member wants to do
63 $mode = 'show'; // Show his data
64 if (isPostRequestElementSet('save'))   $mode = 'save';   // Save entered data
65 if (isPostRequestElementSet('edit'))   $mode = 'edit';   // Edit data
66 if (isPostRequestElementSet('notify')) $mode = 'notify'; // Switch off notification
67
68 switch ($mode) {
69         case 'show': // Show his data
70                 if (isExtensionActive('country', true)) {
71                         // New way                          1          2            3             4         5      6        7           8            9              10         11         12               13            14
72                         $result = SQL_QUERY_ESC("SELECT `surname`, `family`, `street_nr`, `country_code`, `zip`, `city`, `email`, `birth_day`, `birth_month`, `birth_year`, `gender`, `max_mails`, `receive_mails`, `last_update` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
73                                 array(getUserId()), __FILE__, __LINE__);
74                 } else {
75                         // Old way                          1          2            3        4         5      6        7           8            9              10         11         12               13            14
76                         $result = SQL_QUERY_ESC("SELECT `surname`, `family`, `street_nr`, `country`, `zip`, `city`, `email`, `birth_day`, `birth_month`, `birth_year`, `gender`, `max_mails`, `receive_mails`, `last_update` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
77                                 array(getUserId()), __FILE__, __LINE__);
78                 }
79
80                 // Get line
81                 $content = merge_array($content, SQL_FETCHARRAY($result, 0, false));
82
83                 // Free result
84                 SQL_FREERESULT($result);
85
86                 // Translate some things
87                 $content['gender']      = translateGender($content['gender']);
88                 $content['last_update'] = generateDateTime($content['last_update'], '0');
89
90                 // How far is last change on his profile away from now?
91                 if ((($content['last_update'] + getConfig('profile_lock')) > time()) && (!isAdmin()) && (getConfig('profile_lock') > 0)) {
92                         // You cannot change your account
93                         $content['change'] = loadTemplate('admin_settings_saved', true, "<div class=\"member_failed\">".sprintf(getMessage('MEMBER_PROFILE_LOCKED'), generateDateTime($content['last_update'] + getConfig('profile_lock'), '0'))."</div>");
94                 } else {
95                         // He is allowed to change his profile
96                         $content['change'] = loadTemplate('member_mydata_button', true);
97                 }
98
99                 if (strlen($content['birth_day'])   == 1) $content['birth_day']   = '0' . $content['birth_day'];
100                 if (strlen($content['birth_month']) == 1) $content['birth_month'] = '0' . $content['birth_month'];
101
102                 switch (getLanguage()) {
103                         case 'de': $content['dob'] = $content['birth_day']   . '.' . $content['birth_month'] . '.' . $content['birth_year']; break;
104                         default  : $content['dob'] = $content['birth_month'] . '-' . $content['birth_day']   . '-' . $content['birth_year']; break;
105                 } // END - switch
106
107                 if (isExtensionActive('country')) {
108                         // Load country's description and code
109                         $content['country'] = generateCountryInfo($content['country_code']);
110                 } // END - if
111
112                 // Load template
113                 loadTemplate('member_mydata_overview', false, $content);
114                 break;
115
116         case 'edit': // Edit data
117                 if (isExtensionActive('country', true)) {
118                         // New way                          0          1            2             3         4       5       6           7            8              9          10         11               12            13
119                         $result = SQL_QUERY_ESC("SELECT `surname`, `family`, `street_nr`, `country_code`, `zip`, `city`, `email`, `birth_day`, `birth_month`, `birth_year`, `gender`, `max_mails`, `receive_mails`, `last_update`
120 FROM
121         `{?_MYSQL_PREFIX?}_user_data`
122 WHERE
123         `userid`=%s
124 LIMIT 1",
125                         array(getUserId()), __FILE__, __LINE__);
126                 } else {
127                         // Old way                          0          1            2          3       4       5       6           7            8              9          10         11               12            13
128                         $result = SQL_QUERY_ESC("SELECT `surname`, `family`, `street_nr`, `country`, `zip`, `city`, `email`, `birth_day`, `birth_month`, `birth_year`, `gender`, `max_mails`, `receive_mails`, `last_update`
129 FROM
130         `{?_MYSQL_PREFIX?}_user_data`
131 WHERE
132         `userid`=%s
133 LIMIT 1",
134                                 array(getUserId()), __FILE__, __LINE__);
135                 }
136
137                 // Get line
138                 $content = merge_array($content, SQL_FETCHARRAY($result, 0, false));
139
140                 // Free result
141                 SQL_FREERESULT($result);
142
143                 $content['update_check'] = $content['last_update'] + getConfig('profile_lock');
144
145                 // How far is last change on his profile away from now?
146                 if (($content['update_check'] > time()) && (!isAdmin()) && (getConfig('profile_lock') > 0)) {
147                         $content['update_check'] = generateDateTime($content['update_check'] + getConfig('profile_lock'), '0');
148                         // You cannot change your account
149                         loadTemplate('member_mydata_locked', false, $content);
150                 } else {
151                         // He is allowed to change his profile
152                         foreach (array('gender_m','gender_f','gender_c') as $entry) {
153                                 $content[$entry] = '';
154                         } // END - foreach
155
156                         $content['gender_' . strtolower($content['gender'])] = ' selected="selected"';
157                         $content['dob'] = '';
158
159                         switch (getLanguage()) {
160                                 case 'de': // German date format
161                                         // Day
162                                         $content['dob'] .= addSelectionBox('day', $content['birth_day']);
163
164                                         // Month
165                                         $content['dob'] .= addSelectionBox('month', $content['birth_month']);
166
167                                         // Year
168                                         $content['dob'] .= addSelectionBox('year', $content['birth_year']);
169                                         break;
170
171                                 default: // Default is the US date format... :)
172                                         // Month
173                                         $content['dob'] .= addSelectionBox('month', $content['birth_month']);
174
175                                         // Day
176                                         $content['dob'] .= addSelectionBox('day', $content['birth_day']);
177
178                                         // Year
179                                         $content['dob'] .= addSelectionBox('year', $content['birth_year']);
180                                         break;
181                         } // END - if
182
183                         $content['max_receive_list'] = addMaxReceiveList('member', $content['max_mails'], true);
184
185                         if (isExtensionActive('country')) {
186                                 // Generate selection box
187                                 $OUT  = "<select name=\"country_code\" class=\"member_select\" size=\"1\">\n";
188                                 $whereStatement = "WHERE `is_active`='Y'";
189                                 if (isAdmin()) $whereStatement = '';
190                                 $OUT .= generateOptionList('countries', 'id', 'descr', $content['country_code'], 'code', $whereStatement);
191                                 $OUT .= "</select>";
192                                 $content['country'] = $OUT;
193                         } else {
194                                 // Ouput default input box
195                                 $content['country'] = "<input type=\"text\" name=\"cntry\" class=\"member_normal\" size=\"2\" maxlength=\"3\" value=\"".$content['country']."\" />";
196                         }
197
198                         // Load template
199                         loadTemplate('member_mydata_edit', false, $content);
200                 }
201                 break;
202
203         case 'save': // Save entered data
204                 // Load old email / password:      0          1           2
205                 $result = SQL_QUERY_ESC("SELECT `email`, `password`, `last_update` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid`=%s LIMIT 1",
206                         array(getUserId()), __FILE__, __LINE__);
207
208                 // Get line
209                 $content = merge_array($content, SQL_FETCHARRAY($result, 0, false));
210
211                 // Free result
212                 SQL_FREERESULT($result);
213
214                 $content['last_change'] = $content['last_update'] + getConfig('profile_lock');
215
216                 // How far is last change on his profile away from now?
217                 if (($content['last_change'] > time()) && (!isAdmin()) && (getConfig('profile_lock') > 0)) {
218                         $content['last_change'] = generateDateTime($content['last_change'] + getConfig('profile_lock'), '0');
219                         // You cannot change your account
220                         loadTemplate('member_mydata_locked');
221                 } elseif ((!isEmailValid(postRequestElement('email'))) && (!isAdmin())) {
222                         // Invalid email address!
223                         loadTemplate('admin_settings_saved', false, getMessage('INVALID_EMAIL_ADDRESS_ENTERED'));
224                 } else {
225                         // Generate hash
226                         $hash = generateHash(postRequestElement('pass1'), substr($content['password'], 0, -40));
227                         if ((($hash == $content['password']) || (postRequestElement('pass1') == postRequestElement('pass2'))) && (isPostRequestElementSet('pass1'))) {
228                                 // Only on simple changes normal mode is active = no email or password changed
229                                 $mode = 'normal'; $AND = '';
230
231                                 // Did the user changed the password?
232                                 if ($hash != $content['password']) { $AND = ", `password`='".$hash."'"; $mode = 'pass'; }
233
234                                 // Or did he changed his password?
235                                 if (postRequestElement('email') != $content['email']) {
236                                         // Jupp
237                                         if ($mode == 'normal') {
238                                                 $mode = 'email';
239                                         } else {
240                                                 $mode .= ';email';
241                                         }
242                                         setRequestPostElement('old_email', $content['email']);
243                                 } // END - if
244
245                                 // Update member's profile
246                                 if (isExtensionActive('country')) {
247                                         // New way
248                                         SQL_QUERY_ESC("UPDATE
249         `{?_MYSQL_PREFIX?}_user_data`
250 SET
251         `gender`='%s', `surname`='%s', `family`='%s',
252         `street_nr`='%s',
253         `country_code`=%s, `zip`=%s, `city`='%s',
254         `email`='%s',
255         `birth_day`=%s, `birth_month`=%s, `birth_year`=%s,
256         `max_mails`='%s',
257         `last_update`=UNIX_TIMESTAMP()".$AND.",
258         `notified`='N',
259         `last_profile_sent`=UNIX_TIMESTAMP()
260 WHERE
261         `userid`=%s
262 LIMIT 1",
263                                                 array(
264                                                         postRequestElement('gender'),
265                                                         postRequestElement('surname'),
266                                                         postRequestElement('family'),
267                                                         postRequestElement('street_nr'),
268                                                         bigintval(postRequestElement('country_code')),
269                                                         bigintval(postRequestElement('zip')),
270                                                         postRequestElement('city'),
271                                                         postRequestElement('email'),
272                                                         bigintval(postRequestElement('day')),
273                                                         bigintval(postRequestElement('month')),
274                                                         bigintval(postRequestElement('year')),
275                                                         bigintval(postRequestElement('max_mails')),
276                                                         getUserId()
277                                                 ), __FILE__, __LINE__);
278                                 } else {
279                                         // Old way
280                                         SQL_QUERY_ESC("UPDATE
281         `{?_MYSQL_PREFIX?}_user_data`
282 SET
283         `gender`='%s', `surname`='%s', `family`='%s',
284         `street_nr`='%s',
285         `country`='%s', `zip`=%s, `city`='%s',
286         `email`='%s',
287         `birth_day`=%s, `birth_month`=%s, `birth_year`=%s,
288         `max_mails`='%s',
289         `last_update`=UNIX_TIMESTAMP()".$AND.",
290         `notified`='N',
291         `last_profile_sent`=UNIX_TIMESTAMP()
292 WHERE
293         `userid`=%s
294 LIMIT 1",
295                                                 array(
296                                                         postRequestElement('gender'),
297                                                         postRequestElement('surname'),
298                                                         postRequestElement('family'),
299                                                         postRequestElement('street_nr'),
300                                                         postRequestElement('cntry'),
301                                                         bigintval(postRequestElement('zip')),
302                                                         postRequestElement('city'),
303                                                         postRequestElement('email'),
304                                                         bigintval(postRequestElement('day')),
305                                                         bigintval(postRequestElement('month')),
306                                                         bigintval(postRequestElement('year')),
307                                                         bigintval(postRequestElement('max_mails')),
308                                                         getUserId()
309                                                 ), __FILE__, __LINE__);
310                                 }
311
312                                 // Did something change?
313                                 if (SQL_AFFECTEDROWS() == 1) {
314                                         // Get all modes ...
315                                         $modes = explode(';', $mode);
316
317                                         // ... and run them through
318                                         sendModeMails ('mydata', $modes);
319                                 } else {
320                                         // Something went wrong
321                                         loadTemplate('admin_settings_saved', false, getMessage('MEMBER_UPDATE_FAILED'));
322                                 }
323                         } else {
324                                 // Entered wrong pass for updating profile
325                                 loadTemplate('admin_settings_saved', false, getMessage('MEBER_UPDATE_PWD_WRONG'));
326                         }
327                 }
328                 break;
329
330         case 'notify': // Switch off notfication
331                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `notified`='N', `last_update`=UNIX_TIMESTAMP() WHERE `userid`=%s LIMIT 1",
332                         array(getUserId()), __FILE__, __LINE__);
333                 $URL = 'modules.php?module=login&amp;what=welcome&amp;code=' . urlencode(getMessage('PROFILE_UPDATED'));
334                 break;
335 } // END - switch
336
337 if (!empty($URL)) {
338         // Load generated URL
339         redirectToUrl($URL);
340 } // END - if
341
342 // [EOF]
343 ?>