Continued:
[core.git] / inc / main / classes / controller / html / login / class_HtmlLoginAreaController.php
1 <?php
2 // Own namespace
3 namespace CoreFramework\Controller\Login;
4
5 // Import framework stuff
6 use CoreFramework\Factory\ObjectFactory;
7 use CoreFramework\Request\Requestable;
8
9 /**
10  * Controller for login area with news
11  *
12  * @author              Roland Haeder <webmaster@shipsimu.org>
13  * @version             0.0.0
14  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
15  * @license             GNU GPL 3.0 or any newer version
16  * @link                http://www.shipsimu.org
17  *
18  * This program is free software: you can redistribute it and/or modify
19  * it under the terms of the GNU General Public License as published by
20  * the Free Software Foundation, either version 3 of the License, or
21  * (at your option) any later version.
22  *
23  * This program is distributed in the hope that it will be useful,
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  * GNU General Public License for more details.
27  *
28  * You should have received a copy of the GNU General Public License
29  * along with this program. If not, see <http://www.gnu.org/licenses/>.
30  */
31 class HtmlLoginAreaController extends BaseController implements Controller {
32         /**
33          * Protected constructor
34          *
35          * @return      void
36          */
37         protected function __construct () {
38                 // Call parent constructor
39                 parent::__construct(__CLASS__);
40         }
41
42         /**
43          * Creates an instance of this class
44          *
45          * @param       $resolverInstance               An instance of a command resolver class
46          * @return      $controllerInstance             A prepared instance of this class
47          * @todo        Add some morer filters to this controller
48          */
49         public static final function createHtmlLoginAreaController (CommandResolver $resolverInstance) {
50                 // Create the instance
51                 $controllerInstance = new HtmlLoginAreaController();
52
53                 // Set the command resolver
54                 $controllerInstance->setResolverInstance($resolverInstance);
55
56                 // User auth filter
57                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('user_auth_filter'));
58
59                 // User update filter
60                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('user_update_filter'));
61
62                 // News fetcher filter
63                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('news_download_filter'));
64
65                 // News proccess/display-preparation
66                 $controllerInstance->addPreFilter(ObjectFactory::createObjectByConfiguredName('news_process_filter'));
67
68                 // Return the prepared instance
69                 return $controllerInstance;
70         }
71
72         /**
73          * Handles the given request and response
74          *
75          * @param       $requestInstance        An instance of a Requestable class
76          * @param       $responseInstance       An instance of a Responsable class
77          * @return      void
78          */
79         public function handleRequest (Requestable $requestInstance, Responseable $responseInstance) {
80                 /*
81                  * Generic execute of the command: pre and post filters with redirect
82                  * but request becomes valid after pre-filters run.
83                  */
84                 $this->genericHanleRequestLoginAreaFailedRedirect($requestInstance, $responseInstance);
85         }
86
87 }