1b5fa1c42c2789647ca278e56ec3c122e3225f58
[shipsimu.git] / inc / classes / main / resolver / controller / class_BaseControllerResolver.php
1 <?php
2 /**
3  * A generic controller resolver class
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 BaseControllerResolver extends BaseResolver {
25         /**
26          * Prefix for local, remote or other resolver
27          */
28         private $controllerPrefix = "";
29
30         /**
31          * Validated controller name
32          */
33         private $controllerName = "";
34
35         /**
36          * Protected constructor
37          *
38          * @param       $className      Name of the real class
39          * @return      void
40          */
41         protected function __construct ($className) {
42                 // Call parent constructor
43                 parent::__construct($className);
44         }
45
46         /**
47          * Setter for controller prefix
48          *
49          * @param       $controllerPrefix       Last validated controllerPrefix
50          * @return      void
51          */
52         protected final function setControllerPrefix ($controllerPrefix) {
53                 $this->controllerPrefix = $controllerPrefix;
54         }
55
56         /**
57          * Setter for controller name
58          *
59          * @param       $controllerName Last validated controller name
60          * @return      void
61          */
62         protected final function setControllerName ($controllerName) {
63                 $this->controllerName = $controllerName;
64         }
65
66         /**
67          * Getter for controller name
68          *
69          * @return      $controllerName Last validated controller name
70          */
71         protected final function getControllerName () {
72                 return $this->controllerName;
73         }
74
75         /**
76          * Checks wether the given controller is valid
77          *
78          * @param       $controllerName The default controller we shall execute
79          * @return      $isValid                Wether the given controller is valid
80          * @throws      EmptyVariableException  Thrown if the given controller is not set
81          */
82         public function isControllerValid ($controllerName) {
83                 // By default nothing shall be valid
84                 $isValid = false;
85
86                 // Is a controller set?
87                 if (empty($controllerName)) {
88                         // Then thrown an exception here
89                         throw new EmptyVariableException(array($this, 'controllerName'), self::EXCEPTION_UNEXPECTED_EMPTY_STRING);
90                 } // END - if
91
92                 // Now, let us create the full name of the controller class
93                 $this->setClassName(sprintf("%s%sController",
94                         $this->controllerPrefix,
95                         $this->convertToClassName($controllerName)
96                 ));
97
98                 // Try it hard to get an controller
99                 while (!$isValid) {
100                         // Is this class already loaded?
101                         if (class_exists($this->getClassName())) {
102                                 // This class does exist. :-)
103                                 $isValid = true;
104                         } elseif (($this->getClassName() != "WebDefaultController") && ($this->getClassName() != "WebDefaultNewsController")) {
105                                 // Do we have news?
106                                 if ($this->getConfigInstance()->readConfig('page_with_news') == $this->getApplicationInstance()->getRequestInstance()->getRequestElement('page')) {
107                                         // Yes, display news in home then set default controller with news
108                                         $this->setClassName("WebDefaultNewsController");
109                                 } else {
110                                         // No news at "home" page or non-news page
111                                         $this->setClassName("WebDefaultController");
112                                 }
113                         } else {
114                                 // All is tried, give it up here
115                                 throw new DefaultControllerException($this, self::EXCEPTION_DEFAUL_CONTROLLER_GONE);
116                         }
117                 } // END - while
118
119                 // Debug output
120                 //* DEBUG: */ $this->debugBackTrace();
121
122                 // Return the result
123                 return $isValid;
124         }
125 }
126
127 // [EOF]
128 ?>