]> git.mxchange.org Git - shipsimu.git/blob - application/ship-simu/main/registration/class_ShipSimuRegistration.php
Crypto helper and RNG added (weak!)
[shipsimu.git] / application / ship-simu / main / registration / class_ShipSimuRegistration.php
1 <?php
2 /**
3  * A user registration specially for Ship-Simu
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright(c) 2007, 2008 Roland Haeder, this is free software
8  * @license             GNU GPL 3.0 or any newer version
9  * @link                http://www.ship-simu.org
10  *
11  * This program is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation, either version 3 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program. If not, see <http://www.gnu.org/licenses/>.
23  */
24 class ShipSimuRegistration extends BaseRegistration {
25         /**
26          * Hashed password
27          */
28         private $hashedPassword = "";
29
30         /**
31          * Private constructor
32          *
33          * @return      void
34          */
35         protected function __construct () {
36                 // Call parent constructor
37                 parent::__construct(__CLASS__);
38
39                 // Set part description
40                 $this->setObjectDescription("Ship-Simu registration class");
41
42                 // Create unique ID number
43                 $this->createUniqueID();
44         }
45
46         /**
47          * Create a new instance
48          *
49          * @return      $registrationInstance   An instance of this registration class
50          */
51         public final static function createShipSimuRegistration () {
52                 // Get a new instance
53                 $registrationInstance = new ShipSimuRegistration();
54
55                 // And return it
56                 return $registrationInstance;
57         }
58
59         /**
60          * Encrypt the given request key or throw an exception if the key was not
61          * found in the request
62          *
63          * @param       $requestKey             Key in request class
64          * @return      void
65          */
66         public function encryptPassword ($requestKey) {
67                 // Check if the password is found in the request
68                 if ($this->getRequestInstance()->isRequestElementSet($requestKey)) {
69                         // So encrypt the password and store it for later usage in
70                         // the request
71                         $this->hashedPassword = ObjectFactory::createObjectByConfiguredName('crypto_heler')->hashPassword($this->getRequestInstance()->getRequestElement($requestKey));
72                         $this->getRequestInstance()->setRequestElement('pass_hash', $this->hashedPassword);
73                 }
74         }
75
76         /**
77          * Perform things like informing assigned affilates about new registration
78          * before registration
79          *
80          * @return      void
81          */
82         public function doPreRegistration () {
83                 $this->partialStub();
84         }
85
86         /**
87          * Registers the new user account by insterting the request data into the
88          * database and paying some start credits or throw exceptions if this fails
89          *
90          * @return      void
91          */
92         public function registerNewUser () {
93                 $this->partialStub();
94         }
95
96         /**
97          * Perform things like notifying partner websites after registration is done
98          *
99          * @return      void
100          */
101         public function doPostRegistration () {
102                 $this->partialStub();
103         }
104
105         /**
106          * Do the action which is required after all registration steps are done.
107          * This can be a simple redirect to another webpage or displaying a message
108          * to the user. Or this can be a login step into the newly created account.
109          *
110          * @return      void
111          */
112         public function doPostAction () {
113                 $this->partialStub();
114         }
115 }
116
117 //
118 ?>