Login and auth classes added. WARNING: All class config entries must end with _class!
[shipsimu.git] / inc / classes / main / filter / auth / class_UserAuthFilter.php
1 <?php
2 /**
3  * A filter for checking user permissions
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 UserAuthFilter extends BaseFilter implements Filterable {
25         // Exception constants
26         const EXCEPTION_AUTH_DATA_INVALID = 0x0a0;
27
28         /**
29          * The login method we shall choose
30          */
31         private $authMethod = "";
32
33         /**
34          * Protected constructor
35          *
36          * @return      void
37          */
38         protected function __construct () {
39                 // Call parent constructor
40                 parent::__construct(__CLASS__);
41
42                 // Set part description
43                 $this->setObjectDescription("A user authorization filter");
44
45                 // Create unique ID number
46                 $this->generateUniqueId();
47         }
48
49         /**
50          * Creates an instance of this filter class
51          *
52          * @return      $filterInstance         An instance of this filter class
53          */
54         public final static function createUserAuthFilter () {
55                 // Get a new instance
56                 $filterInstance = new UserAuthFilter();
57
58                 // Set default auth method
59                 $filterInstance->setDefaultAuthMethod();
60
61                 // Return the instance
62                 return $filterInstance;
63         }
64
65         /**
66          * Setter for default login method from config
67          *
68          * @return      void
69          */
70         protected function setDefaultAuthMethod () {
71                 $this->authMethod = $this->getConfigInstance()->readConfig('auth_method_class');
72         }
73
74         /**
75          * Executes the filter with given request and response objects
76          *
77          * @param       $requestInstance        An instance of a class with an Requestable interface
78          * @param       $responseInstance       An instance of a class with an Responseable interface
79          * @return      void
80          * @throws      UserAuthorizationException      If the auth login was not found or if it was invalid
81          */
82         public function execute (Requestable $requestInstance, Responseable $responseInstance) {
83                 // Then get an auth instance for checking and updating the auth cookies
84                 $authInstance = ObjectFactory::createObjectByName($this->authMethod, array($responseInstance));
85
86                 // Set request instance
87                 $authInstance->setRequestInstance($requestInstance);
88
89                 // Now, get the auth data for comparison
90                 $authLogin = $authInstance->getUserAuth();
91                 $authHash  = $authInstance->getPasswordAuth();
92
93                 // If one is empty stop here
94                 if ((empty($authLogin)) || (empty($authHash))) {
95                         // Destroy the auth data
96                         $authInstance->destroyAuthData();
97
98                         // Mark the request as invalid
99                         $requestInstance->requestIsValid(false);
100
101                         // Add fatal message
102                         $responseInstance->addFatalMessage('auth_data_incomplete');
103
104                         // Stop here
105                         throw new UserAuthorizationException($this, self::EXCEPTION_AUTH_DATA_INVALID);
106                 }
107
108                 // Destroy safely the auth instance
109                 unset($authInstance);
110         }
111 }
112
113 // [EOF]
114 ?>