-
Notifications
You must be signed in to change notification settings - Fork 3
/
readfile.php
248 lines (209 loc) · 9.06 KB
/
readfile.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<?php
header('cache-control: no-cache');
error_reporting(0);
/*
paramètres :
soit :
objectlog : id de l'object a récupérer la log éventuellement suivi du type "IDOBJECT_type_DATATYPE" ou "IDOBJECT"
soit :
LogLinknx="true" => récupératio de la log de linknx si de type "file" ...
et
output : "html" / "json" / ""
nbenreg : si non renseigné si lecture fichier "20" si mysql "1000"
ou pour mysql :
duration : Nombre
periodicity : périodicitée (Hour, Day, (Week), Month, year)
TODO => gérer duration et periodicity sur le mode : datejour - ( duration * periodicity ) comme date de début de recherche
*/
require_once("include/linknx.php");
$_config = (array)simplexml_load_file('include/config.xml'); // conversion en array du fichier xml de configuration
unset($_config['comment']);
$pathlogfile = ''; // exemple : "/var/lib/linknx/log"
$typelog = ''; // '' / 'file' / 'mysql'
if (!isset($_GET['output']) ) $_GET['output'] = '';
$objectlog = '';
$filelog = '';
if (isset($_GET['objectlog'])) {
// $_GET['objectlog'] = object . '_type_' . type exemple : /var/lib/linknx/log/lampe_cuisine.log_type_1.001
$objectlog = preg_split('/_type_/', $_GET['objectlog']);
if ($objectlog[1]) $objectlogtype = $objectlog[1];
$objectlog = $objectlog[0];
}
$linknx=new Linknx($_config['linknx_host'], $_config['linknx_port']);
if (isset($_GET['LogLinknx'])) { // log linknx
$info=$linknx->getLogging();
if ($info!==false) {
$filelog = $info['logging']['output'];
$pathlogfile = '';
$typelog = 'file';
} else {
header("Content-type: text/plain; charset=utf-8");
print("Error of linknx configuration");
exit(0);
}
} else { // log of an object in linknx
if ($objectlog == '') {
header("Content-type: text/plain; charset=utf-8");
print("No object to restitute");
exit(0);
}
$info=$linknx->getServices();
if ($info!==false) {
$typelog = $info['persistence']['type'];
if ($typelog == 'file') {
$pathlogfile = $info['persistence']['logpath'];
if ($pathlogfile == "") $pathlogfile = $info['persistence']['path'];
// reconstitution du path complet + extension
$filelog = $pathlogfile . $objectlog . ".log";
}
} else {
header("Content-type: text/plain; charset=utf-8");
print("Error of linknx configuration");
exit(0);
}
}
if ($typelog == 'mysql') {
// $info['persistence'][] host/user/pass/db/table/logtable
//nom du serveur serveur:
$serveur = $info['persistence']['host'];
// pseudo de connexion au serveur
$login = $info['persistence']['user'];
// Mot de pass de connexon au serveur
$password = $info['persistence']['pass'];
// Nom de la base de donnée
$base = $info['persistence']['db']; //"linknx";
$table = $info['persistence']['logtable']; //"log";
// structure de la table logtable
$ts = "ts";
$object = "object";
$value = "value";
}
// TODO a gérer mieux car tout le monde n'a pas cette config ...
setlocale(LC_ALL , "fr_FR" );
date_default_timezone_set("Europe/Paris");
if (isset($_GET['nbenreg']))
$log_nbenreg = $_GET['nbenreg'];
else {
if ($typelog == "file") {
$log_nbenreg = 20;
} else {
$log_nbenreg = 1000;
}
}
$result = "";
$result_tab = array();
if ($typelog == "mysql") {
// On ouvre la connexion à Mysql
$db = mysql_connect($serveur, $login, $password) or die('<h1>Connexion au serveur impossible !</h1>');
mysql_select_db($base,$db) or die('<h1>Connexion impossible à la base</h1>');
mysql_query("SET NAMES 'utf8'");
/*
duration : Nombre
periodicity : périodicitée (Hour, Day, (Week), Month, year)
TODO => gérer duration et periodicity sur le mode : datejour - ( duration * periodicity ) comme date de début de recherche
SELECT something FROM tbl_name WHERE DATE_SUB(CURDATE(),INTERVAL 30 DAY) <= date_col;
SELECT DATE_ADD('2008-01-02', INTERVAL 31 DAY); -> '2008-02-02'
*/
$sql2 = "SELECT DATE_FORMAT(".$ts.", '%Y-%m-%d %H:%i:%s') AS ts , ".$value." AS value FROM ".$table." WHERE ".$object." = '".$objectlog."' ";
if (isset($_GET['duration'])) {
$sql2 = $sql2."AND ".$ts." >= DATE_SUB(CURDATE(),INTERVAL ".$_GET['duration']." ".strtoupper($_GET['periodicity']).") ";
}
if ($_GET['output'] == "json") {
$sql2 = $sql2." ORDER BY ".$ts." ASC ";
} else {
$sql2 = $sql2." ORDER BY ".$ts." DESC ";
}
if ($_GET['output'] == "json") {
$sql = "SELECT COUNT(".$ts.")-".$log_nbenreg." AS lowlimit FROM ".$table." WHERE ".$object." = '".$objectlog."'";
$req = mysql_query($sql) or die('Erreur SQL !<br>'.$sql.'<br>'.mysql_error());
if (mysql_num_rows($req)) {
$data=mysql_fetch_array($req);
if ( $data["lowlimit"] >= 0 ) {
$lowlimit=$data["lowlimit"];
} else { // si $data["lowlimit"] est négatif c'est qu'il y a moins d'enreg en base que ce que l'on souahite afficher ...
$log_nbenreg = $data["lowlimit"] + $log_nbenreg;
$lowlimit = 0;
}
} else {
$lowlimit=0;
}
//$sql2 = "SELECT DATE_FORMAT(".$ts.", '%Y-%m-%d %H:%i:%s') AS ts , ".$value." AS value FROM ".$table." WHERE ".$object." = '".$objectlog."' ORDER BY ".$ts." ASC LIMIT ".$lowlimit." , ".$log_nbenreg;
$sql2 = $sql2."LIMIT ".$lowlimit." , ".$log_nbenreg;
//$sql = "SELECT DATE_FORMAT(".$ts.", '%Y-%m-%d %H:%i:%s') AS ts , ".$value." AS value FROM ".$table." WHERE ".$object." = '".$objectlog."' LIMIT 0 , ".$log_nbenreg;
} else {
//$sql2 = "SELECT DATE_FORMAT(".$ts.", '%Y-%m-%d %H:%i:%s') AS ts , ".$value." AS value FROM ".$table." WHERE ".$object." = '".$objectlog."' ORDER BY ".$ts." DESC LIMIT 0 , ".$log_nbenreg;
$sql2 = $sql2."LIMIT 0 , ".$log_nbenreg;
}
$req = mysql_query($sql2) or die('Erreur SQL !<br>'.$sql2.'<br>'.mysql_error());
$nbenreg = mysql_num_rows($req);
$nbenreg--;
while ($nbenreg >= 0 ){
/*
$data["ts"] : est de la forme 2011-9-18 19:21:32
$data["value"] : peut être valorisé par un float (teméprature, %, °, ... avec comme spéparateur de décimal une "," ), int (0 à 255), string "on/off/up/down/stop ..."
*/
// récupérer prochaine occurence de la table
$data = mysql_fetch_array($req);
// Conversion des "on/off ..." en "numérique" puis en float
$float_value = $data["value"];
if ($float_value == "on") $float_value = 1;
else if ($float_value == "off") $float_value = 0;
else if ($float_value == "up") $float_value = 1;
else if ($float_value == "stop") $float_value = 0;
else if ($float_value == "down") $float_value = -1;
$float_value = floatval(str_replace(",", ".", $float_value));
// Format de sortie "html"
/* 2011-9-18 19:21:32 > 20.7<br />2011-9-18 19:23:32 > 20.9<br />2011-9-18 19:37:32 > 21<br />2011-9-18 19:39:32 > 20.9<br />2011-9-18 19:41:32 > 21<br />2011-9-18 19:47:32 > 20.9<br />2011-9-18 19:57:33 ... */
//$result = $data["ts"] . " > ".$data["value"]."<br />" . $result;
$result = $data["ts"] . " > ".$float_value."<br />" . $result;
// Format de sortie "json"
// convertir les dates en timestamps pour le format json (pour highcharts notament)
$ts = strtotime($data["ts"]) * 1000;
//array_push ( $result_tab , array($data["ts"], $data["value"] ) );
array_push ( $result_tab , array($ts, $float_value ) );
$nbenreg--;
}
mysql_close();
} else if ($typelog == "file") {
if ($_GET['output'] == 'json') {
//$result=str_replace("\n","<br />",`tail -n $log_nbenreg $filelog`);
exec('tail -n ' . $log_nbenreg . ' ' . $filelog, $res);
$result=implode("<br />", $res);
//$result2 = substr($result, 0, -6); // enlève le dernier "<br />"
// convertit en tableau surement moyen de faire plus propre qu'un "eval" ...
//eval( "\$result_tab = array(array(\"" . str_replace(" > ","\",\"",str_replace("<br />","\"), array(\"",$result2)) . "\"));" );
eval( "\$result_tab = array(array(\"" . str_replace(" > ","\",\"",str_replace("<br />","\"), array(\"",$result)) . "\"));" );
// pour le format json on converti les données
foreach ($result_tab as $k => $v) {
// convertir les dates en timestamps
$result_tab[$k][0] = strtotime($result_tab[$k][0]) * 1000;
// Conversion de la valeur ("on/off ...") en "numérique" puis en float
$float_value = $result_tab[$k][1];
if ($float_value == "on") $float_value = 1;
else if ($float_value == "off") $float_value = 0;
else if ($float_value == "up") $float_value = 1;
else if ($float_value == "stop") $float_value = 0;
else if ($float_value == "down") $float_value = -1;
$result_tab[$k][1] = floatval(str_replace(",", ".", $float_value));
}
} else {
//$result=str_replace("\n","<br />",str_replace(">",">",str_replace("<","<",`tail -n $log_nbenreg $filelog`)));
exec('tail -n ' . $log_nbenreg . ' ' . $filelog, $res);
$result=str_replace("\n","<br />",str_replace(">",">",str_replace("<","<",implode("\n", $res))));
}
}
switch ($_GET['output'])
{
case 'json':
header('Content-Type: application/json');
print(json_encode($result_tab));
break;
case 'html':
header("Content-type: text/plain; charset=utf-8");
print($result);
break;
default:
header("Content-type: text/html; charset=utf-8");
print($result);
}
?>