-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathscan.php
132 lines (123 loc) · 5.22 KB
/
scan.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
<?php
require_once(__DIR__.'/lib/functions.inc.php');
require_once(__DIR__.'/lib/mqtt.inc.php');
global $settings;
TBHeader('Scan',true,'
$(document).ready(function() {
$(\'#status\').DataTable({
"order": [[1, "asc" ]],
"pageLength": '. (isset($settings['amount'])?$settings['amount']:100) .',
"statesave": true,
"autoWidth": false
} );
} );
',true,((isset($settings['autoadd_scan']) && $settings['autoadd_scan']=='Y')?1:false));
?>
<body>
<script language="Javascript">
function toggle(source) {
checkboxes = document.getElementsByName('ip[]');
for(var i=0, n=checkboxes.length;i<n;i++) {
checkboxes[i].checked = source.checked;
}
}
</script>
<div class="container-fluid">
<center><h4><a href="index.php">TasmoBackup</a> - Scan Results</h4></center>
<form action="index.php" method="POST">
<input type="hidden" name="task" value="discoverall">
<?php if(isset($_POST['user'])) { echo '<input type="hidden" name="user" value="'.$_POST['user'].'">'; } ?>
<?php if(isset($_POST['password'])) { echo '<input type="hidden" name="password" value="'.$_POST['password'].'">'; } ?>
<table class="table table-striped table-bordered" id="status">
<thead>
<tr><th><b>ADD</b></th><th><b>NAME</b></th><th><b>IP</b></th></tr>
</thead>
<tbody>
<?php
$password='';
$user='admin';
if(isset($settings['tasmota_username'])) $user=$settings['tasmota_username'];
if (isset($_POST['user'])) {
$user=$_POST['user'];
}
if (isset($_POST['password'])) {
$password=$_POST['password'];
}
if (isset($_POST['mqtt_topic'])) {
$mqtt_topic=$_POST['mqtt_topic'];
}
if ($_POST["task"]=="scan") {
set_time_limit(0);
print(str_repeat(" ", 300) . "\n");
$range = $_POST['range'];
$range = explode('.', $range);
foreach ($range as $index=>$octet) {
$range[$index] = array_map('intval', explode('-', $octet));
}
$iprange=array();
// 4 for loops to generate the ip address 4 octets
for ($octet1=$range[0][0]; $octet1<=(isset($range[0][1])? $range[0][1]:$range[0][0]); $octet1++) {
for ($octet2=$range[1][0]; $octet2<=(isset($range[1][1])? $range[1][1]:$range[1][0]); $octet2++) {
for ($octet3=$range[2][0]; $octet3<=(isset($range[2][1])? $range[2][1]:$range[2][0]); $octet3++) {
for ($octet4=$range[3][0]; $octet4<=(isset($range[3][1])? $range[3][1]:$range[3][0]); $octet4++) {
// assemble the IP address
array_push($iprange,$octet1.".".$octet2.".".$octet3.".".$octet4);
}
}
}
}
// initialise the URL
if ($ipresult=getTasmotaScanRange($iprange, $user, $password)) {
for($i=0;$i<count($ipresult);$i++) {
list($ip,$type)=$ipresult[$i];
if ($status=getTasmotaStatus($ip, $user, $password, $type)) {
if ($type===0) { // Tasmota
if ($status['Status']['Topic'])
$name=$status['Status']['Topic'];
if(!isset($settings['use_topic_as_name']) || $settings['use_topic_as_name']=='N') {
if ($status['Status']['DeviceName'] && strlen(preg_replace('/\s+/', '',$status['Status']['DeviceName']))>0)
$name=$status['Status']['DeviceName'];
else if ($status['Status']['FriendlyName'][0])
$name=$status['Status']['FriendlyName'][0];
}
} else if ($type===1) { // WLED
if(isset($status['info']['name']))
$name=trim($status['info']['name']);
}
echo "<tr valign='middle'><td><center><input type='checkbox' name='ip[]' value='" . $ip . "'></center></td>".
"<td>" . $name . "</td>".
"<td><center><a href='http://" . $ip . "'>" . $ip . "</a></center></td></tr>";
}
}
}
}
if ($_POST["task"]=="mqtt") {
if(isset($settings['mqtt_host']) && isset($settings['mqtt_port']) && strlen($settings['mqtt_host'])>1) {
$mqtt=setupMQTT($settings['mqtt_host'], $settings['mqtt_port'], $settings['mqtt_user'], $settings['mqtt_password']);
if(!isset($mqtt_topic)) $mqtt_topic=$settings['mqtt_topic'];
$results=getTasmotaMQTTScan($mqtt,$mqtt_topic,$user,$password,false);
if(count($results)>0) {
foreach($results as $found) {
$ip=$found['ip'];
$name='Unknown';
if(isset($found['name'])) $name=$found['name'];
echo "<tr valign='middle'><td><center><input type='checkbox' name='ip[]' value='" . $ip . "'></center></td>".
"<td>" . $name . "</td>".
"<td><center><a href='http://" . $ip . "'>" . $ip . "</a></center></td></tr>";
}
}
}
}
?>
</tbody>
<tr><td colspan="3"> </td></tr>
<tr><td><center><input type='checkbox' name="select-all" id="select-all" onClick="toggle(this)"></center></td><td>Select All</td><td> </td></tr>
<tr><td colspan="3"><center><button type=submit class='btn btn-sm btn-success'>Add Devices</button></center></td></tr>
</table>
</form>
</div>
<?php
TBFooter();
?>
</body>
</html>