-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
146 lines (126 loc) · 6.19 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?php
/* Copyright (C) 2018, 2019 Lee C. Bussy (@LBussy)
*
* This file is part of LBussy's BrewPi WWW Remix (BrewPi-WWW-RMX).
*
* BrewPi WWW RMX is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* BrewPi WWW RMX is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BrewPi WWW RMX. If not, see <https://www.gnu.org/licenses/>.
*
* These scripts were originally a part of brewpi-www, a part of
* the BrewPi project. Legacy support (for the very popular Arduino
* controller) seems to have been discontinued in favor of new hardware.
*
* All credit for the original brewpi-www goes to @elcojacobs,
* @lukepower, @m-mcgowan, @vanosg, @GregAtkinson and I'm sure
* many more contributors around the world. My apologies if I have
* missed anyone; those were the names listed as contributors on the
* Legacy branch.
*
* See: 'original-license.md' for notes about the original project's
* license and credits. */
// load default settings from file
$defaultSettings = file_get_contents('defaultSettings.json');
if ($defaultSettings == false) die("Cannot open: defaultSettings.json");
$settingsArray = json_decode(prepareJSON($defaultSettings), true);
if (is_null($settingsArray)) die("Cannot decode: defaultSettings.json");
// overwrite default settings with user settings
if (file_exists('userSettings.json')) {
$userSettings = file_get_contents('userSettings.json');
if ($userSettings == false) die("Cannot open: userSettings.json");
$userSettingsArray = json_decode(prepareJSON($userSettings), true);
if (is_null($settingsArray)) die("Cannot decode: userSettings.json");
foreach ($userSettingsArray as $key => $value) {
$settingsArray[$key] = $userSettingsArray[$key];
}
}
$beerName = $settingsArray["beerName"];
$tempFormat = $settingsArray["tempFormat"];
$profileName = $settingsArray["profileName"];
$dateTimeFormat = $settingsArray["dateTimeFormat"];
$dateTimeFormatDisplay = $settingsArray["dateTimeFormatDisplay"];
function prepareJSON($input)
{
//This will convert ASCII/ISO-8859-1 to UTF-8.
//Be careful with the third parameter (encoding detect list), because
//if set wrong, some input encodings will get garbled (including UTF-8!)
$input = mb_convert_encoding($input, 'UTF-8', 'ASCII,UTF-8,ISO-8859-1');
//Remove UTF-8 BOM if present, json_decode() does not like it.
if (substr($input, 0, 3) == pack("CCC", 0xEF, 0xBB, 0xBF)) $input = substr($input, 3);
return $input;
}
// Read configuration name for multi-chamber
$chamber = '';
if (file_exists('config.php')) {
require_once('config.php');
if (file_exists($scriptPath . "/settings/config.cfg")) {
$ini_array = parse_ini_file($scriptPath . "/settings/config.cfg");
$chamber = $ini_array['chamber'];
}
} else {
die('ERROR: Unable to open required file (config.php).');
}
$title = ($chamber == '' ? 'BrewPi Remix' : 'BLR: ' . $chamber)
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title><?php echo $title; ?></title>
<link type="text/css" href="css/redmond/jquery-ui-1.10.3.custom.css" rel="stylesheet" />
<link type="text/css" href="css/style.css" rel="stylesheet" />
<link type="text/css" href="css/tilt.css" rel="stylesheet" />
<link rel="apple-touch-icon" href="images/touch-icon-iphone.png">
<link rel="apple-touch-icon" sizes="76x76" href="images/touch-icon-ipad.png">
<link rel="apple-touch-icon" sizes="120x120" href="images/touch-icon-iphone-retina.png">
<link rel="apple-touch-icon" sizes="152x152" href="images/touch-icon-ipad-retina.png">
<meta name="apple-mobile-web-app-title" content="<?php echo $title; ?>">
<link rel="icon" type="image/png" href="images/favicon.ico">
</head>
<body>
<?php include 'get-bjprompt.php'; ?>
<div id="beer-panel" class="ui-widget ui-widget-content ui-corner-all" style="display:none">
<?php include 'top-bar.php'; ?>
<?php include 'beer-panel.php'; ?>
</div>
<div id="control-panel" style="display:none">
<?php include 'control-panel.php'; ?>
</div>
<div id="maintenance-panel" style="display:none">
<?php include 'maintenance-panel.php'; ?>
</div>
<?php include 'get-gitinfo.php'; ?>
<!-- Load scripts after the body, so they don't block rendering of the page -->
<!-- <script type="text/javascript" src="js/jquery-1.11.0.js"></script> -->
<script type="text/javascript" src="js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.10.3.custom.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-timepicker-addon.js"></script>
<script type="text/javascript" src="js/spin.js"></script>
<script type="text/javascript" src="js/dygraph-combined.js"></script>
<!-- <script src="//cdnjs.cloudflare.com/ajax/libs/dygraph/2.1.0/dygraph.min.js"></script> -->
<!-- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/dygraph/2.1.0/dygraph.min.css" /> -->
<script type="text/javascript">
// pass parameters to JavaScript
window.tempFormat = <?php echo "'$tempFormat'" ?>;
window.beerName = <?php echo "\"$beerName\"" ?>;
window.profileName = <?php echo "\"$profileName\"" ?>;
window.dateTimeFormat = <?php echo "\"$dateTimeFormat\"" ?>;
window.dateTimeFormatDisplay = <?php echo "\"$dateTimeFormatDisplay\"" ?>;
</script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/device-config.js"></script>
<script type="text/javascript" src="js/control-panel.js"></script>
<script type="text/javascript" src="js/maintenance-panel.js"></script>
<script type="text/javascript" src="js/beer-chart.js"></script>
<script type="text/javascript" src="js/profile-table.js"></script>
</body>
</html>