Continued:
[core.git] / framework / main / classes / factories / user / class_UserFactory.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\CoreFramework\Factory\User;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
7 use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
8 use Org\Mxchange\CoreFramework\Registry\Registry;
9 use Org\Mxchange\CoreFramework\Request\Requestable;
10
11 /**
12  * A factory class for socket registries
13  *
14  * @author              Roland Haeder <webmaster@shipsimu.org>
15  * @version             0.0.0
16  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
17  * @license             GNU GPL 3.0 or any newer version
18  * @link                http://www.shipsimu.org
19  *
20  * This program is free software: you can redistribute it and/or modify
21  * it under the terms of the GNU General Public License as published by
22  * the Free Software Foundation, either version 3 of the License, or
23  * (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program. If not, see <http://www.gnu.org/licenses/>.
32  */
33 class UserFactory extends ObjectFactory {
34         /**
35          * Protected constructor
36          *
37          * @return      void
38          */
39         protected function __construct () {
40                 // Call parent constructor
41                 parent::__construct(__CLASS__);
42         }
43
44         /**
45          * Returns a singleton user instance for given request instance.
46          *
47          * @param       $requestInstance        An instance of a Requestable class
48          * @return      $userInstance           An instance of a user class (@TODO use actual interface name)
49          */
50         public static final function createUserByRequest (Requestable $requestInstance) {
51                 // Get registry instance
52                 $registryInstance = Registry::getRegistry();
53
54                 // Do we have an instance in the registry?
55                 if ($registryInstance->instanceExists('user')) {
56                         // Then use this instance
57                         $userInstance = $registryInstance->getInstance('user');
58                 } else {
59                         // Probe on member instance
60                         try {
61                                 // Get class name
62                                 $className = FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('user_class');
63
64                                 // Try to instance it
65                                 $userInstance = call_user_func_array(array($className, 'createMemberByRequest'), array($requestInstance));
66                         } catch (UnexpectedGuestAccountException $e) {
67                                 // Then try it with guest account
68                                 $className = FrameworkBootstrap::getConfigurationInstance()->getConfigEntry('guest_class');
69
70                                 // Try to instance it
71                                 $userInstance = call_user_func_array(array($className, 'createGuestByRequest'), array($requestInstance));
72                         }
73
74                         // Set the instance in registry for further use
75                         $registryInstance->addInstance('user', $userInstance);
76                 }
77
78                 // Return the instance
79                 return $userInstance;
80         }
81
82 }