source: trunk/FACT++/www/schedule/save.php@ 17701

Last change on this file since 17701 was 17701, checked in by tbretz, 12 years ago
A first version of the scheduling interface created from the svn/schedule.
File size: 6.7 KB
Line 
1<?php
2
3if (!isset($_POST['n']) || !isset($_POST['d']))
4 return header('HTTP/1.0 400 Syntax error.');
5
6require_once 'config.php';
7
8function login()
9{
10 global $ldaphost;
11 global $baseDN;
12 global $groupDN;
13
14 $username = $_SERVER['PHP_AUTH_USER'];
15 $password = $_SERVER['PHP_AUTH_PW'];
16
17 if (!isset($username) || !isset($password))
18 return "Unauthorized.";
19
20 $con = @ldap_connect($ldaphost);
21 if (!$con)
22 return "ldap_connect failed to ".$ldaphost;
23
24 //------------------ Look for user common name
25 $attributes = array('cn', 'mail');
26 $dn = 'ou=People,'.$baseDN;
27 $filter = '(uid='.$username.')';
28
29 $sr = @ldap_search($con, $dn, $filter, $attributes);
30 if (!$sr)
31 return "ldap_search failed for dn=".$dn.": ".ldap_error($con);
32
33 $srData = @ldap_get_entries($con, $sr);
34 if ($srData["count"]==0)
35 return "No results returned by ldap_get_entries for dn=".$dn.".";
36
37 $email =$srData[0]['mail'][0];
38 $userCommonName=$srData[0]['cn'][0];
39 $userDN =$srData[0]['dn'];
40
41 //------------------ Authenticate user
42 if (!@ldap_bind($con, $userDN, $password))
43 return "ldap_bind failed: ".ldap_error($con);
44
45 //------------------ Check if the user is in FACT ldap group
46 $attributes= array("member");
47 $filter= '(objectClass=*)';
48
49 // Get all members of the group.
50 $sr = @ldap_read($con, $groupDN, $filter, $attributes);
51 if (!$sr)
52 return "ldap_read failed for dn=".$groupDN.": ".ldap_error($con);
53
54 // retrieve the corresponding data
55 $srData = @ldap_get_entries($con, $sr);
56 if ($srData["count"]==0)
57 return "No results returned by ldap_get_entries for dn=".$dn.".";
58
59 @ldap_unbind($con);
60
61 $found = false;
62 foreach ($srData[0]['member'] as $member)
63 if (strpos($member, "cn=".$userCommonName.",")===0)
64 return "";
65
66 return "Authorization failed.";
67}
68
69// --------------------------------------------------------------------
70
71if (isset($_GET['logout']))
72{
73 if (!isset($_SERVER['PHP_AUTH_USER']) || !isset($_SERVER['PHP_AUTH_PW']))
74 return;
75
76 return header('HTTP/1.0 401 Successfull logout!');
77}
78
79// --------------------------------------------------------------------
80
81$rc = login();
82if ($rc!="")
83{
84 header('WWW-Authenticate: Basic realm="FACT Schedule"');
85 header('HTTP/1.0 401 '.$rc);
86}
87
88// ====================================================================
89
90// This is the day/night from which the data is to be deleted
91// and to which the data is to be submitted
92$day = $_POST['n'];
93
94// This is the time of the last diabled entry (or the time from which
95// on the data should be deleted/submitted)
96// Note that there is no sanity check yet, therefore the data and the
97// time variable must be consistent
98$time = isset($_POST['t']) ? $_POST['t'] : "12:00:00";
99
100// The data to be submitted
101$data = json_decode($_POST['d']);
102
103// Get user
104$user = $_SERVER['PHP_AUTH_USER'];
105
106// FIXME: Make sure that the date is valid (in the future)?
107
108// ----------------------------------------------------------------
109
110// Calculate the date for the next day, to have the correct
111//date after midnight as well
112$date = new DateTime($day);
113$date->add(new DateInterval('P1D')); // PnYnMnDTnHnMnS
114$nextDay = $date->format('Y-m-d');
115
116// ----------------------------------------------------------------
117
118// Calculate the lower limit from which on data should be deleted.
119// This is either noon (if the date is in the future) or the provided
120// time (different from 12:00:00) during the night
121$cut = $day." ".$time;
122
123$d = new DateTime($cut);
124
125// If the time lays before noon, it belongs to the next day
126if ($d->format("His")<120000)
127{
128 $d->add(new DateInterval('P1D')); // PnYnMnDTnHnMnS
129 $cut = $d->format("Y-m-d H:i:s");
130}
131
132// ----------------------------------------------------------------
133
134// Now create the queries with the correct dates (date and time)
135// from the posted data and the times therein
136$queries = array();
137
138array_push($queries, "LOCK TABLES Schedule WRITE");
139array_push($queries, "DELETE FROM Schedule WHERE fStart>'".$cut."' AND DATE(ADDTIME(fStart, '-12:00')) = '".$day."'");
140
141// ----------------------------------------------------------------
142
143foreach ($data as $row)
144{
145 $t = $row[0]; // time
146 $m = $row[1]; // measurement
147 $s = $row[2]; // source
148 $v = $row[3]; // value
149
150 // If there is a time set, remember the time, if not
151 // this is just a measurement within an observation
152 // so duplicate the time
153 if (!isset($t))
154 {
155 $t = $save;
156 $id++;
157 }
158 else
159 {
160 $save = $t;
161 $id = 0;
162 }
163
164 // Check if the time is before noon. If it is before noon,
165 // it belongs to the next day
166 $d = date_parse($t);
167 $t = $d['hour']<12 ? $nextDay." ".$t : $day." ".$t;
168
169 if (!isset($last))
170 {
171 $last = $t;
172 }
173 else
174 {
175 if ($last>$t)
176 die("Times not sequential\n[".$last."|".$t."]");
177 $last = $t;
178 }
179
180 // Compile query
181 $query = "INSERT INTO Schedule SET";
182 $query .= " fStart='".$t."'";
183 $query .= ",fMeasurementID=".$id;
184 $query .= ",fMeasurementTypeKey=".$m;
185 $query .= ",fUser='".$user."'";
186 if ($s>0)
187 $query .= ",fSourceKey=".$s;
188
189 // Check if this is a valid JSON object
190 if (!json_decode('{'.$v.'}'))
191 {
192 switch (json_last_error())
193 {
194 case JSON_ERROR_NONE: break;
195 case JSON_ERROR_DEPTH: $err = 'Maximum stack depth exceeded'; break;
196 case JSON_ERROR_STATE_MISMATCH: $err = 'Invalid or malformed JSON'; break;
197 case JSON_ERROR_CTRL_CHAR: $err = 'Unexpected control character'; break;
198 case JSON_ERROR_SYNTAX: $err = 'Syntax error'; break;
199 case JSON_ERROR_UTF8: $err = 'Malformed UTF-8 characters'; break;
200 default: $err = 'Unknown error'; break;
201 }
202
203 if (isset($err))
204 die($err." at ".$t." [entry #".($id+1)."]:\n".$v);
205 }
206
207 // PHP >= 5.5.0
208 // if (!json_decode('{'.$v.'}'))
209 // die("Invalid option at ".$t.": ".$v." [JSON - ".json_last_error_msg()."]");
210
211
212 $query .= ",fData='".$v."'";
213
214 // add query to the list of queries
215 array_push($queries, $query);
216}
217
218array_push($queries, "UNLOCK TABLES");
219
220// ================================================================
221// Database interaction
222// ================================================================
223
224$db = mysql_connect($dbhost,$dbuser,$dbpass);
225if (!$db)
226 die(mysql_error());
227
228if (!mysql_select_db($dbname, $db))
229 die(mysql_error());
230
231foreach ($queries as $query)
232 if (!mysql_query($query))
233 die(mysql_error());
234
235mysql_close($db);
236
237?>
Note: See TracBrowser for help on using the repository browser.