]> git.mxchange.org Git - city.git/blob - application/city/classes/commands/html/class_CityHtmlCityRegisterCommand.php
Continued:
[city.git] / application / city / classes / commands / html / class_CityHtmlCityRegisterCommand.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\City\Command;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Command\BaseCommand;
7 use Org\Mxchange\CoreFramework\Command\Commandable;
8 use Org\Mxchange\CoreFramework\Controller\Controller;
9 use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
10 use Org\Mxchange\CoreFramework\Request\Requestable;
11 use Org\Mxchange\CoreFramework\Resolver\Command\CommandResolver;
12 use Org\Mxchange\CoreFramework\Response\Responseable;
13
14 /**
15  * A command for registration form (POST) handling
16  *
17  * @author              Roland Haeder <webmaster@shipsimu.org>
18  * @version             0.0.0
19  * @copyright   Copyright (c) 2015, 2016 City Developer Team
20  * @license             GNU GPL 3.0 or any newer version
21  * @link                http://www.shipsimu.org
22  *
23  * This program is free software: you can redistribute it and/or modify
24  * it under the terms of the GNU General Public License as published by
25  * the Free Software Foundation, either version 3 of the License, or
26  * (at your option) any later version.
27  *
28  * This program is distributed in the hope that it will be useful,
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31  * GNU General Public License for more details.
32  *
33  * You should have received a copy of the GNU General Public License
34  * along with this program. If not, see <http://www.gnu.org/licenses/>.
35  */
36 class CityHtmlCityRegisterCommand extends BaseCommand implements Commandable {
37         /**
38          * Protected constructor
39          *
40          * @return      void
41          */
42         protected function __construct () {
43                 // Call parent constructor
44                 parent::__construct(__CLASS__);
45         }
46
47         /**
48          * Creates an instance of this command and sets the resolver instance
49          *
50          * @param       $resolverInstance       An instance of a command resolver
51          * @return      $commandInstance        The created command instance
52          */
53         public static final function createCityHtmlCityRegisterCommand (CommandResolver $resolverInstance) {
54                 // Get a new instance
55                 $commandInstance = new CityHtmlCityRegisterCommand();
56
57                 // Set the resolver instance
58                 $commandInstance->setResolverInstance($resolverInstance);
59
60                 // Return the prepared instance
61                 return $commandInstance;
62         }
63
64         /**
65          * Executes the command with given request and response objects
66          *
67          * @param       $requestInstance        An instance of a class with an Requestable interface
68          * @param       $responseInstance       An instance of a class with an Responseable interface
69          * @return      void
70          */
71         public function execute (Requestable $requestInstance, Responseable $responseInstance) {
72                 // First get a UserRegistration instance
73                 $registerInstance = ObjectFactory::createObjectByConfiguredName('user_registration_class');
74
75                 // First set request and response instance
76                 $registerInstance->setRequestInstance($requestInstance);
77                 $registerInstance->setResponseInstance($responseInstance);
78
79                 // Encrypt the password
80                 $registerInstance->encryptPassword('pass1');
81
82                 // Do things before registration
83                 $registerInstance->doPreRegistration();
84
85                 // Register the new user
86                 $registerInstance->registerNewUser();
87
88                 /*
89                  * Do things after registration like notifying partner pages or queueing
90                  * them for notification
91                  */
92                 $registerInstance->doPostRegistration();
93
94                 // Redirect or login after registration
95                 $registerInstance->doPostAction();
96         }
97
98         /**
99          * Adds extra filters to the given controller instance
100          *
101          * @param       $controllerInstance             A controller instance
102          * @param       $requestInstance                An instance of a class with an Requestable interface
103          * @return      void
104          * @todo        Add some more pre/post filters to the controller
105          */
106         public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) {
107                 // Validate email address (if configured: check on double email addresses)
108                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('email_validator_filter'));
109
110                 // Validate username and check if it does not exist
111                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('username_validator_filter'));
112
113                 // Validate if username is "guest" and not taken
114                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('username_is_guest_filter'));
115
116                 // Validate if password is set
117                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('password_validator_filter'));
118
119                 // Check if rules where accepted
120                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('rules_accepted_filter'));
121
122                 // Validate CAPTCHA input
123                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('captcha_register_verifier_filter'));
124
125                 // Validate birthday
126                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('birthday_register_verifier_filter'));
127         }
128 }