f241061ceddff3a4ddd31cf7e26e1ae3ff412f7b
[core.git] / inc / classes / main / resolver / controller / console / class_ConsoleControllerResolver.php
1 <?php
2 /**
3  * A resolver for resolving controllers locally
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 ConsoleControllerResolver extends BaseControllerResolver implements ControllerResolver {
25         /**
26          * Last successfull resolved controller (name)
27          */
28         private $lastControllerName = '';
29
30         /**
31          * Last successfull resolved controller (instance)
32          */
33         private $lastControllerInstance = null;
34
35         /**
36          * Protected constructor
37          *
38          * @return      void
39          */
40         protected function __construct () {
41                 // Call parent constructor
42                 parent::__construct(__CLASS__);
43
44                 // Set prefix to "Console"
45                 $this->setControllerPrefix("Console");
46         }
47
48         /**
49          * Creates an instance of a resolver class with a given command
50          *
51          * @param       $controllerName                         The controller we shall resolve
52          * @param       $appInstance                            An instance of a manageable application helper class
53          * @return      $resolverInstance                       The prepared controller resolver instance
54          * @throws      EmptyVariableException          Thrown if default command is not set
55          * @throws      InvalidControllerException      Thrown if default controller is invalid
56          */
57         public final static function createConsoleControllerResolver ($controllerName, ManageableApplication $appInstance) {
58                 // Create the new instance
59                 $resolverInstance = new ConsoleControllerResolver();
60
61                 // Is the variable $controllerName set and the command is valid?
62                 if (empty($controllerName)) {
63                         // Then thrown an exception here
64                         throw new EmptyVariableException(array($resolverInstance, 'commandName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
65                 } elseif ($resolverInstance->isControllerValid($controllerName) === false) {
66                         // Invalid command found
67                         throw new InvalidControllerException(array($resolverInstance, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
68                 }
69
70                 // Set the application instance
71                 $resolverInstance->setApplicationInstance($appInstance);
72
73                 // Set command name
74                 $resolverInstance->setControllerName($controllerName);
75
76                 // Return the prepared instance
77                 return $resolverInstance;
78         }
79
80         /**
81          * Resolves the default controller of the given command
82          *
83          * @return      $controllerInstance             A controller instance for the default
84          *                                                                      command
85          * @throws      InvalidControllerInstanceException      Thrown if $controllerInstance
86          *                                                                                              is invalid
87          */
88         public function resolveController () {
89                 // Init variables
90                 $controllerName = '';
91                 $controllerInstance = null;
92
93                 // Get the command name 
94                 $controllerName = $this->getControllerName();
95
96                 // Get the command
97                 $controllerInstance = $this->loadController($controllerName);
98
99                 // And validate it
100                 if ((!is_object($controllerInstance)) || (!$controllerInstance instanceof Controller)) {
101                         // This command has an invalid instance!
102                         throw new InvalidControllerInstanceException(array($this, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
103                 } // END - if
104
105                 // Set last controller
106                 $this->lastControllerInstance = $controllerInstance;
107
108                 // Return the maybe resolved instance
109                 return $controllerInstance;
110         }
111
112         /**
113          * "Loads" a given controller and instances it if not yet cached. If the
114          * controller was not found one of the default controllers will be used
115          * depending on wether news shall be displayed.
116          *
117          * @param       $controllerName                 A controller name we shall look for
118          * @return      $controllerInstance             A loaded controller instance
119          * @throws      InvalidControllerException      Thrown if even the requested
120          *                                                                              controller class is missing (bad!)
121          */
122         private function loadController ($controllerName) {
123                 // Cache default command
124                 $defaultController = $this->getConfigInstance()->readConfig('default_console_command');
125
126                 // Init controller instance
127                 $controllerInstance = null;
128
129                 // Default controller
130                 $this->setClassName('ConsoleDefaultController');
131
132                 // Generate the class name
133                 //* DEBUG: */ echo __METHOD__.": Controller=".$controllerName;
134                 if ($controllerName != $defaultController) {
135                         // Create controller class name
136                         $className = 'Console' . $this->convertToClassName($controllerName) . 'Controller';
137
138                         // ... and set it
139                         $this->setClassName($className);
140                 } elseif ($this->getConfigInstance()->readConfig('page_with_news') == $this->getApplicationInstance()->getRequestInstance()->getRequestElement('command')) {
141                         // Yes, display news in home then set default controller with news
142                         $this->setClassName('ConsoleDefaultNewsController');
143                 } else {
144                         // No news at home page or non-news page
145                         $this->setClassName('ConsoleDefaultController');
146                 }
147                 //* DEBUG: */ echo ", controller=".$this->getClassName()."<br />\n";
148
149                 // Is this class loaded?
150                 if (!class_exists($this->getClassName())) {
151                         // Throw an exception here
152                         throw new InvalidControllerException(array($this, $controllerName), self::EXCEPTION_INVALID_CONTROLLER);
153                 } // END - if
154
155                 // Set default resolver config name
156                 $resolverConfigEntry = '';
157
158                 // Try to read a config entry for our resolver including controller name... ;-)
159                 try {
160                         // Create the resolver name
161                         $resolverConfigEntry = sprintf("console_cmd_%s_resolver_class", strtolower($controllerName));
162
163                         // Get the config, this will throw an exception if there is no special command resolver
164                         $resolverClass = $this->getConfigInstance()->readConfig($resolverConfigEntry);
165                 } catch (ConfigEntryNotFoundException $e) {
166                         // Use default resolver entry
167                         // @TODO Maybe we need to log this?
168                         $resolverConfigEntry = 'console_cmd_resolver_class';
169                 }
170
171                 // Initiate the resolver and controller
172                 $resolverInstance = ObjectFactory::createObjectByConfiguredName(
173                         $resolverConfigEntry,
174                         array(
175                                 $controllerName,
176                                 $this->getApplicationInstance()
177                         )
178                 );
179                 $controllerInstance = ObjectFactory::createObjectByName(
180                         $this->getClassName(),
181                         array($resolverInstance)
182                 );
183
184                 // Return the result
185                 return $controllerInstance;
186         }
187 }
188
189 // [EOF]
190 ?>