]> git.mxchange.org Git - city.git/blob - application/city/classes/manager/city/class_CityManager.php
Updated 'core' + renamed main->classes
[city.git] / application / city / classes / manager / city / class_CityManager.php
1 <?php
2 /**
3  * A City manager
4  *
5  * @author              Roland Haeder <webmaster@ship-simu.org>
6  * @version             0.0.0
7  * @copyright   Copyright (c) 2015 City 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 CityManager extends BaseManager implements ManageableCity {
25         /**
26          * Protected constructor
27          *
28          * @return      void
29          */
30         protected function __construct () {
31                 // Call parent constructor
32                 parent::__construct(__CLASS__);
33         }
34
35         /**
36          * Creates an instance of this class
37          *
38          * @return      $managerInstance        An instance of a ManageableCity class
39          */
40         public final static function createCityManager () {
41                 // Get new instance
42                 $managerInstance = new CityManager();
43
44                 // Get database wrapper
45                 $wrapperInstance = DatabaseWrapperFactory::createWrapperByConfiguredName('city_info_db_wrapper_class');
46
47                 // And set it here
48                 $managerInstance->setWrapperInstance($wrapperInstance);
49
50                 // Return the prepared instance
51                 return $managerInstance;
52         }
53
54         /**
55          * Checks whether the current user has already founded a city
56          *
57          * @return      $isFounded      Whether the current user has already founded a city
58          */
59         public function isCityAlreadyFounded () {
60                 // Check if the currently set user has already founded a city
61                 $isFounded = $this->getWrapperInstance()->ifUserHasFoundedCity();
62
63                 // Return result
64                 return $isFounded;
65         }
66
67         /**
68          * Checks whether the given city name is already taken
69          *
70          * @para        $cityName       Name of city
71          * @return      $isTaken        Whether the given city name is already taken
72          */
73         public function ifCityNameExists ($cityName) {
74                 // Check if the given city name is taken
75                 $isTaken = $this->getWrapperInstance()->ifCityExists($cityName);
76
77                 // Return result
78                 return $isTaken;
79         }
80
81         /**
82          * Founds the first city. A dummy region will also be created
83          *
84          * @return      void
85          */
86         public function foundFirstCity () {
87                 // Check on request instance and 'city_name' element
88                 assert($this->getRequestInstance() instanceof Requestable);
89                 assert($this->getRequestInstance()->isRequestElementSet(CityInformationDatabaseWrapper::DB_COLUMN_CITY_NAME));
90
91                 // Get city name
92                 $cityName = $this->getRequestInstance()->getRequestElement(CityInformationDatabaseWrapper::DB_COLUMN_CITY_NAME);
93
94                 // Some pre-checks
95                 assert(!$this->isCityAlreadyFounded());
96                 assert(!$this->ifCityNameExists($cityName));
97
98                 // Get region manager
99                 $managerInstance = ManagerFactory::createManagerByType('region');
100
101                 // There should be no region created
102                 assert(!$managerInstance->ifUserHasCreatedRegion());
103
104                 // Create first region and get back whole result
105                 $regionResultInstance = $managerInstance->createFirstRegion();
106
107                 // Get current entry
108                 $regionData = $regionResultInstance->current();
109
110                 // Add region id from it
111                 $this->getRequestInstance()->setRequestElement(CityInformationDatabaseWrapper::DB_COLUMN_CITY_REGION_ID, $regionData[RegionInformationDatabaseWrapper::DB_COLUMN_REGION_ID]);
112
113                 // Then create the first city
114                 $this->getWrapperInstance()->createCityByRequest($this->getRequestInstance());
115         }
116 }
117
118 // [EOF]
119 ?>