]> git.mxchange.org Git - core.git/blob - inc/main/classes/commands/html/class_HtmlResendLinkCommand.php
Continued:
[core.git] / inc / main / classes / commands / html / class_HtmlResendLinkCommand.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Command\Guest;
4
5 /**
6  * A command class for resending the confirmation link
7  *
8  * @author              Roland Haeder <webmaster@shipsimu.org>
9  * @version             0.0.0
10  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
11  * @license             GNU GPL 3.0 or any newer version
12  * @link                http://www.shipsimu.org
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program. If not, see <http://www.gnu.org/licenses/>.
26  */
27 class HtmlResendLinkCommand extends BaseCommand implements Commandable {
28         /**
29          * Protected constructor
30          *
31          * @return      void
32          */
33         protected function __construct () {
34                 // Call parent constructor
35                 parent::__construct(__CLASS__);
36         }
37
38         /**
39          * Creates an instance of this class
40          *
41          * @param       $resolverInstance       An instance of a command resolver class
42          * @return      $commandInstance        An instance a prepared command class
43          */
44         public static final function createHtmlResendLinkCommand (CommandResolver $resolverInstance) {
45                 // Get new instance
46                 $commandInstance = new HtmlResendLinkCommand();
47
48                 // Set the application instance
49                 $commandInstance->setResolverInstance($resolverInstance);
50
51                 // Return the prepared instance
52                 return $commandInstance;
53         }
54
55         /**
56          * Executes the given command with given request and response objects
57          *
58          * @param       $requestInstance        An instance of a class with an Requestable interface
59          * @param       $responseInstance       An instance of a class with an Responseable interface
60          * @return      void
61          */
62         public function execute (Requestable $requestInstance, Responseable $responseInstance) {
63                 // Get user instance from registry
64                 $userInstance = Registry::getRegistry()->getInstance('user');
65
66                 // Get an application instance
67                 $applicationInstance = $this->getResolverInstance()->getApplicationInstance();
68
69                 // Get a RNG instance (Random Number Generator)
70                 $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class');
71
72                 // Generate a pseudo-random string
73                 $randomString = $rngInstance->randomString(255);
74
75                 // Get a crypto instance
76                 $cryptoInstance = ObjectFactory::createObjectByConfiguredName('crypto_class');
77
78                 // Hash and encrypt the string
79                 $hashedString = $cryptoInstance->hashString($cryptoInstance->encryptString($randomString));
80
81                 // Update the user class
82                 $userInstance->updateDatabaseField(UserDatabaseWrapper::DB_COLUMN_CONFIRM_HASH, $hashedString);
83
84                 // Re-set config entry to mailer engine
85                 $this->getConfigInstance()->setConfigEntry('html_template_class', $this->getConfigInstance()->getConfigEntry('mail_template_class'));
86
87                 // Prepare the template engine
88                 $templateInstance = $this->prepareTemplateInstance($applicationInstance);
89
90                 // Assign the application data with the template engine
91                 $templateInstance->assignApplicationData($applicationInstance);
92
93                 // Get a mailer class
94                 $mailerInstance = ObjectFactory::createObjectByConfiguredName('mailer_class', array($templateInstance, $applicationInstance, 'resend_link'));
95
96                 // Set this mailer in our template engine
97                 $templateInstance->setMailerInstance($mailerInstance);
98
99                 // Add template variables we shall get
100                 $mailerInstance->addConfigTemplateVariable('base_url');
101                 $mailerInstance->addConfigTemplateVariable('admin_email');
102                 $mailerInstance->addValueTemplateVariable('confirm_hash');
103                 $mailerInstance->addValueTemplateVariable('username');
104                 $mailerInstance->addValueTemplateVariable('email');
105
106                 // Add the value instance for the confirmation hash
107                 $mailerInstance->addValueInstance('confirm_hash', $userInstance);
108                 $mailerInstance->addValueInstance('username', $userInstance);
109                 $mailerInstance->addValueInstance('email', $userInstance);
110
111                 // Add the recipient
112                 $mailerInstance->addRecipientByUserInstance($userInstance);
113
114                 // Use subject line from template
115                 $mailerInstance->useSubjectFromTemplate();
116
117                 // Send the email out
118                 $mailerInstance->deliverEmail($responseInstance);
119
120                 // Send out notification to admin (depends on settings)
121                 $mailerInstance->sendAdminNotification($responseInstance);
122         }
123
124         /**
125          * Adds extra filters to the given controller instance
126          *
127          * @param       $controllerInstance             A controller instance
128          * @param       $requestInstance                An instance of a class with an Requestable interface
129          * @return      void
130          */
131         public function addExtraFilters (Controller $controllerInstance, Requestable $requestInstance) {
132                 // Filter for checking if account is unconfirmed
133                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('user_unconfirmed_filter'));
134         }
135
136 }