Added IP saving and blink link

This commit is contained in:
Will Bradley 2011-12-23 14:12:05 -07:00
parent 41411775ed
commit cd2d5ba588
3 changed files with 10 additions and 7 deletions

Binary file not shown.

View File

@ -47,7 +47,8 @@ if($getconfig == "1") {
// When called with id and applied=1, mark as applied // When called with id and applied=1, mark as applied
if(strlen($id) > 0 && $applied == "1") { if(strlen($id) > 0 && $applied == "1") {
try { try {
$updateapplied = $db->prepare("UPDATE DEVICES SET APPLIED=1 WHERE id=:id;"); $updateapplied = $db->prepare("UPDATE DEVICES SET APPLIED=1, CURRENTIP=:currentip WHERE id=:id;");
$updateapplied->bindParam(':currentip', $_SERVER['REMOTE_ADDR']); // store the remote client IP for calling blink.php later
$updateapplied->bindParam(':id', $id); $updateapplied->bindParam(':id', $id);
$updateapplied->execute(); $updateapplied->execute();
} catch (Exception $e) { } catch (Exception $e) {

View File

@ -1,12 +1,12 @@
<?php <?php
//TODO: move this database section to an include file
// config variables // config variables
$dbpath = "configurator.db"; $dbpath = "configurator.db";
// import and sanitize GET variables // import and sanitize GET variables
$id = filter_input(INPUT_GET, 'id', FILTER_SANITIZE_NUMBER_INT); $id = filter_input(INPUT_GET, 'id', FILTER_SANITIZE_NUMBER_INT);
$configdevices = filter_input_array(INPUT_GET, array('configdevices' => array('filter' => FILTER_SANITIZE_NUMBER_INT, 'flags' => FILTER_REQUIRE_ARRAY))); $configdevices = filter_input_array(INPUT_GET, array('configdevices' => array('filter' => FILTER_SANITIZE_NUMBER_INT, 'flags' => FILTER_REQUIRE_ARRAY)));
if(isset($configdevices['configdevices'])) if(isset($configdevices['configdevices'])) // we don't want the whole GET array, just the configdevices part.
$configdevices = $configdevices['configdevices']; $configdevices = $configdevices['configdevices'];
$applied = filter_input(INPUT_GET, 'applied', FILTER_SANITIZE_NUMBER_INT); $applied = filter_input(INPUT_GET, 'applied', FILTER_SANITIZE_NUMBER_INT);
$download = filter_input(INPUT_GET, 'download', FILTER_SANITIZE_SPECIAL_CHARS); $download = filter_input(INPUT_GET, 'download', FILTER_SANITIZE_SPECIAL_CHARS);
@ -30,7 +30,7 @@ try {
// Create table if doesn't exist // Create table if doesn't exist
$q = $db->query("PRAGMA table_info(DEVICES)"); $q = $db->query("PRAGMA table_info(DEVICES)");
if ( $q->rowCount() == 0 ) { if ( $q->rowCount() == 0 ) {
$db->query( "CREATE TABLE DEVICES ( id INTEGER PRIMARY KEY, config TEXT, ready INTEGER, sent INTEGER, applied INTEGER );" ); $db->query( "CREATE TABLE DEVICES ( id INTEGER PRIMARY KEY, config TEXT, currentip CHAR(255), ready INTEGER, sent INTEGER, applied INTEGER );" );
} }
@ -91,8 +91,10 @@ if($configdevices != false && count($configdevices) > 0) {
<form action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" method="GET"> <form action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" method="GET">
<h3>Devices</h3> <h3>Devices</h3>
<input type="button" id="checkall" name="checkall" value="Check All" onClick="var c=new Array();c=document.getElementsByName('configdevices[]');for(var i=0;i<c.length;i++){c[i].checked=true;}" /> <input type="button" id="checkall" name="checkall" value="Check All"
<input type="button" id="uncheckall" name="uncheckall" value="Uncheck All" onClick="var c=new Array();c=document.getElementsByName('configdevices[]');for(var i=0;i<c.length;i++){c[i].checked=false;}" /> onClick="var c=new Array();c=document.getElementsByName('configdevices[]');for(var i=0;i<c.length;i++){c[i].checked=true;}" />
<input type="button" id="uncheckall" name="uncheckall" value="Uncheck All"
onClick="var c=new Array();c=document.getElementsByName('configdevices[]');for(var i=0;i<c.length;i++){c[i].checked=false;}" />
<input type="button" value="Refresh" onclick="window.location.reload()"> <input type="button" value="Refresh" onclick="window.location.reload()">
<ul id="devicelist"> <ul id="devicelist">
<?php while ($device = $devicelist->fetchObject()): ?> <?php while ($device = $devicelist->fetchObject()): ?>
@ -101,7 +103,7 @@ if($configdevices != false && count($configdevices) > 0) {
<?php echo $device->id ?> <?php echo $device->id ?>
<?php if($device->ready=="1") { echo " <em>ready</em>";} ?> <?php if($device->ready=="1") { echo " <em>ready</em>";} ?>
<?php if($device->sent=="1") { echo " <strong>sent</strong>";} ?> <?php if($device->sent=="1") { echo " <strong>sent</strong>";} ?>
<?php if($device->applied=="1") { echo " <strong>applied</strong>";} ?> <?php if($device->applied=="1") { echo ' <strong>applied</strong> <a target="_blank" href="http://'.$device->currentip.'/blink.php">blink</a>';} ?>
</li> </li>
<?php endwhile; ?> <?php endwhile; ?>
</ul> </ul>