doti3/bar/src/ip_wan.php

35 lines
687 B
PHP
Raw Normal View History

2017-06-19 16:36:59 +02:00
#!/usr/bin/php
<?php
require __DIR__.'/base/block.php';
$ipv6 = !empty($argv[1]);
$iface = 'wan';
$command = sprintf(
2019-01-21 16:20:04 +01:00
'dig +short myip.opendns.com @resolver1.opendns.com',
2017-06-19 16:36:59 +02:00
$ipv6 ? '-6' : null
);
$ip = trim(shell_exec($command));
if (empty($ip)) {
die;
}
2018-01-03 13:53:49 +01:00
if (getenv('BLOCK_BUTTON') === '1') {
shell_exec('export DISPLAY=:0; echo '.escapeshellarg($ip).' | xclip');
2019-01-21 16:20:04 +01:00
shell_exec('export DISPLAY=:0; echo '.escapeshellarg($ip).' | xclip -sel clip');
2018-01-03 13:53:49 +01:00
}
2019-01-28 11:13:11 +01:00
$fullText = pspan($iface, '#ccc', '#222').pspan($ip, '#ddd', '#000');
2017-06-19 16:36:59 +02:00
echo block(
2017-12-04 19:41:16 +01:00
'ip_wan',
2017-06-19 16:36:59 +02:00
[
'full_text' => $fullText,
2019-01-21 16:20:04 +01:00
'separator' => false,
'separator_block_width' => 0,
2017-06-19 16:36:59 +02:00
]
);