]> git.mxchange.org Git - city.git/blob - application/city/classes/login/class_CityGuestLogin.php
Continued:
[city.git] / application / city / classes / login / class_CityGuestLogin.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\City\Login\Guest;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
7 use Org\Mxchange\CoreFramework\Request\Requestable;
8 use Org\Mxchange\CoreFramework\Response\Responseable;
9
10 /**
11  * A special guest login class for City
12  *
13  * @author              Roland Haeder <webmaster@shipsimu.org>
14  * @version             0.0.0
15  * @copyright   Copyright (c) 2015, 2016 City Developer Team
16  * @license             GNU GPL 3.0 or any newer version
17  * @link                http://www.shipsimu.org
18  *
19  * This program is free software: you can redistribute it and/or modify
20  * it under the terms of the GNU General Public License as published by
21  * the Free Software Foundation, either version 3 of the License, or
22  * (at your option) any later version.
23  *
24  * This program is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License
30  * along with this program. If not, see <http://www.gnu.org/licenses/>.
31  */
32 class CityGuestLogin extends BaseFrameworkSystem implements LoginableUser, Registerable {
33         /**
34          * The hashed password
35          */
36         private $hashedPassword = '';
37
38         /**
39          * Protected constructor
40          *
41          * @return      void
42          */
43         protected function __construct () {
44                 // Call parent constructor
45                 parent::__construct(__CLASS__);
46         }
47
48         /**
49          * Creates an instance of this login class
50          *
51          * @return      $loginInstance  An instance of this login class
52          */
53         public static final function createCityGuestLogin () {
54                 // Get a new instance
55                 $loginInstance = new CityGuestLogin();
56
57                 // Return the instance
58                 return $loginInstance;
59         }
60
61         /**
62          * Logins the user with the given request containing the credential. The
63          * result of the login can be thrown by exception or, if prefered stored
64          * in a boolean attribute which is then readable by a matching getter.
65          *
66          * @param       $requestInstance        An instance of a Requestable class
67          * @param       $responseInstance       An instance of a Responseable class
68          * @return      void
69          * @throws      UserPasswordMismatchException   If the supplied password did not
70          *                                                                              match with the stored password
71          */
72         public function doLogin (Requestable $requestInstance, Responseable $responseInstance) {
73                 // Get a user instance
74                 $userInstance = UserFactory::createUserByRequest($requestInstance);
75
76                 // Remember this new instance in registry
77                 Registry::getRegistry()->addInstance('user', $userInstance);
78
79                 // Is the password correct?
80                 if ($userInstance->ifPasswordHashMatches($requestInstance) === FALSE) {
81                         // Mismatching password
82                         throw new UserPasswordMismatchException(array($this, $userInstance), BaseUser::EXCEPTION_USER_PASS_MISMATCH);
83                 } // END - if
84
85                 // Now do the real login. This can be cookie- or session-based login
86                 // which depends on the admins setting then on the user's taste.
87                 // 1) Get a login helper instance
88                 $helperInstance = ObjectFactory::createObjectByConfiguredName('login_helper_class', array($requestInstance));
89
90                 // 2) Execute the login. This will now login...
91                 $helperInstance->executeLogin($responseInstance);
92         }
93
94         /**
95          * Check if the implementation is correct. Only the request instance is
96          * needed as no redirect is done here.
97          *
98          * @param       $requestInstance        An instance of a Requestable class
99          * @return
100          */
101         public function testLogin (Requestable $requestInstance) {
102                 // Create dummy instance
103                 $dummyInstance = Guest::createGuestByRequest($requestInstance);
104         }
105
106         /**
107          * Determines wether the login was fine. This is done by checking if 'login' instance is in registry
108          *
109          * @return      $loginDone      Wether the login was fine or not
110          */
111         public function ifLoginWasSuccessfull () {
112                 // Is the registry key there?
113                 $loginDone = (Registry::getRegistry()->getInstance('login') instanceof Registerable);
114
115                 // Return the result
116                 return $loginDone;
117         }
118
119         /**
120          * Encrypt given request key or throw an exception if key was not found in
121          * request
122          *
123          * @param       $requestKey             Key in request class
124          * @return      void
125          */
126         public function encryptPassword ($requestKey) {
127                 // Check if password is found in request
128                 if ($this->getRequestInstance()->isRequestElementSet($requestKey)) {
129                         // So encrypt the password and store it for later usage in
130                         // the request:
131
132                         // Get the plain password
133                         $plainPassword = $this->getRequestInstance()->getRequestElement($requestKey);
134
135                         // Get user instance
136                         $userInstance = Registry::getRegistry()->getInstance('user');
137
138                         // Get a crypto helper and hash the password
139                         $this->hashedPassword = ObjectFactory::createObjectByConfiguredName('crypto_class')->hashString($plainPassword, $userInstance->getPasswordHash());
140
141                         // Store the hash back in request
142                         $this->getRequestInstance()->setRequestElement('pass_hash', $this->hashedPassword);
143                 } // END - if
144         }
145 }