-
Notifications
You must be signed in to change notification settings - Fork 0
/
task1.php
293 lines (240 loc) · 7.19 KB
/
task1.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<?php
/**
* This should be run from a webserver rather than CLI. You must edit the first
* 4 constants of the TempData class to integrate with MySQL.
*/
$td = new TempData();
if (isset($_REQUEST['ajax']))
{
$td->ajax();
}
else
{
$td->showPage();
}
class TempData
{
/*********************** MODIFY THESE TO GET MYSQL WORKING *************************/
const DB_HOST = '';
const DB_USER = '';
const DB_PASS = '';
const DB_SCHEMA = '';
private $_db = null;
private $_db_table = 'sfo_temps';
private $_data = null;
const WBAN = 23234;
const STNID = 'n/a';
const PRIOR = 'N';
const QCNAME = 'VER2';
const WHICH = 'ASCII Download (Hourly Obs.) (10A)';
const URL = 'http://cdo.ncdc.noaa.gov/qclcd/QCLCD';
private $_year = null;
private $_month = null;
private $_day = null;
public function __construct()
{
if (!isset($_REQUEST['date']) ||
!ctype_digit(strtotime($_REQUEST['date'])) ||
strtotime($_REQUEST['date']) > time())
{
// If anything isn't right, use yesterday as the gold standard.
$dateArray = explode(" ", date("Y m d", strtotime("yesterday")));
}
else
{
// I don't trust your input to contain leading zeros or not, so let's let PHP do the work for us.
$dateArray = explode(" ", date("Y m d", strtotime($_REQUEST['date'])));
}
list($y, $m, $d) = $dateArray;
$this->_year = $y;
$this->_month = $m;
$this->_day = $d;
$this->_setupDb()
->_getData();
}
private function _setupDb()
{
$this->_db = new mysqli(self::DB_HOST, self::DB_USER, self::DB_PASS, self::DB_SCHEMA);
if ($this->_db->connect_error)
{
die('Connect Error (' . $mysqli->connect_errno . ') '
. $mysqli->connect_error);
}
$query = $this->_db->query('SELECT TABLE_NAME FROM information_schema.TABLES WHERE TABLE_NAME = "'.$this->_db_table.'" AND TABLE_SCHEMA=database()');
if ($query->num_rows == 0)
{
$this->_createTable();
}
return $this;
}
private function _createTable()
{
echo "Missing table (".$this->_db_table."). Creating now.\n";
$query = "CREATE TABLE ".$this->_db_table." (
id INT(11) NOT NULL auto_increment,
datetime BIGINT(20) UNIQUE,
temp INT(11),
primary KEY (id))";
$this->_db->query($query);
}
private function _getData()
{
// Get data from DB.
$query = $this->_db->query("SELECT * FROM `".$this->_db_table."` WHERE (`datetime` BETWEEN ".strtotime($this->_month."/".$this->_day."/".$this->_year)." AND ".strtotime($this->_month."/".$this->_day."/".$this->_year." +1 days").")");
if ($query->num_rows == 0)
{
$this->_getDataFromSite();
return $this;
}
$this->_data = $query;
return $this;
}
private function _getDataFromSite()
{
$queryArray = array();
$queryArray['reqday'] = $this->_day;
$queryArray['stnid'] = self::STNID;
$queryArray['prior'] = self::PRIOR;
$queryArray['qcname'] = self::QCNAME;
$queryArray['VARVALUE'] = self::WBAN.$this->_year.$this->_month;
$queryArray['which'] = self::WHICH;
$data = explode("\n",file_get_contents(self::URL."?".http_build_query($queryArray)));
foreach ($data as $k => $line)
{
if (substr($line, 0, 5) != self::WBAN)
{
continue;
}
list(, $date, $time, , , , , , , , $temp) = explode(",",$line);
$datetime = strtotime(substr($date,0,4)."-".substr($date,4,2)."-".substr($date,6,4)." ".substr($time,0,2).":".substr($time,2,2).":00");
$query = $this->_db->query("INSERT INTO `".$this->_db_table."` (`id`,`datetime`,`temp`) VALUES('',".$datetime.", ".$temp.")");
$this->_data[] = array(
'datetime' => $datetime,
'temp' => $temp
);
}
return $this;
}
public function ajax()
{
$this->_showData();
}
private function _showData()
{
$tempArray = array();
$data = View::factory('./views/data.php');
if (($this->_data == null ||
$this->_data == false ||
count($this->_data) == 0) &&
(!is_object($this->_data) ||
!is_array($this->_data)))
{
$data->json = json_encode("no data");
echo $data->render();
die();
}
if (is_object($this->_data))
{
while ($arr = $this->_data->fetch_assoc())
{
$tempArray[] = $arr['temp'];
}
}
elseif (is_array($this->_data))
{
foreach ($this->_data as $arr)
{
$tempArray[] = $arr['temp'];
}
}
$min = min($tempArray);
$max = max($tempArray);
$avg = round(array_sum($tempArray)/count($tempArray),2);
//echo $min." ".$max." ".$avg."\n";
$data->json = json_encode(array(
'min' => $min,
'max' => $max,
'avg' => $avg));
echo $data->render();
}
public function showPage()
{
$data = View::factory('./views/page.php');
$data->date = $this->_month."/".$this->_day."/".$this->_year;
echo $data->render();
}
}
class View
{
private $_data = array();
private $_file = '';
private function __construct($file)
{
$this->set_filename($file);
}
public static function factory($file)
{
return new View($file);
}
public function set_filename($file)
{
$this->_file = $file;
}
protected static function capture($file, $data)
{
extract($data, EXTR_SKIP);
ob_start();
try
{
include($file);
}
catch (Exception $e)
{
ob_end_clean();
throw $e;
}
return ob_get_clean();
}
public function render($file = null)
{
if ($file !== null)
{
$this->set_filename($file);
}
if (empty($this->_file))
{
throw new Exception("You must set a file.");
}
return self::capture($this->_file, $this->_data);
}
public function __get($key)
{
if (array_key_exists($key, $this->_data))
{
return $this->_data[$key];
}
else
{
throw new Exception('View variable is not set: '.$key);
}
}
public function __set($key, $value)
{
$this->set($key, $value);
}
public function set($key, $value = null)
{
if (is_array($key))
{
foreach ($key as $name => $value)
{
$this->_data[$name] = $value;
}
}
else
{
$this->_data[$key] = $value;
}
return $this;
}
}