Start writing a new settings page based on hoplite.
[bugdar.git] / admin / index.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright (c)2002-2013 Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version 2 of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 namespace bugdar\admin;
23
24 use \bugdar;
25 use \hoplite\http;
26 use \hoplite\views;
27
28 chdir('../');
29 require_once './includes/init.php';
30
31 require_once HOPLITE_ROOT . '/http/output_filter.php';
32 require_once HOPLITE_ROOT . '/http/response_code.php';
33 require_once HOPLITE_ROOT . '/http/root_controller.php';
34 require_once HOPLITE_ROOT . '/http/url_map.php';
35 require_once HOPLITE_ROOT . '/views/pdo_cache_backend.php';
36 require_once HOPLITE_ROOT . '/views/template_loader.php';
37
38 require_once BUGDAR_ROOT . '/admin/login.php';
39
40 /**
41 * @implements \hoplite\http\RootControllerDelegate
42 */
43 class FrontController
44 {
45 /** @var \hoplite\http\RootController */
46 private $controller = NULL;
47
48 public function __construct(http\RootController $controller)
49 {
50 $this->controller = $controller;
51 }
52
53 public function OnInitialRequest(http\Request $request, http\Response $response)
54 {
55 $response->data['language'] = fetch_user_language();
56 }
57
58 public function WillRouteRequest(http\Request $request, http\Response $response)
59 {
60 // TODO(port): Write a new cookie function.
61 global $funct;
62
63 $cookie = COOKIE_PREFIX . 'adminsession';
64
65 if (can_perform('canadminpanel')) {
66 $stmt = bugdar::$db->Prepare("SELECT * FROM ". TABLE_PREFIX . "adminsession WHERE sessionid = ?");
67 $stmt->Execute(array(bugdar::$input->InputClean('c', $cookie, http\Input::TYPE_STR)));
68 $session = $stmt->FetchObject();
69
70 if ($session && $session->userid == bugdar::$user['userid'] && $session->dateline >= TIMENOW - 3600) {
71 // Renew the cookie.
72 $funct->cookie($cookie, $session->sessionid, false);
73 return;
74 }
75 }
76
77 $funct->cookie($cookie, NULL);
78 $this->LoginPage();
79 }
80
81 public function LoginPage()
82 {
83 $this->controller->InvokeAction(new LoginAction($this->controller));
84 }
85
86 public function WillInvokeAction(http\Action $action, http\Request $request, http\Response $response)
87 {
88 $templates = array('admin_header', 'admin_footer');
89 if ($action instanceof TemplatePreCaching)
90 $templates = array_merge($templates, $action->TemplateSet());
91 views\TemplateLoader::GetInstance()->PreCache($templates);
92 }
93 }
94
95 // Actions can implement this interface to have their required templates loaded
96 // with the common templates.
97 interface TemplatePreCaching
98 {
99 // Return an array of template names to cache.
100 public function TemplateSet();
101 }
102
103 $controller = new http\RootController($GLOBALS);
104 $controller->set_delegate(new FrontController($controller));
105
106 $url_map = new http\UrlMap($controller);
107 $url_map->set_file_loader(function($name, $value) {
108 require_once BUGDAR_ROOT . '/admin/' . $value;
109 return 'bugdar\\admin\\' . $name . 'Action';
110 });
111 $controller->set_url_map($url_map);
112
113 $url_map->set_map(array(
114 '' => 'home',
115 'settings' => 'settings',
116 ));
117
118 $output_filter = new http\OutputFilter($controller);
119 $controller->set_output_filter($output_filter);
120
121 $tpl_loader = views\TemplateLoader::GetInstance();
122 $tpl_loader->set_template_path(BUGDAR_ROOT . '/admin/templates/%s.tpl');
123 $tpl_loader->set_cache_backend(new views\PDOCacheBackend(
124 Bugdar::$db, // PDO object.
125 TABLE_PREFIX . 'template', // Database table.
126 'filename', // Name column.
127 'template', // Data column.
128 'timestamp' // Modified time column.
129 ));
130
131 $controller->Run();