forked from weah/Raspcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
114 lines (97 loc) · 3.54 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?php
namespace lib;
spl_autoload_extensions('.php');
spl_autoload_register();
session_start();
require 'config.php';
// authentification
if (isset($_SESSION['authentificated']) && $_SESSION['authentificated']) {
if (empty($_GET['page'])) $_GET['page'] = 'home';
$_GET['page'] = htmlspecialchars($_GET['page']);
$_GET['page'] = str_replace("\0", '', $_GET['page']);
$_GET['page'] = str_replace(DIRECTORY_SEPARATOR, '', $_GET['page']);
$display = true;
function is_active($page) {
if ($page == $_GET['page'])
echo ' class="active"';
}
}
else {
$_GET['page'] = 'login';
$display = false;
}
$page = 'pages'. DIRECTORY_SEPARATOR.$_GET['page']. '.php';
$page = file_exists($page) ? $page : 'pages'. DIRECTORY_SEPARATOR .'404.php';
?><!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Raspcontrol</title>
<meta name="author" content="Nicolas Devenet" />
<meta name="robots" content="noindex, nofollow, noarchive" />
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico" />
<link rel="icon" type="image/png" href="img/favicon.ico" />
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen" />
<link href="css/bootstrap-responsive.min.css" rel="stylesheet" />
<link href="css/raspcontrol.css" rel="stylesheet" media="screen" />
</head>
<body>
<header>
<div class="container">
<a href="<?php echo INDEX; ?>"><img src="img/raspcontrol.png" alt="rbpi" /></a>
<h1><a href="<?php echo INDEX; ?>">Raspcontrol</a></h1>
<h2>The Raspberry Pi Control Center</h2>
</div>
</header>
<?php if ($display) : ?>
<div class="navbar navbar-static-top navbar-inverse">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li<?php is_active('home'); ?>><a href="<?php echo INDEX; ?>"><i class="icon-home icon-white"></i> Home</a></li>
<li<?php is_active('details'); ?>><a href="<?php echo DETAILS; ?>"><i class="icon-search icon-white"></i> Details</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="<?php echo LOGOUT; ?>"><i class="icon-off icon-white"></i> Logout</a></li>
</ul>
</div>
</div>
</div>
</div>
<?php endif; ?>
<div id="content">
<?php if (isset($_SESSION['message'])) { ?>
<div class="container">
<div class="alert alert-error">
<strong>Oups!</strong> <?php echo $_SESSION['message']; ?>
</div>
</div>
<?php unset($_SESSION['message']); } ?>
<?php
include $page;
?>
</div> <!-- /content -->
<footer>
<div class="container">
<p>Powered by <a href="https://github.com/Bioshox/Raspcontrol">Raspcontrol</a>.</p>
<p>Sources are available on <a href="https://github.com/Bioshox/Raspcontrol">Github</a>.</p>
</div>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<?php
// load specific scripts
if ('details' === $_GET['page']) {
echo ' <script src="js/details.js"></script>';
}
?>
</body>
</html>