]> git.mxchange.org Git - city.git/blob - application/city/classes/commands/html/class_CityHtmlResendLinkCommand.php
3ffce95e57a0b145844a3e7da0f4971ce8fc3c2f
[city.git] / application / city / classes / commands / html / class_CityHtmlResendLinkCommand.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 class for resending the confirmation link
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 CityHtmlResendLinkCommand 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 class
49          *
50          * @param       $resolverInstance       An instance of a command resolver class
51          * @return      $commandInstance        An instance a prepared command class
52          */
53         public static final function createCityHtmlResendLinkCommand (CommandResolver $resolverInstance) {
54                 // Get new instance
55                 $commandInstance = new CityHtmlResendLinkCommand();
56
57                 // Set the application instance
58                 $commandInstance->setResolverInstance($resolverInstance);
59
60                 // Return the prepared instance
61                 return $commandInstance;
62         }
63
64         /**
65          * Executes the given 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                 // Get user instance from registry
73                 $userInstance = Registry::getRegistry()->getInstance('user');
74
75                 // Get an application instance
76                 $applicationInstance = $this->getResolverInstance()->getApplicationInstance();
77
78                 // Get a RNG instance (Random Number Generator)
79                 $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class');
80
81                 // Generate a pseudo-random string
82                 $randomString = $rngInstance->randomString(255);
83
84                 // Get a crypto instance
85                 $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class');
86
87                 // Hash and encrypt the string
88                 $hashedString = $cryptoInstance->hashString($cryptoInstance->encryptString($randomString));
89
90                 // Update the user class
91                 $userInstance->updateDatabaseField(UserDatabaseWrapper::DB_COLUMN_CONFIRM_HASH, $hashedString);
92
93                 // Re-set config entry to mailer engine
94                 $this->getConfigInstance()->setConfigEntry('html_template_class', $this->getConfigInstance()->getConfigEntry('mail_template_class'));
95
96                 // Prepare the template engine
97                 $templateInstance = $this->prepareTemplateInstance($applicationInstance);
98
99                 // Assign the application data with the template engine
100                 $templateInstance->assignApplicationData($applicationInstance);
101
102                 // Get a mailer class
103                 $mailerInstance = ObjectFactory::createObjectByConfiguredName('mailer_class', array($templateInstance, $applicationInstance, 'resend_link'));
104
105                 // Set this mailer in our template engine
106                 $templateInstance->setMailerInstance($mailerInstance);
107
108                 // Add template variables we shall get
109                 $mailerInstance->addConfigTemplateVariable('base_url');
110                 $mailerInstance->addConfigTemplateVariable('admin_email');
111                 $mailerInstance->addValueTemplateVariable('confirm_hash');
112                 $mailerInstance->addValueTemplateVariable('username');
113                 $mailerInstance->addValueTemplateVariable('email');
114
115                 // Add the value instance for the confirmation hash
116                 $mailerInstance->addValueInstance('confirm_hash', $userInstance);
117                 $mailerInstance->addValueInstance('username', $userInstance);
118                 $mailerInstance->addValueInstance('email', $userInstance);
119
120                 // Add the recipient
121                 $mailerInstance->addRecipientByUserInstance($userInstance);
122
123                 // Use subject line from template
124                 $mailerInstance->useSubjectFromTemplate();
125
126                 // Send the email out
127                 $mailerInstance->deliverEmail($responseInstance);
128
129                 // Send out notification to admin (depends on settings)
130                 $mailerInstance->sendAdminNotification($responseInstance);
131         }
132
133         /**
134          * Adds extra filters to the given controller instance
135          *
136          * @param       $controllerInstance             A controller instance
137          * @param       $requestInstance                An instance of a class with an Requestable interface
138          * @return      void
139          */
140         public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) {
141                 // Filter for checking if account is unconfirmed
142                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('user_unconfirmed_filter'));
143         }
144 }