0e913d4e88d2232dbad9d75ab7eea435d63bb4c6
[core.git] / inc / classes / main / points / class_UserPoints.php
1 <?php
2 /**
3  * A class for handling user points which can be real or Internet currency
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team
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 UserPoints extends BaseFrameworkSystem implements Registerable, BookablePoints {
25         /**
26          * Amount of points
27          */
28         private $amount = 0;
29
30         /**
31          * Protected constructor
32          *
33          * @return      void
34          */
35         protected function __construct () {
36                 // Call parent constructor
37                 parent::__construct(__CLASS__);
38         }
39
40         /**
41          * Creates an instance of this points class
42          *
43          * @param       $userInstance           An instance of a user class
44          * @return      $pointsInstance         An instance of this class
45          */
46         public final static function createUserPoints (ManageableAccount $userInstance) {
47                 // Get a new instance
48                 $pointsInstance = new UserPoints();
49
50                 // Set user instance
51                 $pointsInstance->setUserInstance($userInstance);
52
53                 // Return instance
54                 return $pointsInstance;
55         }
56
57         /**
58          * Setter for amount
59          *
60          * @param       $amount         Amount of points to store
61          * @return      void
62          */
63         public final function setAmount ($amount) {
64                 $this->amount = (float) $amount;
65         }
66
67         /**
68          * Getter for amount
69          *
70          * @return      $amount         Amount of points to store
71          */
72         public final function getAmount () {
73                 return $this->amount;
74         }
75
76         /**
77          * Checks wether the user has the required amount of points left for the specified action
78          *
79          * @param       $action                 The action or configuration entry plus prefix the user wants to perform
80          * @return      $hasRequired    Wether the user has the required points
81          * @todo        Finish loading part of points
82          */
83         public function ifUserHasRequiredPoints ($action) {
84                 // Default is that everyone is poor... ;-)
85                 $hasRequired = false;
86
87                 // Get the required points entry
88                 $requiredPoints = $this->getConfigInstance()->getConfigEntry($action . '_action_points');
89
90                 // Now get a search criteria and set the user's name as criteria
91                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
92                 $searchInstance->addCriteria(UserPointsDatabaseWrapper::DB_COLUMN_POINTS_UID, $this->getUserInstance()->getUserId());
93                 $searchInstance->setLimit(1);
94
95                 // Get a wrapper instance
96                 $wrapperInstance = ObjectFactory::createObjectByConfiguredName('user_points_db_wrapper_class');
97
98                 // Get result back
99                 $resultInstance = $wrapperInstance->doSelectByCriteria($searchInstance);
100
101                 // Do we have an entry?
102                 if ($resultInstance->next()) {
103                         // @TODO Load points here
104                         $this->partialStub("Load points here for comparison.");
105                 } // END - if
106
107                 // Return the result
108                 return $hasRequired;
109         }
110
111         /**
112          * "Books" the given points amount on the current user's account
113          *
114          * @param       $amount         Amount of points we shall book
115          * @return      void
116          */
117         function bookPointsDirectly ($amount) {
118                 // Get a critieria instance
119                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
120
121                 // Add search criteria
122                 $searchInstance = ObjectFactory::createObjectByConfiguredName('search_criteria_class');
123                 $searchInstance->addCriteria(UserPointsDatabaseWrapper::DB_COLUMN_POINTS_UID, $this->getUserInstance()->getUserId());
124                 $searchInstance->setLimit(1);
125
126                 // Get a wrapper instance
127                 $wrapperInstance = ObjectFactory::createObjectByConfiguredName('user_points_db_wrapper_class');
128
129                 // Get result back
130                 $resultInstance = $wrapperInstance->doSelectByCriteria($searchInstance);
131
132                 // Do we have an entry?
133                 if ($resultInstance->next()) {
134                         // Get the entry
135                         $entry = $resultInstance->current();
136
137                         // Add the points
138                         $amount += $entry[UserPointsDatabaseWrapper::DB_COLUMN_POINTS];
139
140                         // Now get another criteria
141                         $updateInstance = ObjectFactory::createObjectByConfiguredName('update_criteria_class');
142
143                         // And add our both entries
144                         $updateInstance->addCriteria(UserPointsDatabaseWrapper::DB_COLUMN_POINTS, $amount);
145
146                         // Add the search criteria for searching for the right entry
147                         $updateInstance->setSearchInstance($searchInstance);
148
149                         // Set wrapper class name
150                         $updateInstance->setWrapperConfigEntry('user_points_db_wrapper_class');
151
152                         // Remember the update in database result
153                         $resultInstance->add2UpdateQueue($updateInstance);
154
155                         // Set it
156                         $this->setResultInstance($resultInstance);
157                 } else {
158                         // Set the amount in class
159                         $this->setAmount($amount);
160
161                         // Create the new entry
162                         $wrapperInstance->insertUserPoints($this);
163                 }
164         }
165
166         /**
167          * Adds registration elements to a given dataset instance
168          *
169          * @param       $criteriaInstance       An instance of a storeable criteria
170          * @return      void
171          */
172         public function addElementsToDataSet (StoreableCriteria $criteriaInstance) {
173                 // Add user id
174                 $criteriaInstance->addCriteria(UserPointsDatabaseWrapper::DB_COLUMN_POINTS_UID, $this->getUserInstance()->getUserId());
175
176                 // Add amount
177                 $criteriaInstance->addCriteria(UserPointsDatabaseWrapper::DB_COLUMN_POINTS, $this->getAmount());
178         }
179 }
180
181 // [EOF]
182 ?>