]> git.mxchange.org Git - core.git/blob - framework/main/classes/filter/verifier/class_UserNameVerifierFilter.php
Continued:
[core.git] / framework / main / classes / filter / verifier / class_UserNameVerifierFilter.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\CoreFramework\Filter\Verifier\User;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Filter\BaseFilter;
7 use Org\Mxchange\CoreFramework\Filter\Filterable;
8 use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
9 use Org\Mxchange\CoreFramework\Request\Requestable;
10 use Org\Mxchange\CoreFramework\Response\Responseable;
11 use Org\Mxchange\CoreFramework\User\UsernameMissingException;
12
13 /**
14  * A concrete filter for verfying the username. This filter may intercept the
15  * filter chain if no username is given or if supplied username has an invalid
16  * form. It could also intercept our filter chain if username was not found.
17  *
18  * @author              Roland Haeder <webmaster@shipsimu.org>
19  * @version             0.0.0
20  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team
21  * @license             GNU GPL 3.0 or any newer version
22  * @link                http://www.shipsimu.org
23  *
24  * This program is free software: you can redistribute it and/or modify
25  * it under the terms of the GNU General Public License as published by
26  * the Free Software Foundation, either version 3 of the License, or
27  * (at your option) any later version.
28  *
29  * This program is distributed in the hope that it will be useful,
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
32  * GNU General Public License for more details.
33  *
34  * You should have received a copy of the GNU General Public License
35  * along with this program. If not, see <http://www.gnu.org/licenses/>.
36  */
37 class UserNameVerifierFilter extends BaseFilter implements Filterable {
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 filter class
50          *
51          * @return      $filterInstance         An instance of this filter class
52          */
53         public static final function createUserNameVerifierFilter () {
54                 // Get a new instance
55                 $filterInstance = new UserNameVerifierFilter();
56
57                 // Return the instance
58                 return $filterInstance;
59         }
60
61         /**
62          * Executes the filter with given request and response objects
63          *
64          * @param       $requestInstance        An instance of a class with an Requestable interface
65          * @param       $responseInstance       An instance of a class with an Responseable interface
66          * @return      void
67          * @throws      FilterChainException    If this filter fails to operate
68          */
69         public function execute (Requestable $requestInstance, Responseable $responseInstance) {
70                 // Get username from request
71                 $userName = $requestInstance->getRequestElement('username');
72
73                 // Is the username set?
74                 if (is_null($userName)) {
75                         // Not found in form so stop the filtering process
76                         $requestInstance->requestIsValid(false);
77
78                         // Add a message to the response
79                         $responseInstance->addFatalMessage('username_unset');
80
81                         // Abort here
82                         throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
83                 } elseif (empty($userName)) {
84                         // Empty field!
85                         $requestInstance->requestIsValid(false);
86
87                         // Add a message to the response
88                         $responseInstance->addFatalMessage('username_empty');
89
90                         // Abort here
91                         throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
92                 } elseif ($this->ifUserNameIsTaken($userName) === false) {
93                         // Username is already taken
94                         $requestInstance->requestIsValid(false);
95
96                         // Add a message to the response
97                         $responseInstance->addFatalMessage('username_not_found');
98
99                         // Abort here
100                         throw new FilterChainException($this, self::EXCEPTION_FILTER_CHAIN_INTERCEPTED);
101                 }
102         }
103
104         /**
105          * Check whether the username as already been taken
106          *
107          * @param       $userName               Username to check for existence
108          * @return      $alreadyTaken   Whether the username has been taken
109          */
110         private function ifUserNameIsTaken ($userName) {
111                 // Default is already taken
112                 $alreadyTaken = true;
113
114                 // Initialize instance
115                 $userInstance = NULL;
116
117                 // Get a registry instance
118                 $registry = GenericRegistry::getRegistry();
119
120                 // Is the user already there?
121                 if ($registry->instanceExists('user')) {
122                         // Use the instance for checking for the email
123                         $userInstance = $registry->getInstance('user');
124                         $userInstance->setUserName($userName);
125                 } else {
126                         // If this instance is created then the username *does* exist
127                         try {
128                                 // Get a new instance
129                                 $userInstance = call_user_func_array(array($this->getConfigInstance()->getConfigEntry('user_class'), 'createMemberByUsername'), array($userName));
130
131                                 // Remember this user instance in our registry for later usage
132                                 $registry->addInstance('user', $userInstance);
133                         } catch (UsernameMissingException $e) {
134                                 // User was not found
135                         }
136                 }
137
138                 // Does the username exist?
139                 if ((is_null($userInstance)) || ($userInstance->ifUsernameExists() === false)) {
140                         // This username is still available
141                         $alreadyTaken = false;
142                 } // END - if
143
144                 // Return the result
145                 return $alreadyTaken;
146         }
147
148 }