a44718c393345b6146ba0bc85ff8e8dac76d88dd
[shipsimu.git] / application / ship-simu / main / user / extended / class_ShipSimuMember.php
1 <?php
2 /**
3  * A special member class 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 ShipSimuMember extends ShipSimuBaseUser implements ManageableMember {
25         /**
26          * Protected constructor
27          *
28          * @param       $className      Name of the class
29          * @return      void
30          */
31         protected function __construct ($className = __CLASS__) {
32                 // Call parent constructor
33                 parent::__construct($className);
34         }
35
36         /**
37          * Destructor for e.g. flushing pending updates to the database
38          *
39          * @return      void
40          */
41         public function __destruct () {
42                 // Flush any updated entries to the database
43                 $this->flushPendingUpdates();
44
45                 // Call parent destructor
46                 parent::__destruct();
47         }
48
49         /**
50          * Creates an instance of this user class by a provided username. This
51          * factory method will check if the username is already taken and if not
52          * so it will throw an exception.
53          *
54          * @param       $userName               Username we need a class instance for
55          * @return      $userInstance   An instance of this user class
56          * @throws      UsernameMissingException        If the username does not exist
57          */
58         public final static function createMemberByUsername ($userName) {
59                 // Get a new instance
60                 $userInstance = new ShipSimuMember();
61
62                 // Set the username
63                 $userInstance->setUserName($userName);
64
65                 // Check if the username exists
66                 if (!$userInstance->ifUsernameExists()) {
67                         // Throw an exception here
68                         throw new UsernameMissingException(array($userInstance, $userName), self::EXCEPTION_USERNAME_NOT_FOUND);
69                 }
70
71                 // Return the instance
72                 return $userInstance;
73         }
74
75         /**
76          * Creates an instance of this user class by a provided email address. This
77          * factory method will not check if the email address is there.
78          *
79          * @param       $email                  Email address of the user
80          * @return      $userInstance   An instance of this user class
81          */
82         public final static function createMemberByEmail ($email) {
83                 // Get a new instance
84                 $userInstance = new ShipSimuMember();
85
86                 // Set the username
87                 $userInstance->setEmail($email);
88
89                 // Return the instance
90                 return $userInstance;
91         }
92
93         /**
94          * Creates a user by a given request instance
95          *
96          * @param       $requestInstance        An instance of a Requestable class
97          * @return      $userInstance           An instance of this user class
98          */
99         public final static function createMemberByRequest (Requestable $requestInstance) {
100                 // Determine if by email or username
101                 if (!is_null($requestInstance->getRequestElement('username'))) {
102                         // Username supplied
103                         $userInstance = self::createMemberByUserName($requestInstance->getRequestElement('username'));
104                 } elseif (!is_null($requestInstance->getRequestElement('email'))) {
105                         // Email supplied
106                         $userInstance = self::createMemberByEmail($requestInstance->getRequestElement('email'));
107                 } else {
108                         // Unsupported mode
109                         $userInstance = new ShipSimuMember();
110                         $userInstance->partialStub("We need to add more ways of creating user classes here.");
111                         $userInstance->debugBackTrace();
112                         exit();
113                 }
114
115                 // Return the prepared instance
116                 return $userInstance;
117         }
118
119         /**
120          * Updates the last activity timestamp and last performed action in the
121          * database result. You should call flushPendingUpdates() to flush these updates
122          * to the database layer.
123          *
124          * @param       $requestInstance        A requestable class instance
125          * @return      void
126          */
127         public function updateLastActivity (Requestable $requestInstance) {
128                 // Set last action
129                 $lastAction = $requestInstance->getRequestElement('action');
130
131                 // If there is no action use the default on
132                 if (is_null($lastAction)) {
133                         $lastAction = $this->getConfigInstance()->readConfig('login_default_action');
134                 } // END - if
135
136                 // Get a critieria instance
137                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
138
139                 // Add search criteria
140                 $searchInstance->addCriteria(UserDatabaseWrapper::DB_COLUMN_USERNAME, $this->getUserName());
141                 $searchInstance->setLimit(1);
142
143                 // Now get another criteria
144                 $updateInstance = ObjectFactory::createObjectByConfiguredName('update_criteria_class');
145
146                 // And add our both entries
147                 $updateInstance->addCriteria('last_activity', date("Y-m-d H:i:s", time()));
148                 $updateInstance->addCriteria('last_action', $lastAction);
149
150                 // Add the search criteria for searching for the right entry
151                 $updateInstance->setSearchInstance($searchInstance);
152
153                 // Remember the update in database result
154                 $this->getResultInstance()->add2UpdateQueue($updateInstance);
155         }
156
157         /**
158          * Flushs all pending updates to the database layer
159          *
160          * @return      void
161          */
162         public function flushPendingUpdates () {
163                 // Do we have data to update?
164                 if ($this->getResultInstance()->ifDataNeedsFlush()) {
165                         // Get a database wrapper
166                         $wrapperInstance = ObjectFactory::createObjectByConfiguredName('user_db_wrapper_class');
167
168                         // Yes, then send the whole result to the database layer
169                         $wrapperInstance->doUpdateByResult($this->getResultInstance());
170                 } // END - if
171         }
172 }
173
174 // [EOF]
175 ?>