Marius Burkard
2016-04-20 4569cae57f127afd093794310ccd290d2d9fdf36
commit | author | age
60bc9c 1 <?php
T 2
3 /*
4 Copyright (c) 2007, Till Brehm, projektfarm Gmbh
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without modification,
8 are permitted provided that the following conditions are met:
9
10     * Redistributions of source code must retain the above copyright notice,
11       this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright notice,
13       this list of conditions and the following disclaimer in the documentation
14       and/or other materials provided with the distribution.
15     * Neither the name of ISPConfig nor the names of its contributors
16       may be used to endorse or promote products derived from this software without
17       specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
b1a6a5 31 require_once '../lib/config.inc.php';
MC 32 require_once '../lib/app.inc.php';
60bc9c 33
082cf7 34 /*
60bc9c 35 $module = $_REQUEST["s_mod"];
T 36 $page = $_REQUEST["s_pg"];
082cf7 37 */
T 38
b79c5b 39 $module = 'dashboard';
TB 40 $page = 'dashboard';
60bc9c 41
T 42 if(!preg_match("/^[a-z]{2,20}$/i", $module)) die('module name contains unallowed chars.');
43 if(!preg_match("/^[a-z]{2,20}$/i", $page)) die('page name contains unallowed chars.');
44
45 if(is_file(ISPC_WEB_PATH."/$module/$page.php")) {
b1a6a5 46
MC 47     include_once ISPC_WEB_PATH."/$module/$page.php";
60bc9c 48
T 49     $classname = $module.'_'.$page;
50     $page = new $classname();
b1a6a5 51
60bc9c 52     $content = $page->render();
T 53     if($page->status == 'OK') {
54         echo $content;
55     } elseif($page->status == 'REDIRECT') {
b1a6a5 56         $target_parts = explode(':', $page->target);
60bc9c 57         $module = $target_parts[0];
T 58         $page = $target_parts[1];
59         if(!preg_match("/^[a-z]{2,20}$/i", $module)) die('target module name contains unallowed chars.');
60         if(!preg_match("/^[a-z]{2,20}$/i", $page)) die('target page name contains unallowed chars.');
b1a6a5 61
60bc9c 62         if(is_file(ISPC_WEB_PATH."/$module/$page.php")) {
b1a6a5 63             include_once ISPC_WEB_PATH."/$module/$page.php";
MC 64
60bc9c 65             $classname = $module.'_'.$page;
T 66             $page = new $classname();
b1a6a5 67
60bc9c 68             $content = $page->render();
T 69             if($page->status == 'OK') {
70                 echo $content;
71             }
72         }
b1a6a5 73
60bc9c 74     }
b1a6a5 75
60bc9c 76 } elseif (is_array($_SESSION["s"]['user']) or is_array($_SESSION["s"]["module"])) {
T 77     // If the user is logged in, we try to load the default page of the module
78     die('- error -');
79 } else {
80     die('Page does not exist.');
81 }
82
b1a6a5 83 ?>