Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / modules / member / what-nickname.php
index c69d7eec520b23f2e181aa68da2c6f93926d6e1a..5cb477c76767c6155c30bd90d4542eb0bffdb5c9 100644 (file)
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
 
 // Some security stuff...
 if (!defined('__SECURITY')) {
-       die();
+       exit();
 } elseif (!isMember()) {
        redirectToIndexMemberOnlyModule();
 }
 
 // Add description as navigation point
-addMenuDescription('member', __FILE__);
+addYouAreHereLink('member', __FILE__);
 
 if ((!isExtensionActive('nickname')) && (!isAdmin())) {
-       loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('nickname'));
+       displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=nickname%}');
        return;
 } // END - if
 
@@ -55,43 +54,62 @@ $isValid = false;
 
 if (isFormSent()) {
        // Nickname was submitted so let's check if it is not already in use
-       if (isPostRequestParameterSet('nickname')) {
+       if (isPostRequestElementSet('nickname')) {
                // Check if nickname is valid
-               $PATTERN = '[' . getConfig('nickname_pattern') . ']{' . getConfig('nickname_len') . ',}';
-               if (ereg($PATTERN, postRequestParameter('nickname'), $array)) {
+               if (preg_match('/[' . getConfig('nickname_pattern') . ']{' . getConfig('nickname_len') . ',}/', postRequestElement('nickname'), $array)) {
                        // Entered nickname is valid?
-                       $isValid = ($array[0] == postRequestParameter('nickname'));
+                       $isValid = (($array[0] == postRequestElement('nickname')) && (isNicknameUsed(postRequestElement('nickname'))));
                } // END - if
        } // END - if
 } // END - if
 
 if ($isValid === true) {
+       // Nickname already in use which is the default
+       $content = '{--MEMBER_NICKNAME_ALREADY_IN_USE--}';
+
        // Look for nickname in database (we only need just one entry so don't worry about the "LIMIT 1" !)
-       $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `nickname`='%s' AND `userid` != '%s' LIMIT 1",
-               array(postRequestParameter('nickname'), getMemberId()), __FILE__, __LINE__);
-       if (SQL_NUMROWS($result) == '0') {
+       $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `nickname`='%s' AND `userid` != %s LIMIT 1",
+               array(
+                       postRequestElement('nickname'),
+                       getMemberId()
+               ), __FILE__, __LINE__);
+
+       // Is it not in use?
+       if (SQL_HASZERONUMS($result)) {
+               // Prepare array
+               $filterData = array(
+                       'history_subject' => 'NICKNAME_CHANGED',
+                       'history_userid'  => getMemberId(),
+                       'history_value'   => postRequestElement('nickname')
+               );
+
+               // Run filter chain
+               runFilterChain('add_history_entry', $filterData);
+
                // Nickname not in use, so set it now
                SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `nickname`='%s' WHERE `userid`=%s LIMIT 1",
-                       array(postRequestParameter('nickname'), getMemberId()), __FILE__, __LINE__);
-               $content = getMessage('NICKNAME_SAVED');
-       } else {
-               // Free result
-               SQL_FREERESULT($result);
+                       array(
+                               postRequestElement('nickname'),
+                               getMemberId()
+                       ), __FILE__, __LINE__);
+
+               // Change message
+               $content = '{--MEMBER_NICKNAME_SAVED--}';
+       } // END - if
 
-               // Nickname already in use!
-               $content = getMessage('NICKNAME_ALREADY_IN_USE');
-       }
+       // Free result
+       SQL_FREERESULT($result);
 
        // Load template
-       loadTemplate('admin_settings_saved', false, $content);
+       displayMessage($content);
 } else {
-       // Do we have already submit the form?
-       if (isPostRequestParameterSet('nickname')) {
-               loadTemplate('admin_settings_saved', false, '<div class="member_failed">{--NICKNAME_IS_INVALID--}</div>');
+       // Is there already submit the form?
+       if (isPostRequestElementSet('nickname')) {
+               loadTemplate('admin_settings_unsaved', false, '{--MEMBER_NICKNAME_IS_INVALID--}');
        } // END - if
 
        // Load Template
-       loadTemplate('member_nickname_form', false, getNickname(getMemberId()));
+       loadTemplate('member_nickname_form');
 }
 
 // [EOF]