]> git.mxchange.org Git - core.git/blob - framework/main/classes/resolver/action/class_BaseActionResolver.php
Continued:
[core.git] / framework / main / classes / resolver / action / class_BaseActionResolver.php
1 <?php
2 // Own namespace
3 namespace Org\Mxchange\CoreFramework\Resolver\Action;
4
5 // Import framework stuff
6 use Org\Mxchange\CoreFramework\Factory\ObjectFactory;
7 use Org\Mxchange\CoreFramework\Resolver\BaseResolver;
8
9 // Import SPL stuff
10 use \InvalidArgumentException;
11
12 /**
13  * A generic action resolver class
14  *
15  * @author              Roland Haeder <webmaster@shipsimu.org>
16  * @version             0.0.0
17  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team
18  * @license             GNU GPL 3.0 or any newer version
19  * @link                http://www.shipsimu.org
20  *
21  * This program is free software: you can redistribute it and/or modify
22  * it under the terms of the GNU General Public License as published by
23  * the Free Software Foundation, either version 3 of the License, or
24  * (at your option) any later version.
25  *
26  * This program is distributed in the hope that it will be useful,
27  * but WITHOUT ANY WARRANTY; without even the implied warranty of
28  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  * GNU General Public License for more details.
30  *
31  * You should have received a copy of the GNU General Public License
32  * along with this program. If not, see <http://www.gnu.org/licenses/>.
33  */
34 abstract class BaseActionResolver extends BaseResolver {
35         /**
36          * Validated action name
37          */
38         private $actionName = '';
39
40         /**
41          * Protected constructor
42          *
43          * @param       $className      Name of the class
44          * @return      void
45          */
46         protected function __construct ($className) {
47                 // Call parent constructor
48                 parent::__construct($className);
49         }
50
51         /**
52          * Setter for action name
53          *
54          * @param       $actionName     Last validated action name
55          * @return      void
56          */
57         protected final function setActionName ($actionName) {
58                 $this->actionName = (string) $actionName;
59         }
60
61         /**
62          * Getter for action name
63          *
64          * @return      $actionName     Last validated action name
65          */
66         public final function getActionName () {
67                 return $this->actionName;
68         }
69
70         /**
71          * Checks whether the given action is valid
72          *
73          * @param       $namespace              Namespace to look in
74          * @param       $actionName             The default action we shall execute
75          * @return      $isValid                Whether the given action is valid
76          * @throws      InvalidArgumentException        Thrown if given action is not set
77          */
78         public function isActionValid ($namespace, $actionName) {
79                 // Is a action set?
80                 if (empty($namespace)) {
81                         // Then thrown an exception here
82                         throw new InvalidArgumentException('Parameter "namespace" is empty');
83                 } elseif (empty($actionName)) {
84                         // Then thrown an exception here
85                         throw new InvalidArgumentException('Parameter "actionName" is empty');
86                 }
87
88                 // Create class name
89                 $className = sprintf(
90                         '%s\%s%sAction',
91                         $namespace,
92                         $this->getCapitalizedClassPrefix(),
93                         self::convertToClassName($actionName)
94                 );
95
96                 // Now, let us create the full name of the action class
97                 $this->setClassName($className);
98
99                 // Is this class already loaded?
100                 $isValid = class_exists($this->getClassName());
101
102                 // Is it valid?
103                 if ($isValid) {
104                         // Set action name
105                         $this->setActionName($actionName);
106                 }
107
108                 // Return the result
109                 return $isValid;
110         }
111
112         /**
113          * "Loads" current action and instances it if not yet cached
114          *
115          * @return      $actionInstance                 A loaded action instance
116          */
117         protected function loadAction () {
118                 // Init action instance
119                 $actionInstance = NULL;
120
121                 // Create class name
122                 $className = sprintf(
123                         '%s\%s%sAction',
124                         $this->getNamespace(),
125                         $this->getCapitalizedClassPrefix(),
126                         self::convertToClassName($actionName)
127                 );
128
129                 // ... and set it
130                 $this->setClassName($className);
131
132                 // Initiate the action
133                 $actionInstance = ObjectFactory::createObjectByName($this->getClassName(), array($this));
134
135                 // Return the result
136                 return $actionInstance;
137         }
138
139 }