X-Git-Url: https://git.cweiske.de/linksys-wrt3g-tools.git/blobdiff_plain/78a6fc529cdea90e37ba9b115a76d3e3e6e9957d..b92abe47b7290b0e861ddadaa7abcde5bc65cd6e:/scripts/linksys-wrt3g.php diff --git a/scripts/linksys-wrt3g.php b/scripts/linksys-wrt3g.php old mode 100644 new mode 100755 index 48683e7..7d87cd1 --- a/scripts/linksys-wrt3g.php +++ b/scripts/linksys-wrt3g.php @@ -1,3 +1,4 @@ +#!/usr/bin/env php addOption( 'default' => $GLOBALS['linksys-wrt3g-tools']['password'] ) ); +$parser->addOption( + 'verbosity', + array( + 'short_name' => '-v', + 'long_name' => '--verbose', + 'description' => 'Show more details (more to see more details)', + 'action' => 'Counter', + ) +); -$parser->addCommand( +$stCmd = $parser->addCommand( 'status', array( - 'description' => 'Show the router status' + 'aliases' => array('s', 'st'), + 'description' => 'Show the connection status' + ) +); +$stCmd = $parser->addCommand( + 'cardstatus', + array( + 'aliases' => array('c', 'cs'), + 'description' => 'Show the card/SIM status' ) ); +$stCmd = $parser->addCommand( + 'allstatus', + array( + 'aliases' => array('a', 'as'), + 'description' => 'Show all status details' + ) +); + + $parser->addCommand( 'reboot', array( + 'aliases' => array('r'), 'description' => 'Reboot the router' ) ); @@ -84,9 +112,12 @@ try { try { $router = new Wrt3g(); - $router->host = $result->options['host']; - $router->user = $result->options['user']; - $router->password = $result->options['password']; + $router->verbosity = $result->options['verbosity']; + $router->host = $result->options['host']; + $router->user = $result->options['user']; + $router->password = $result->options['password']; + + $router->log('Command: ' . $result->command_name, 2); switch ($result->command_name) { case 'reboot': @@ -97,9 +128,17 @@ try { } break; + case 'allstatus': + case 'cardstatus': case 'status': default: - $arStatus = $router->getStatus(); + if ($result->command_name == 'allstatus') { + $arStatus = $router->getFullStatus(); + } else if ($result->command_name == 'cardstatus') { + $arStatus = $router->getCardStatus(); + } else { + $arStatus = $router->getConnectionStatus(); + } foreach ($arStatus as $key => $value) { echo $key . ': ' . $value . "\n"; }