Added new factory and fixed confusing between login and actual user classes.
authorRoland Haeder <roland@mxchange.org>
Sat, 18 Apr 2015 10:25:02 +0000 (12:25 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 18 Apr 2015 10:25:02 +0000 (12:25 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/actions/post_registration/class_LoginAfterRegistrationAction.php
inc/classes/main/factories/login/class_LoginFactory.php
inc/classes/main/factories/user/.htaccess [new file with mode: 0644]
inc/classes/main/factories/user/class_UserFactory.php [new file with mode: 0644]
inc/classes/main/filter/verifier/class_UserUnconfirmedVerifierFilter.php

index f41843c8fd14a68feb4c87d033d17e9899411837..2ee908448ca839ba56647ca26f50f5b98548afe3 100644 (file)
@@ -55,7 +55,6 @@ class LoginAfterRegistrationAction extends BaseAction implements PerformableActi
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
                // Get a login class from factory
                $loginInstance = LoginFactory::createLoginObjectByRequest($requestInstance);
-               die('<pre>'.print_r($loginInstance, TRUE).'</pre>');
 
                // Login the user by the request instance
                $loginInstance->doLogin($requestInstance, $responseInstance);
index 01b042cc6a32f463b5f8b78471e603f3de2d2b2a..0f2719939eab0661d3c5f3a5963270d5fa1b791f 100644 (file)
@@ -36,7 +36,7 @@ class LoginFactory extends ObjectFactory {
         * Returns a singleton login instance for given request instance.
         *
         * @param       $requestInstance        An instance of a Requestable class
-        * @return      $wrapperInstance        A database wrapper instance
+        * @return      $loginInstance          An instance of a login helper (@TODO Use actual interface name)
         */
        public static final function createLoginObjectByRequest (Requestable $requestInstance) {
                // Get registry instance
@@ -45,29 +45,29 @@ class LoginFactory extends ObjectFactory {
                // Do we have an instance in the registry?
                if ($registryInstance->instanceExists('login_helper')) {
                        // Then use this instance
-                       $userInstance = $registryInstance->getInstance('login_helper');
+                       $loginInstance = $registryInstance->getInstance('login_helper');
                } else {
                        // Probe on member instance
                        try {
                                // Get class name
-                               $className = FrameworkConfiguration::getSelfInstance()->getConfigEntry('user_class');
+                               $className = FrameworkConfiguration::getSelfInstance()->getConfigEntry('user_login_class');
 
                                // Try to instance it
-                               $userInstance = call_user_func_array(array($className, 'createMemberByRequest'), array($requestInstance));
+                               $loginInstance = call_user_func_array(array($className, 'createMemberByRequest'), array($requestInstance));
                        } catch (UnexpectedGuestAccountException $e) {
                                // Then try it with guest account
-                               $className = FrameworkConfiguration::getSelfInstance()->getConfigEntry('guest_class');
+                               $className = FrameworkConfiguration::getSelfInstance()->getConfigEntry('guest_login_class');
 
                                // Try to instance it
-                               $userInstance = call_user_func_array(array($className, 'createGuestByRequest'), array($requestInstance));
+                               $loginInstance = call_user_func_array(array($className, 'createGuestByRequest'), array($requestInstance));
                        }
 
                        // Set the instance in registry for further use
-                       $registryInstance->addInstance('login_helper', $userInstance);
+                       $registryInstance->addInstance('login_helper', $loginInstance);
                }
 
                // Return the instance
-               return $userInstance;
+               return $loginInstance;
        }
 }
 
diff --git a/inc/classes/main/factories/user/.htaccess b/inc/classes/main/factories/user/.htaccess
new file mode 100644 (file)
index 0000000..3a42882
--- /dev/null
@@ -0,0 +1 @@
+Deny from all
diff --git a/inc/classes/main/factories/user/class_UserFactory.php b/inc/classes/main/factories/user/class_UserFactory.php
new file mode 100644 (file)
index 0000000..929038d
--- /dev/null
@@ -0,0 +1,75 @@
+<?php
+/**
+ * A factory class for socket registries
+ *
+ * @author             Roland Haeder <webmaster@shipsimu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.shipsimu.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
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * 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 UserFactory extends ObjectFactory {
+       /**
+        * Protected constructor
+        *
+        * @return      void
+        */
+       protected function __construct () {
+               // Call parent constructor
+               parent::__construct(__CLASS__);
+       }
+
+       /**
+        * Returns a singleton user instance for given request instance.
+        *
+        * @param       $requestInstance        An instance of a Requestable class
+        * @return      $userInstance           An instance of a user class (@TODO use actual interface name)
+        */
+       public static final function createUserByRequest (Requestable $requestInstance) {
+               // Get registry instance
+               $registryInstance = Registry::getRegistry();
+
+               // Do we have an instance in the registry?
+               if ($registryInstance->instanceExists('user')) {
+                       // Then use this instance
+                       $userInstance = $registryInstance->getInstance('user');
+               } else {
+                       // Probe on member instance
+                       try {
+                               // Get class name
+                               $className = FrameworkConfiguration::getSelfInstance()->getConfigEntry('user_class');
+
+                               // Try to instance it
+                               $userInstance = call_user_func_array(array($className, 'createMemberByRequest'), array($requestInstance));
+                       } catch (UnexpectedGuestAccountException $e) {
+                               // Then try it with guest account
+                               $className = FrameworkConfiguration::getSelfInstance()->getConfigEntry('guest_class');
+
+                               // Try to instance it
+                               $userInstance = call_user_func_array(array($className, 'createGuestByRequest'), array($requestInstance));
+                       }
+
+                       // Set the instance in registry for further use
+                       $registryInstance->addInstance('user', $userInstance);
+               }
+
+               // Return the instance
+               return $userInstance;
+       }
+}
+
+// [EOF]
+?>
index c8e6f427362c8c2d962c07cb586624a414ad51ab..897951d432d90803c0eaef0f47ad73c6a15c2653 100644 (file)
@@ -54,7 +54,7 @@ class UserUnconfirmedVerifierFilter extends BaseFilter implements Filterable {
         */
        public function execute (Requestable $requestInstance, Responseable $responseInstance) {
                // Get a user instance for comparison
-               $userInstance = LoginFactory::createLoginObjectByRequest($requestInstance);
+               $userInstance = UserFactory::createUserByRequest($requestInstance);
 
                // Is the email address valid?
                if ($userInstance->ifEmailAddressExists() === FALSE) {