]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/filter/validator/class_UserNameValidatorFilter.php
A lot more old methods deprecated and already deprecated methods removed
[shipsimu.git] / inc / classes / main / filter / validator / class_UserNameValidatorFilter.php
index cb82296417ac0c9536da564ace58fa199b84fcad..456f16a40c0933e68c3f67b49914e6d5876d59e2 100644 (file)
@@ -24,7 +24,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class UserNameValidatorFilter extends BaseFrameworkSystem implements Filterable {
+class UserNameValidatorFilter extends BaseFilter implements Filterable {
        /**
         * Protected constructor
         *
@@ -38,11 +38,7 @@ class UserNameValidatorFilter extends BaseFrameworkSystem implements Filterable
                $this->setObjectDescription("A filter for username validation");
 
                // Create unique ID number
-               $this->createUniqueID();
-
-               // Clean up a little
-               $this->removeNumberFormaters();
-               $this->removeSystemArray();
+               $this->generateUniqueId();
        }
 
        /**
@@ -110,23 +106,32 @@ class UserNameValidatorFilter extends BaseFrameworkSystem implements Filterable
                // Default is already taken
                $alreadyTaken = true;
 
+               // Initialize instance
+               $userInstance = null;
+
                // Get a registry instance
-               $registry = Registry::getInstance();
+               $registry = Registry::getRegistry();
 
                // Is the user already there?
                if ($registry->instanceExists('user')) {
                        // Use the instance for checking for the email
                        $userInstance = $registry->getInstance('user');
+                       $userInstance->setUserName($userName);
                } else {
                        // If this instance is created then the username *does* exist
-                       $userInstance = User::createUserByUsername($userName);
-
-                       // Remember this user instance in our registry for later usage
-                       $registry->addInstance('user', $userInstance);
+                       try {
+                               // Get a new instance
+                               $userInstance = call_user_func_array(array($this->getConfigInstance()->readConfig('user_class'), "createUserByUsername"), array($userName));
+
+                               // Remember this user instance in our registry for later usage
+                               $registry->addInstance('user', $userInstance);
+                       } catch (UsernameMissingException $e) {
+                               // User was not found
+                       }
                }
 
                // Does the username exist?
-               if (!$userInstance->ifUsernameExists()) {
+               if ((is_null($userInstance)) || (!$userInstance->ifUsernameExists())) {
                        // This username is still available
                        $alreadyTaken = false;
                }